Project

General

Profile

1
<?php
2

    
3
// $Id: view.php 861 2008-10-21 18:56:43Z Ruebenwurzel $
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
// Must include code to stop this file being access directly
27
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
28

    
29
// check if frontend.css file needs to be included into the <body></body> of view.php
30
if((!function_exists('register_frontend_modfiles') || !defined('MOD_FRONTEND_CSS_REGISTERED')) &&  file_exists(WB_PATH .'/modules/news/frontend.css')) {
31
   echo '<style type="text/css">';
32
   include(WB_PATH .'/modules/news/frontend.css');
33
   echo "\n</style>\n";
34
} 
35

    
36
// Check if there is a start point defined
37
if(isset($_GET['p']) AND is_numeric($_GET['p']) AND $_GET['p'] >= 0) {
38
	$position = $_GET['p'];
39
} else {
40
	$position = 0;
41
}
42

    
43
// Get user's username, display name, email, and id - needed for insertion into post info
44
$users = array();
45
$query_users = $database->query("SELECT user_id,username,display_name,email FROM ".TABLE_PREFIX."users");
46
if($query_users->numRows() > 0) {
47
	while($user = $query_users->fetchRow()) {
48
		// Insert user info into users array
49
		$user_id = $user['user_id'];
50
		$users[$user_id]['username'] = $user['username'];
51
		$users[$user_id]['display_name'] = $user['display_name'];
52
		$users[$user_id]['email'] = $user['email'];
53
	}
54
}
55

    
56
// Get groups (title, if they are active, and their image [if one has been uploaded])
57
$groups[0]['title'] = '';
58
$groups[0]['active'] = true;
59
$groups[0]['image'] = '';
60
$query_users = $database->query("SELECT group_id,title,active FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '$section_id' ORDER BY position ASC");
61
if($query_users->numRows() > 0) {
62
	while($group = $query_users->fetchRow()) {
63
		// Insert user info into users array
64
		$group_id = $group['group_id'];
65
		$groups[$group_id]['title'] = ($group['title']);
66
		$groups[$group_id]['active'] = $group['active'];
67
		if(file_exists(WB_PATH.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg')) {
68
			$groups[$group_id]['image'] = WB_URL.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg';
69
		} else {
70
			$groups[$group_id]['image'] = '';
71
		}
72
	}
73
}
74

    
75
// Check if we should show the main page or a post itself
76
if(!defined('POST_ID') OR !is_numeric(POST_ID)) {
77
	
78
	// Check if we should only list posts from a certain group
79
	if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
80
		$query_extra = " AND group_id = '".$_GET['g']."'";
81
	} else {
82
		$query_extra = '';
83
	}
84
	
85
	// Get settings
86
	$query_settings = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '$section_id'");
87
	if($query_settings->numRows() > 0) {
88
		$fetch_settings = $query_settings->fetchRow();
89
		$setting_header = ($fetch_settings['header']);
90
		$setting_post_loop = ($fetch_settings['post_loop']);
91
		$setting_footer = ($fetch_settings['footer']);
92
		$setting_posts_per_page = $fetch_settings['posts_per_page'];
93
	} else {
94
		$setting_header = '';
95
		$setting_post_loop = '';
96
		$setting_footer = '';
97
		$setting_posts_per_page = '';
98
	}
99
	
100
	// Get total number of posts
101
	$t = time();
102
	$query_total_num = $database->query("SELECT post_id FROM ".TABLE_PREFIX."mod_news_posts WHERE section_id = '$section_id' AND active = '1' AND title != '' $query_extra AND (published_when = '0' OR published_when <= $t) AND (published_until = 0 OR published_until >= $t)");
103
	$total_num = $query_total_num->numRows();
104

    
105
	// Work-out if we need to add limit code to sql
106
	if($setting_posts_per_page != 0) {
107
		$limit_sql = " LIMIT $position,$setting_posts_per_page";
108
	} else {
109
		$limit_sql = "";
110
	}
111
	
112
	// Query posts (for this page)
113
	$t = time();
114
	$query_posts = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_posts
115
		WHERE section_id = '$section_id' AND active = '1' AND title != ''$query_extra
116
		AND (published_when = '0' OR published_when <= $t) AND (published_until = 0 OR published_until >= $t)
117
		ORDER BY position DESC".$limit_sql);
118
	$num_posts = $query_posts->numRows();
119
	
120
	// Create previous and next links
121
	if($setting_posts_per_page != 0) {
122
		if($position > 0) {
123
			if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
124
				$pl_prepend = '<a href="?p='.($position-$setting_posts_per_page).'&g='.$_GET['g'].'"><< ';
125
			} else {
126
				$pl_prepend = '<a href="?p='.($position-$setting_posts_per_page).'"><< ';
127
			}
128
			$pl_append = '</a>';
129
			$previous_link = $pl_prepend.$TEXT['PREVIOUS'].$pl_append;
130
			$previous_page_link = $pl_prepend.$TEXT['PREVIOUS_PAGE'].$pl_append;
131
		} else {
132
			$previous_link = '';
133
			$previous_page_link = '';
134
		}
135
		if($position+$setting_posts_per_page >= $total_num) {
136
			$next_link = '';
137
			$next_page_link = '';
138
		} else {
139
			if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
140
				$nl_prepend = '<a href="?p='.($position+$setting_posts_per_page).'&g='.$_GET['g'].'"> ';
141
			} else {
142
				$nl_prepend = '<a href="?p='.($position+$setting_posts_per_page).'"> ';
143
			}
144
			$nl_append = ' >></a>';
145
			$next_link = $nl_prepend.$TEXT['NEXT'].$nl_append;
146
			$next_page_link = $nl_prepend.$TEXT['NEXT_PAGE'].$nl_append;
147
		}
148
		if($position+$setting_posts_per_page > $total_num) {
149
			$num_of = $position+$num_posts;
150
		} else {
151
			$num_of = $position+$setting_posts_per_page;
152
		}
153
		$out_of = ($position+1).'-'.$num_of.' '.strtolower($TEXT['OUT_OF']).' '.$total_num;
154
		$of = ($position+1).'-'.$num_of.' '.strtolower($TEXT['OF']).' '.$total_num;
155
		$display_previous_next_links = '';
156
	} else {
157
		$display_previous_next_links = 'none';
158
	}
159
		
160
	// Print header
161
	if($display_previous_next_links == 'none') {
162
		echo  str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array('','','','','','', $display_previous_next_links), $setting_header);
163
	} else {
164
		echo str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array($next_page_link, $next_link, $previous_page_link, $previous_link, $out_of, $of, $display_previous_next_links), $setting_header);
165
	}
166
	
167
	if($num_posts > 0) {
168
		if($query_extra != '') {
169
			?>
170
			<div class="selected_group_title">
171
				<?php echo '<a href="'.htmlspecialchars(strip_tags($_SERVER['PHP_SELF'])).'">'.PAGE_TITLE.'</a> >> '.$groups[$_GET['g']]['title']; ?>
172
			</div>
173
			<?php
174
		}
175
		while($post = $query_posts->fetchRow()) {
176
			if(isset($groups[$post['group_id']]['active']) AND $groups[$post['group_id']]['active'] != false) { // Make sure parent group is active
177
				$uid = $post['posted_by']; // User who last modified the post
178
				// Workout date and time of last modified post
179
				$post_date = gmdate(DATE_FORMAT, $post['posted_when']+TIMEZONE);
180
				$post_time = gmdate(TIME_FORMAT, $post['posted_when']+TIMEZONE);
181
				$publ_date = date(DATE_FORMAT,$post['published_when']);
182
				$publ_time = date(TIME_FORMAT,$post['published_when']);
183
				// Work-out the post link
184
				$post_link = page_link($post['link']);
185
				if(isset($_GET['p']) AND $position > 0) {
186
					$post_link .= '?p='.$position;
187
				}
188
				if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
189
					if(isset($_GET['p']) AND $position > 0) { $post_link .= '&'; } else { $post_link .= '?'; }
190
					$post_link .= 'g='.$_GET['g'];
191
				}
192
				// Get group id, title, and image
193
				$group_id = $post['group_id'];
194
				$group_title = $groups[$group_id]['title'];
195
				$group_image = $groups[$group_id]['image'];
196
				if($group_image == '') { $display_image = 'none'; } else { $display_image = ''; }
197
				if($group_id == 0) { $display_group = 'none'; } else { $display_group = ''; }
198
				// Replace [wblink--PAGE_ID--] with real link
199
				$short = ($post['content_short']);
200
				$wb->preprocess($short);
201
				// Replace vars with values
202
				$post_long_len = strlen($post['content_long']);
203
				$vars = array('[PAGE_TITLE]', '[GROUP_ID]', '[GROUP_TITLE]', '[GROUP_IMAGE]', '[DISPLAY_GROUP]', '[DISPLAY_IMAGE]', '[TITLE]', '[SHORT]', '[LINK]', '[MODI_DATE]', '[MODI_TIME]', '[PUBLISHED_DATE]', '[PUBLISHED_TIME]', '[USER_ID]', '[USERNAME]', '[DISPLAY_NAME]', '[EMAIL]', '[TEXT_READ_MORE]');
204
				if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '') {
205
					if($post_long_len < 9) {
206
						$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $publ_date, $publ_time, $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email'], '');
207
					} else {
208
						$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $publ_date, $publ_time, $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email'], $TEXT['READ_MORE']);
209
					}
210
				} else {
211
					if($post_long_len < 9) {
212
						$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $publ_date, $publ_time, '', '', '', '', '');
213
					} else {
214
						$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $publ_date, $publ_time, '', '', '', '', $TEXT['READ_MORE']);
215
					}
216
				}
217
				echo str_replace($vars, $values, $setting_post_loop);
218
			}
219
		}
220
	}
221
	
222
	// Print footer
223
	if($display_previous_next_links == 'none') {
224
		echo  str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array('','','','','','', $display_previous_next_links), $setting_footer);
225
	} else {
226
		echo str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array($next_page_link, $next_link, $previous_page_link, $previous_link, $out_of, $of, $display_previous_next_links), $setting_footer);
227
	}
228
	
229
} elseif(defined('POST_ID') AND is_numeric(POST_ID)) {
230
	
231
	// Get settings
232
	$query_settings = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '$section_id'");
233
	if($query_settings->numRows() > 0) {
234
		$fetch_settings = $query_settings->fetchRow();
235
		$setting_post_header = ($fetch_settings['post_header']);
236
		$setting_post_footer = ($fetch_settings['post_footer']);
237
		$setting_comments_header = ($fetch_settings['comments_header']);
238
		$setting_comments_loop = ($fetch_settings['comments_loop']);
239
		$setting_comments_footer = ($fetch_settings['comments_footer']);
240
	} else {
241
		$setting_post_header = '';
242
		$setting_post_footer = '';
243
		$setting_comments_header = '';
244
		$setting_comments_loop = '';
245
		$setting_comments_footer = '';
246
	}
247
	
248
	// Get page info
249
	$query_page = $database->query("SELECT link FROM ".TABLE_PREFIX."pages WHERE page_id = '".PAGE_ID."'");
250
	if($query_page->numRows() > 0) {
251
		$page = $query_page->fetchRow();
252
		$page_link = page_link($page['link']);
253
		if(isset($_GET['p']) AND $position > 0) {
254
			$page_link .= '?p='.$_GET['p'];
255
		}
256
		if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
257
			if(isset($_GET['p']) AND $position > 0) { $page_link .= '&'; } else { $page_link .= '?'; }
258
			$page_link .= 'g='.$_GET['g'];
259
		}
260
	} else {
261
		exit('Page not found');
262
	}
263
	
264
	// Get post info
265
	$t = time();
266
	$query_post = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_posts
267
		WHERE post_id = '".POST_ID."' AND active = '1'
268
		AND (published_when = '0' OR published_when <= $t) AND (published_until = 0 OR published_until >= $t)
269
	");
270
	if($query_post->numRows() > 0) {
271
		$post = $query_post->fetchRow();
272
		if(isset($groups[$post['group_id']]['active']) AND $groups[$post['group_id']]['active'] != false) { // Make sure parent group is active
273
			$uid = $post['posted_by']; // User who last modified the post
274
			// Workout date and time of last modified post
275
			$post_date = gmdate(DATE_FORMAT, $post['posted_when']+TIMEZONE);
276
			$post_time = gmdate(TIME_FORMAT, $post['posted_when']+TIMEZONE);
277
			$publ_date = date(DATE_FORMAT,$post['published_when']);
278
			$publ_time = date(TIME_FORMAT,$post['published_when']);
279
			// Get group id, title, and image
280
			$group_id = $post['group_id'];
281
			$group_title = $groups[$group_id]['title'];
282
			$group_image = $groups[$group_id]['image'];
283
			if($group_image == '') { $display_image = 'none'; } else { $display_image = ''; }
284
			if($group_id == 0) { $display_group = 'none'; } else { $display_group = ''; }
285
			$vars = array('[PAGE_TITLE]', '[GROUP_ID]', '[GROUP_TITLE]', '[GROUP_IMAGE]', '[DISPLAY_GROUP]', '[DISPLAY_IMAGE]', '[TITLE]', '[SHORT]', '[BACK]', '[MODI_DATE]', '[MODI_TIME]', '[PUBLISHED_DATE]', '[PUBLISHED_TIME]', '[USER_ID]', '[USERNAME]', '[DISPLAY_NAME]', '[EMAIL]');
286
			$post_short=$post['content_short'];
287
			$wb->preprocess($post_short);
288
			if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '') {
289
				$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $post_short, $page_link, $post_date, $post_time, $publ_date, $publ_time, $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email']);
290
			} else {
291
				$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $post_short, $page_link, $post_date, $post_time, $publ_date, $publ_time, '', '', '', '');
292
			}
293
			$post_long = ($post['content_long']);
294
		}
295
	} else {
296
		$wb->print_error($MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'], "javascript: history.go(-1);", false);
297
		exit(0);
298
	}
299
	
300
	// Print post header
301
	echo str_replace($vars, $values, $setting_post_header);
302
	
303
	// Replace [wblink--PAGE_ID--] with real link
304
  	$wb->preprocess($post_long);
305
	// Print long
306
	echo $post_long;
307
	
308
	// Print post footer
309
	echo str_replace($vars, $values, $setting_post_footer);
310
	
311
	// Show comments section if we have to
312
	if(($post['commenting'] == 'private' AND isset($wb) AND $wb->is_authenticated() == true) OR $post['commenting'] == 'public') {
313
		
314
		// Print comments header
315
		echo str_replace('[ADD_COMMENT_URL]', WB_URL.'/modules/news/comment.php?id='.POST_ID.'&sid='.$section_id, $setting_comments_header);
316
		
317
		// Query for comments
318
		$query_comments = $database->query("SELECT title,comment,commented_when,commented_by FROM ".TABLE_PREFIX."mod_news_comments WHERE post_id = '".POST_ID."' ORDER BY commented_when ASC");
319
		if($query_comments->numRows() > 0) {
320
			while($comment = $query_comments->fetchRow()) {
321
				// Display Comments without slashes, but with new-line characters
322
				$comment['comment'] = nl2br(($comment['comment']));
323
				$comment['title'] = ($comment['title']);
324
				// Print comments loop
325
				$commented_date = gmdate(DATE_FORMAT, $comment['commented_when']+TIMEZONE);
326
				$commented_time = gmdate(TIME_FORMAT, $comment['commented_when']+TIMEZONE);
327
				$uid = $comment['commented_by'];
328
				$vars = array('[TITLE]','[COMMENT]','[DATE]','[TIME]','[USER_ID]','[USERNAME]','[DISPLAY_NAME]', '[EMAIL]');
329
				if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '') {
330
					$values = array(($comment['title']), ($comment['comment']), $commented_date, $commented_time, $uid, ($users[$uid]['username']), ($users[$uid]['display_name']), ($users[$uid]['email']));
331
				} else {
332
					$values = array(($comment['title']), ($comment['comment']), $commented_date, $commented_time, '0', strtolower($TEXT['UNKNOWN']), $TEXT['UNKNOWN'], '');
333
				}
334
				echo str_replace($vars, $values, $setting_comments_loop);
335
			}
336
		} else {
337
			// Say no comments found
338
			if(isset($TEXT['NONE_FOUND'])) {
339
				echo $TEXT['NONE_FOUND'].'<br />';
340
			} else {
341
				echo 'None Found<br />';
342
			}
343
		}
344
		
345
		// Print comments footer
346
		echo str_replace('[ADD_COMMENT_URL]', WB_URL.'/modules/news/comment.php?id='.POST_ID.'&sid='.$section_id, $setting_comments_footer);
347
	}
348
	if(ENABLED_ASP) {
349
		$_SESSION['comes_from_view'] = POST_ID;
350
		$_SESSION['comes_from_view_time'] = time();
351
	}
352
}
353

    
354
?>
(30-30/30)