Project

General

Profile

1
<?php
2

    
3
// $Id: class.frontend.php 621 2008-01-27 20:55:30Z doc $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2008, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
/*
27

    
28
Frontend class
29

    
30
*/
31

    
32
if(!defined('WB_PATH')) {
33
	header('Location: ../index.php');
34
	exit(0);
35
}
36

    
37

    
38
require_once(WB_PATH.'/framework/class.wb.php');
39

    
40
class frontend extends wb {
41
	// defaults
42
	var $default_link,$default_page_id;
43
	// when multiple blocks are used, show home page blocks on 
44
	// pages where no content is defined (search, login, ...)
45
	var $default_block_content=true;
46

    
47
	// page details
48
	// page database row
49
	var $page;
50
	var $page_id,$page_title,$menu_title,$parent,$root_parent,$level,$visibility;
51
	var $page_description,$page_keywords,$page_link;
52
	var $page_trail=array();
53
	
54
	var $page_access_denied;
55
	var $page_no_active_sections;
56
	
57
	// website settings
58
	var $website_title,$website_description,$website_keywords,$website_header,$website_footer;
59

    
60
	// ugly database stuff
61
	var $extra_where_sql, $sql_where_language;
62

    
63
	function page_select() {
64
		global $page_id,$no_intro;
65
		global $database;
66
		// We have no page id and are supposed to show the intro page
67
		if((INTRO_PAGE AND !isset($no_intro)) AND (!isset($page_id) OR !is_numeric($page_id))) {
68
			// Since we have no page id check if we should go to intro page or default page
69
			// Get intro page content
70
			$filename = WB_PATH.PAGES_DIRECTORY.'/intro'.PAGE_EXTENSION;
71
			if(file_exists($filename)) {
72
				$handle = @fopen($filename, "r");
73
				$content = @fread($handle, filesize($filename));
74
				@fclose($handle);
75
				$this->preprocess($content);
76
				header("Location: ".WB_URL.PAGES_DIRECTORY."/intro".PAGE_EXTENSION."");   // send intro.php as header to allow parsing of php statements
77
				echo ($content);
78
				return false;
79
			}
80
		}
81
		// Check if we should add page language sql code
82
		if(PAGE_LANGUAGES) {
83
			$this->sql_where_language = " AND language = '".LANGUAGE."'";
84
		}
85
		// Get default page
86
		// Check for a page id
87
		$query_default = "SELECT page_id,link FROM ".TABLE_PREFIX."pages WHERE parent = '0' AND visibility = 'public'$this->sql_where_language ORDER BY position ASC LIMIT 1";
88
		$get_default = $database->query($query_default);
89
		$default_num_rows = $get_default->numRows();
90
		if(!isset($page_id) OR !is_numeric($page_id)){
91
			// Go to or show default page
92
			if($default_num_rows > 0) {
93
				$fetch_default = $get_default->fetchRow();
94
				$this->default_link = $fetch_default['link'];
95
				$this->default_page_id = $fetch_default['page_id'];
96
				// Check if we should redirect or include page inline
97
				if(HOMEPAGE_REDIRECTION) {
98
					// Redirect to page
99
					header("Location: ".$this->page_link($this->default_link));
100
					exit();
101
				} else {
102
					// Include page inline
103
					$this->page_id = $this->default_page_id;
104
				}
105
			} else {
106
		   		// No pages have been added, so print under construction page
107
				$this->print_under_construction();
108
				exit();
109
			}
110
		} else {
111
			$this->page_id=$page_id;
112
		}
113
		// Get default page link
114
		if(!isset($fetch_default)) {
115
		  	$fetch_default = $get_default->fetchRow();
116
	 		$this->default_link = $fetch_default['link'];
117
			$this->default_page_id = $fetch_default['page_id'];
118
		}
119
		return true;
120
	}
121

    
122
	function get_page_details() {
123
		global $database;
124
	    if($this->page_id != 0) {
125
			// Query page details
126
			$query_page = "SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '{$this->page_id}'";
127
			$get_page = $database->query($query_page);
128
			// Make sure page was found in database
129
			if($get_page->numRows() == 0) {
130
				// Print page not found message
131
				exit("Page not found");
132
			}
133
			// Fetch page details
134
			$this->page = $get_page->fetchRow();
135
			// Check if the page language is also the selected language. If not, send headers again.
136
			if ($this->page['language']!=LANGUAGE) {
137
				header('Location: '.$this->page_link($this->page['link']).'?lang='.$this->page['language']);
138
				exit();
139
			}
140
			// Begin code to set details as either variables of constants
141
			// Page ID
142
			define('PAGE_ID', $this->page['page_id']);
143
			// Page Title
144
			define('PAGE_TITLE', $this->page['page_title']);
145
			$this->page_title=PAGE_TITLE;
146
			// Menu Title
147
			$menu_title = $this->page['menu_title'];
148
			if($menu_title != '') {
149
				define('MENU_TITLE', $menu_title);
150
			} else {
151
				define('MENU_TITLE', PAGE_TITLE);
152
			}
153
			$this->menu_title=MENU_TITLE;
154
			// Page parent
155
			define('PARENT', $this->page['parent']);
156
			$this->parent=$this->page['parent'];
157
			// Page root parent
158
			define('ROOT_PARENT', $this->page['root_parent']);
159
			$this->root_parent=$this->page['root_parent'];
160
			// Page level
161
			define('LEVEL', $this->page['level']);
162
			$this->level=$this->page['level'];
163
			// Page visibility
164
			define('VISIBILITY', $this->page['visibility']);
165
			$this->visibility=$this->page['visibility'];
166
			// Page trail
167
			foreach(explode(',', $this->page['page_trail']) AS $pid) {
168
				$this->page_trail[$pid]=$pid;
169
			}
170
			// Page description
171
			$this->page_description=$this->page['description'];
172
			if($this->page_description != '') {
173
				define('PAGE_DESCRIPTION', $this->page_description);
174
			} else {
175
				define('PAGE_DESCRIPTION', WEBSITE_DESCRIPTION);
176
			}
177
			// Page keywords
178
			$this->page_keywords=$this->page['keywords'];
179
			// Page link
180
			$this->link=$this->page_link($this->page['link']);
181

    
182
		// End code to set details as either variables of constants
183
		}
184

    
185
		// Figure out what template to use
186
		if(!defined('TEMPLATE')) {
187
			if(isset($this->page['template']) AND $this->page['template'] != '') {
188
				if(file_exists(WB_PATH.'/templates/'.$this->page['template'].'/index.php')) {
189
					define('TEMPLATE', $this->page['template']);
190
				} else {
191
					define('TEMPLATE', DEFAULT_TEMPLATE);
192
				}
193
			} else {
194
				define('TEMPLATE', DEFAULT_TEMPLATE);
195
			}
196
		}
197
		// Set the template dir
198
		define('TEMPLATE_DIR', WB_URL.'/templates/'.TEMPLATE);
199

    
200
		// Check if user is allowed to view this page
201
		if($this->page && $this->page_is_visible($this->page) == false) {
202
			if(VISIBILITY == 'deleted' OR VISIBILITY == 'none') {
203
				// User isnt allowed on this page so tell them
204
				$this->page_access_denied=true;
205
			} elseif(VISIBILITY == 'private' OR VISIBILITY == 'registered') {
206
				// Check if the user is authenticated
207
				if($this->is_authenticated() == false) {
208
					// User needs to login first
209
					header("Location: ".WB_URL."/account/login.php?redirect=".$this->link);
210
					exit(0);
211
				} else {
212
					// User isnt allowed on this page so tell them
213
					$this->page_access_denied=true;
214
				}
215
				
216
			}
217
		}
218
		// check if there is at least one active section
219
		if($this->page && $this->page_is_active($this->page) == false) {
220
			$this->page_no_active_sections=true;
221
		}
222
	}
223

    
224
	function get_website_settings() {
225
		global $database;
226

    
227
		// set visibility SQL code
228
		// never show no-vis, hidden or deleted pages
229
		$this->extra_where_sql = "visibility != 'none' AND visibility != 'hidden' AND visibility != 'deleted'";
230
		// Set extra private sql code
231
		if($this->is_authenticated()==false) {
232
			// if user is not authenticated, don't show private pages either
233
			$this->extra_where_sql .= " AND visibility != 'private'";
234
			// and 'registered' without frontend login doesn't make much sense!
235
			if (FRONTEND_LOGIN==false) {
236
				$this->extra_where_sql .= " AND visibility != 'registered'";
237
			}
238
		}
239
		$this->extra_where_sql .= $this->sql_where_language;
240

    
241
		// Work-out if any possible in-line search boxes should be shown
242
		if(SEARCH == 'public') {
243
			define('SHOW_SEARCH', true);
244
		} elseif(SEARCH == 'private' AND VISIBILITY == 'private') {
245
			define('SHOW_SEARCH', true);
246
		} elseif(SEARCH == 'private' AND $this->is_authenticated() == true) {
247
			define('SHOW_SEARCH', true);
248
		} elseif(SEARCH == 'registered' AND $this->is_authenticated() == true) {
249
			define('SHOW_SEARCH', true);	
250
		} else {
251
			define('SHOW_SEARCH', false);
252
		}
253
		// Work-out if menu should be shown
254
		if(!defined('SHOW_MENU')) {
255
			define('SHOW_MENU', true);
256
		}
257
		// Work-out if login menu constants should be set
258
		if(FRONTEND_LOGIN) {
259
			// Set login menu constants
260
			define('LOGIN_URL', WB_URL.'/account/login.php');
261
			define('LOGOUT_URL', WB_URL.'/account/logout.php');
262
			define('FORGOT_URL', WB_URL.'/account/forgot.php');
263
			define('PREFERENCES_URL', WB_URL.'/account/preferences.php');
264
			define('SIGNUP_URL', WB_URL.'/account/signup.php');
265
		}
266
	}
267
	
268
	function preprocess(&$content) {
269
		global $database;
270
		// Replace [wblink--PAGE_ID--] with real link
271
		$pattern = '/\[wblink(.+?)\]/s';
272
		preg_match_all($pattern,$content,$ids);
273
		foreach($ids[1] AS $page_id) {
274
			$pattern = '/\[wblink'.$page_id.'\]/s';
275
			// Get page link
276
			$get_link = $database->query("SELECT link FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id' LIMIT 1");
277
			$fetch_link = $get_link->fetchRow();
278
			$link = $this->page_link($fetch_link['link']);
279
			$content = preg_replace($pattern,$link,$content);
280
		}
281
	}
282
	
283
	function menu() {
284
		global $wb;
285
	   if (!isset($wb->menu_number)) {
286
	   	$wb->menu_number = 1;
287
	   }
288
	   if (!isset($wb->menu_start_level)) {
289
	   	$wb->menu_start_level = 0;
290
	   }
291
	   if (!isset($wb->menu_recurse)) {
292
	   	$wb->menu_recurse = -1;
293
	   }
294
	   if (!isset($wb->menu_collapse)) {
295
	   	$wb->menu_collapse = true;
296
	   }
297
	   if (!isset($wb->menu_item_template)) {
298
	   	$wb->menu_item_template = '<li><span[class]>[a] [menu_title] [/a]</span>';
299
	   }
300
	   if (!isset($wb->menu_item_footer)) {
301
	   	$wb->menu_item_footer = '</li>';
302
	   }
303
	   if (!isset($wb->menu_header)) {
304
	   	$wb->menu_header = '<ul>';
305
	   }
306
	   if (!isset($wb->menu_footer)) {
307
	   	$wb->menu_footer = '</ul>';
308
	   }
309
	   if (!isset($wb->menu_default_class)) {
310
	   	$wb->menu_default_class = ' class="menu_default"';
311
	   }
312
	   if (!isset($wb->menu_current_class)) {
313
	   	$wb->menu_current_class = ' class="menu_current"';
314
	   }
315
	   if (!isset($wb->menu_parent)) {
316
	   	$wb->menu_parent = 0;
317
	   }
318
	   $wb->show_menu();
319
	}
320
	
321
	function show_menu() {
322
		global $database;
323
		if ($this->menu_start_level>0) {
324
			$key_array=array_keys($this->page_trail);
325
			if (isset($key_array[$this->menu_start_level-1])) {
326
				$real_start=$key_array[$this->menu_start_level-1];
327
				$this->menu_parent=$real_start;
328
				$this->menu_start_level=0;
329
			} else {
330
				return;
331
			}
332
		}
333
		if ($this->menu_recurse==0)
334
	       return;
335
		// Check if we should add menu number check to query
336
		if($this->menu_parent == 0) {
337
			$menu_number = "menu = '$this->menu_number'";
338
		} else {
339
			$menu_number = '1';
340
		}
341
		// Query pages
342
		$query_menu = $database->query("SELECT page_id,menu_title,page_title,link,target,level,visibility,viewing_groups,viewing_users FROM ".TABLE_PREFIX."pages WHERE parent = '$this->menu_parent' AND $menu_number AND $this->extra_where_sql ORDER BY position ASC");
343
		// Check if there are any pages to show
344
		if($query_menu->numRows() > 0) {
345
			// Print menu header
346
			echo "\n".$this->menu_header;
347
			// Loop through pages
348
			while($page = $query_menu->fetchRow()) {
349
				// check whether to show this menu-link
350
				if($this->page_is_active($page)==false && $page['link']!=$this->default_link && !INTRO_PAGE) {
351
					continue; // no active sections
352
				}
353
				if($this->page_is_visible($page)==false)
354
					continue;
355
				// Create vars
356
				$vars = array('[class]','[a]', '[/a]', '[menu_title]', '[page_title]');
357
				// Work-out class
358
				if($page['page_id'] == PAGE_ID) {
359
					$class = $this->menu_current_class;
360
				} else {
361
					$class = $this->menu_default_class;
362
				}
363
				// Check if link is same as first page link, and if so change to WB URL
364
				if($page['link'] == $this->default_link AND !INTRO_PAGE) {
365
					$link = WB_URL;
366
				} else {
367
					$link = $this->page_link($page['link']);
368
				}
369
				// Create values
370
				$values = array($class,'<a href="'.$link.'" target="'.$page['target'].'" '.$class.'>', '</a>', $page['menu_title'], $page['page_title']);
371
				// Replace vars with value and print
372
				echo "\n".str_replace($vars, $values, $this->menu_item_template);
373
				// Generate sub-menu
374
				if($this->menu_collapse==false OR ($this->menu_collapse==true AND isset($this->page_trail[$page['page_id']]))) {
375
					$this->menu_recurse--;
376
					$this->menu_parent=$page['page_id'];
377
					$this->show_menu();
378
				}
379
				echo "\n".$this->menu_item_footer;
380
			}
381
			// Print menu footer
382
			echo "\n".$this->menu_footer;
383
		}
384
	}
385

    
386

    
387
	// Function to show the "Under Construction" page
388
	function print_under_construction() {
389
		global $MESSAGE;
390
		require_once(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php');
391
		echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
392
		<head><title>'.$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'].'</title>
393
		<style type="text/css"><!-- body{ font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 12px; background-image: url("admin/interface/background.png");background-repeat: repeat-x; margin: 20px; text-align: center; }
394
		h1 { margin: 0; padding: 0; }--></style></head><body>
395
		<h1>'.$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'].'</h1><br />
396
		'.$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'].'</body></html>';
397
	}
398
}
399

    
400
?>
(4-4/13)