author | Dan |
Tue, 26 Jun 2007 17:28:18 -0400 | |
changeset 21 | 663fcf528726 |
parent 16 | 64e0d3d4cf14 |
child 23 | 320acf077276 |
permissions | -rw-r--r-- |
1 | 1 |
<?php |
2 |
||
3 |
/** |
|
4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
21
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
parents:
16
diff
changeset
|
5 |
* Version 1.0 (Banshee) |
1 | 6 |
* Copyright (C) 2006-2007 Dan Fuhry |
7 |
* paths.php - The part of Enano that actually manages content. Everything related to page handling and namespaces is in here. |
|
8 |
* |
|
9 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
10 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
11 |
* |
|
12 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
13 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
14 |
* |
|
15 |
* @package Enano |
|
16 |
* @subpackage PathManager |
|
17 |
* @see http://enano.homelinux.org/Help:API_Documentation |
|
18 |
*/ |
|
19 |
||
20 |
class pathManager { |
|
21 |
var $pages, $custom_page, $cpage, $page, $fullpage, $page_exists, $namespace, $nslist, $admin_tree, $wiki_mode, $page_protected, $template_cache; |
|
22 |
function __construct() |
|
23 |
{ |
|
24 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
25 |
||
26 |
$GLOBALS['paths'] =& $this; |
|
27 |
$this->pages = Array(); |
|
28 |
||
29 |
dc_here('paths: setting up namespaces, admin nodes'); |
|
30 |
||
31 |
// DEFINE NAMESPACES HERE |
|
32 |
// The key names should NOT EVER be changed, or Enano will be very broken |
|
33 |
$this->nslist = Array( |
|
34 |
'Article' =>'', |
|
35 |
'User' =>'User:', |
|
36 |
'File' =>'File:', |
|
37 |
'Help' =>'Help:', |
|
38 |
'Admin' =>'Admin:', |
|
39 |
'Special' =>'Special:', |
|
40 |
'System' =>'Enano:', |
|
41 |
'Template'=>'Template:', |
|
42 |
'Category'=>'Category:', |
|
43 |
'Project' =>str_replace(' ', '_', getConfig('site_name')).':', |
|
44 |
); |
|
45 |
||
46 |
// ACL types |
|
47 |
// These can also be added from within plugins |
|
48 |
||
49 |
$session->register_acl_type('read', AUTH_ALLOW, 'Read page(s)'); |
|
50 |
$session->register_acl_type('post_comments', AUTH_ALLOW, 'Post comments', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
51 |
$session->register_acl_type('edit_comments', AUTH_ALLOW, 'Edit own comments', Array('post_comments'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
52 |
$session->register_acl_type('edit_page', AUTH_WIKIMODE, 'Edit page', Array('view_source'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
53 |
$session->register_acl_type('view_source', AUTH_WIKIMODE, 'View source', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); // Only used if the page is protected |
|
54 |
$session->register_acl_type('mod_comments', AUTH_DISALLOW, 'Moderate comments', Array('edit_comments'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
55 |
$session->register_acl_type('history_view', AUTH_WIKIMODE, 'View history/diffs', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
56 |
$session->register_acl_type('history_rollback', AUTH_DISALLOW, 'Rollback history', Array('history_view'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
57 |
$session->register_acl_type('history_rollback_extra', AUTH_DISALLOW, 'Undelete page(s)', Array('history_rollback'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
58 |
$session->register_acl_type('protect', AUTH_DISALLOW, 'Protect page(s)', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
59 |
$session->register_acl_type('rename', AUTH_WIKIMODE, 'Rename page(s)', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
60 |
$session->register_acl_type('clear_logs', AUTH_DISALLOW, 'Clear page logs (dangerous)', Array('read', 'protect', 'even_when_protected'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
61 |
$session->register_acl_type('vote_delete', AUTH_ALLOW, 'Vote to delete', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
62 |
$session->register_acl_type('vote_reset', AUTH_DISALLOW, 'Reset delete votes', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
63 |
$session->register_acl_type('delete_page', AUTH_DISALLOW, 'Delete page(s)', Array(), 'Article|User|Project|Template|File|Help|System|Category'); |
|
64 |
$session->register_acl_type('set_wiki_mode', AUTH_DISALLOW, 'Set per-page wiki mode', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
65 |
$session->register_acl_type('password_set', AUTH_DISALLOW, 'Set password', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
66 |
$session->register_acl_type('password_reset', AUTH_DISALLOW, 'Disable/reset password', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
67 |
$session->register_acl_type('mod_misc', AUTH_DISALLOW, 'Super moderator (generate SQL backtraces, view IP addresses, and send large numbers of private messages)', Array(), 'All'); |
|
68 |
$session->register_acl_type('edit_cat', AUTH_WIKIMODE, 'Edit categorization', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
69 |
$session->register_acl_type('even_when_protected', AUTH_DISALLOW, 'Allow editing, renaming, and categorization even when protected', Array('edit_page', 'rename', 'mod_comments', 'edit_cat'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
70 |
$session->register_acl_type('upload_files', AUTH_DISALLOW, 'Upload files', Array('create_page'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
71 |
$session->register_acl_type('upload_new_version', AUTH_WIKIMODE, 'Upload new versions of files', Array('upload_files'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
72 |
$session->register_acl_type('create_page', AUTH_WIKIMODE, 'Create pages', Array(), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents:
1
diff
changeset
|
73 |
$session->register_acl_type('php_in_pages', AUTH_DISALLOW, 'Embed PHP code in pages', Array('edit_page'), 'Article|User|Project|Template|File|Help|System|Category|Admin'); |
1 | 74 |
$session->register_acl_type('edit_acl', AUTH_DISALLOW, 'Edit access control lists', Array('read', 'post_comments', 'edit_comments', 'edit_page', 'view_source', 'mod_comments', 'history_view', 'history_rollback', 'history_rollback_extra', 'protect', 'rename', 'clear_logs', 'vote_delete', 'vote_reset', 'delete_page', 'set_wiki_mode', 'password_set', 'password_reset', 'mod_misc', 'edit_cat', 'even_when_protected', 'upload_files', 'upload_new_version', 'create_page', 'php_in_pages')); |
75 |
||
76 |
// DO NOT add new admin pages here! Use a plugin to call $paths->addAdminNode(); |
|
77 |
$this->addAdminNode('General', 'General Configuration', 'GeneralConfig'); |
|
78 |
$this->addAdminNode('General', 'File uploads', 'UploadConfig'); |
|
79 |
$this->addAdminNode('General', 'Allowed file types', 'UploadAllowedMimeTypes'); |
|
80 |
$this->addAdminNode('General', 'Manage Plugins', 'PluginManager'); |
|
81 |
$this->addAdminNode('General', 'Backup database', 'DBBackup'); |
|
82 |
$this->addAdminNode('Content', 'Manage Pages', 'PageManager'); |
|
83 |
$this->addAdminNode('Content', 'Edit page content', 'PageEditor'); |
|
84 |
$this->addAdminNode('Appearance', 'Manage themes', 'ThemeManager'); |
|
85 |
$this->addAdminNode('Users', 'Manage users', 'UserManager'); |
|
86 |
$this->addAdminNode('Users', 'Edit groups', 'GroupManager'); |
|
87 |
$this->addAdminNode('Users', 'Ban control', 'BanControl'); |
|
88 |
$this->addAdminNode('Users', 'Mass e-mail', 'MassEmail'); |
|
89 |
||
90 |
$code = $plugins->setHook('acl_rule_init'); |
|
91 |
foreach ( $code as $cmd ) |
|
92 |
{ |
|
93 |
eval($cmd); |
|
94 |
} |
|
95 |
||
96 |
$this->wiki_mode = (int)getConfig('wiki_mode')=='1'; |
|
97 |
$this->template_cache = Array(); |
|
98 |
} |
|
99 |
function pathManager() |
|
100 |
{ |
|
101 |
$this->__construct(); |
|
102 |
} |
|
103 |
function init() |
|
104 |
{ |
|
105 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
106 |
||
107 |
dc_here('paths: selecting master page data'); |
|
108 |
||
109 |
$code = $plugins->setHook('paths_init_before'); |
|
110 |
foreach ( $code as $cmd ) |
|
111 |
{ |
|
112 |
eval($cmd); |
|
113 |
} |
|
114 |
||
115 |
$e = $db->sql_query('SELECT name,urlname,namespace,special,visible,comments_on,protected,delvotes,delvote_ips,wiki_mode,password FROM '.table_prefix.'pages ORDER BY name;'); |
|
116 |
if( !$e ) |
|
117 |
{ |
|
118 |
$db->_die('The error seems to have occured while selecting the page information. File: includes/paths.php; line: '.__LINE__); |
|
119 |
} |
|
120 |
while($r = $db->fetchrow()) |
|
121 |
{ |
|
122 |
||
123 |
$r['urlname_nons'] = $r['urlname']; |
|
124 |
$r['urlname'] = $this->nslist[$r['namespace']] . $r['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
125 |
||
126 |
if ( $r['delvotes'] == null) |
|
127 |
{ |
|
128 |
$r['delvotes'] = 0; |
|
129 |
} |
|
130 |
if ( $r['protected'] == 0 || $r['protected'] == 1 ) |
|
131 |
{ |
|
132 |
$r['really_protected'] = (int)$r['protected']; |
|
133 |
} |
|
134 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '1') |
|
135 |
{ |
|
136 |
$r['really_protected'] = 1; |
|
137 |
} |
|
138 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '0' ) |
|
139 |
{ |
|
140 |
$r['really_protected'] = 0; |
|
141 |
} |
|
142 |
||
143 |
$this->pages[$r['urlname']] = $r; |
|
144 |
$this->pages[] =& $this->pages[$r['urlname']]; |
|
145 |
||
146 |
} |
|
147 |
$db->free_result(); |
|
148 |
dc_here('paths: determining page ID'); |
|
149 |
if( isset($_GET['title']) ) |
|
150 |
{ |
|
151 |
if ( $_GET['title'] == '' && getConfig('main_page') != '' ) |
|
152 |
{ |
|
153 |
$this->main_page(); |
|
154 |
} |
|
155 |
if(strstr($_GET['title'], ' ')) |
|
156 |
{ |
|
157 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
158 |
$loc = str_replace(' ', '_', $loc); |
|
159 |
$loc = str_replace('+', '_', $loc); |
|
160 |
$loc = str_replace('%20', '_', $loc); |
|
161 |
redirect($loc, 'Redirecting...', 'Space detected in the URL, please wait whilst you are redirected', 0); |
|
162 |
exit; |
|
163 |
} |
|
164 |
$url_namespace_special = substr($_GET['title'], 0, strlen($this->nslist['Special']) ); |
|
165 |
$url_namespace_template = substr($_GET['title'], 0, strlen($this->nslist['Template']) ); |
|
166 |
if($url_namespace_special == $this->nslist['Special'] || $url_namespace_template == $this->nslist['Template'] ) |
|
167 |
{ |
|
168 |
$ex = explode('/', $_GET['title']); |
|
169 |
$this->page = $ex[0]; |
|
170 |
} |
|
171 |
else |
|
172 |
{ |
|
173 |
$this->page = $_GET['title']; |
|
174 |
} |
|
175 |
$this->fullpage = $_GET['title']; |
|
176 |
} |
|
177 |
elseif( isset($_SERVER['PATH_INFO']) ) |
|
178 |
{ |
|
179 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
180 |
||
181 |
if( !isset($pi[1]) || (isset($pi[1]) && $pi[1] == '' && getConfig('main_page') != '') ) |
|
182 |
{ |
|
183 |
$this->main_page(); |
|
184 |
} |
|
185 |
if( strstr($pi[1], ' ') ) |
|
186 |
{ |
|
187 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
|
188 |
$loc = str_replace('+', '_', $loc); |
|
189 |
$loc = str_replace('%20', '_', $loc); |
|
190 |
redirect($loc, 'Redirecting...', 'Please wait whilst you are redirected', 3); |
|
191 |
exit; |
|
192 |
} |
|
193 |
unset($pi[0]); |
|
194 |
if( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || substr($pi[1], 0, strlen($this->nslist['Template'])) == $this->nslist['Template'] ) |
|
195 |
{ |
|
196 |
$pi2 = $pi[1]; |
|
197 |
} |
|
198 |
else |
|
199 |
{ |
|
200 |
$pi2 = implode('/', $pi); |
|
201 |
} |
|
202 |
$this->page = $pi2; |
|
203 |
$this->fullpage = implode('/', $pi); |
|
204 |
} |
|
205 |
else |
|
206 |
{ |
|
207 |
$k = array_keys($_GET); |
|
208 |
foreach($k as $c) |
|
209 |
{ |
|
210 |
if(substr($c, 0, 1) == '/') |
|
211 |
{ |
|
212 |
$this->page = substr($c, 1, strlen($c)); |
|
213 |
||
214 |
// Bugfix for apache somehow passing dots as underscores |
|
215 |
global $mime_types; |
|
216 |
||
217 |
$exts = array_keys($mime_types); |
|
218 |
$exts = '(' . implode('|', $exts) . ')'; |
|
219 |
||
220 |
if ( preg_match( '#_'.$exts.'#i', $this->page ) ) |
|
221 |
{ |
|
222 |
$this->page = preg_replace( '#_'.$exts.'#i', '.\\1', $this->page ); |
|
223 |
} |
|
224 |
||
225 |
$this->fullpage = $this->page; |
|
226 |
||
227 |
if(substr($this->page, 0, strlen($this->nslist['Special']))==$this->nslist['Special'] || substr($this->page, 0, strlen($this->nslist['Template']))==$this->nslist['Template']) |
|
228 |
{ |
|
229 |
$ex = explode('/', $this->page); |
|
230 |
$this->page = $ex[0]; |
|
231 |
} |
|
232 |
if(strstr($this->page, ' ')) |
|
233 |
{ |
|
234 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
|
235 |
$loc = str_replace('+', '_', $loc); |
|
236 |
$loc = str_replace('%20', '_', $loc); |
|
237 |
redirect($loc, 'Redirecting...', 'Space in the URL detected, please wait whilst you are redirected', 0); |
|
238 |
exit; |
|
239 |
} |
|
240 |
break; |
|
241 |
} |
|
242 |
} |
|
243 |
if(!$this->page && !($this->page == '' && getConfig('main_page') == '')) |
|
244 |
{ |
|
245 |
$this->main_page(); |
|
246 |
} |
|
247 |
} |
|
248 |
||
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
249 |
$this->page = sanitize_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
250 |
$this->fullpage = sanitize_page_id($this->fullpage); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
251 |
|
1 | 252 |
dc_here('paths: setting $paths->cpage'); |
253 |
||
254 |
if(isset($this->pages[$this->page])) |
|
255 |
{ |
|
256 |
dc_here('paths: page existence verified, our page ID is: '.$this->page); |
|
257 |
$this->page_exists = true; |
|
258 |
$this->cpage = $this->pages[$this->page]; |
|
259 |
$this->namespace = $this->cpage['namespace']; |
|
260 |
if(!isset($this->cpage['wiki_mode'])) $this->cpage['wiki_mode'] = 2; |
|
261 |
||
262 |
// Determine the wiki mode for this page, now that we have this->cpage established |
|
263 |
if($this->cpage['wiki_mode'] == 2) |
|
264 |
{ |
|
265 |
$this->wiki_mode = (int)getConfig('wiki_mode'); |
|
266 |
} |
|
267 |
else |
|
268 |
{ |
|
269 |
$this->wiki_mode = $this->cpage['wiki_mode']; |
|
270 |
} |
|
271 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
272 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
273 |
{ |
|
274 |
$this->wiki_mode = true; |
|
275 |
} |
|
276 |
// And above all, if the site requires wiki mode to be off for non-logged-in users, disable it now |
|
277 |
if(getConfig('wiki_mode_require_login')=='1' && !$session->user_logged_in) |
|
278 |
{ |
|
279 |
$this->wiki_mode = false; |
|
280 |
} |
|
281 |
if($this->cpage['protected'] == 2) |
|
282 |
{ |
|
283 |
// The page is semi-protected, determine permissions |
|
284 |
if($session->user_logged_in && $session->reg_time + 60*60*24*4 < time()) |
|
285 |
{ |
|
286 |
$this->page_protected = 0; |
|
287 |
} |
|
288 |
else |
|
289 |
{ |
|
290 |
$this->page_protected = 1; |
|
291 |
} |
|
292 |
} |
|
293 |
else |
|
294 |
{ |
|
295 |
$this->page_protected = $this->cpage['protected']; |
|
296 |
} |
|
297 |
} |
|
298 |
else |
|
299 |
{ |
|
300 |
dc_here('paths: page doesn\'t exist, creating new page in memory<br />our page ID is: '.$this->page); |
|
301 |
$this->page_exists = false; |
|
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
302 |
$page_name = dirtify_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
303 |
$page_name = str_replace('_', ' ', $page_name); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
304 |
|
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
305 |
$pid_cleaned = sanitize_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
306 |
if ( $pid_cleaned != $this->page ) |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
307 |
{ |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
308 |
redirect($pid_cleaned, 'Sanitizer message', 'page id sanitized', 0); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
309 |
} |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
310 |
|
1 | 311 |
$this->cpage = Array( |
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
312 |
'name'=>$page_name, |
1 | 313 |
'urlname'=>$this->page, |
314 |
'namespace'=>'Article', |
|
315 |
'special'=>0, |
|
316 |
'visible'=>0, |
|
317 |
'comments_on'=>1, |
|
318 |
'protected'=>0, |
|
319 |
'delvotes'=>0, |
|
320 |
'delvote_ips'=>'', |
|
321 |
'wiki_mode'=>2, |
|
322 |
); |
|
323 |
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary |
|
324 |
$k = array_keys($this->nslist); |
|
325 |
for($i=0;$i<sizeof($this->nslist);$i++) |
|
326 |
{ |
|
327 |
$ln = strlen($this->nslist[$k[$i]]); |
|
328 |
if( substr($this->page, 0, $ln) == $this->nslist[$k[$i]] ) |
|
329 |
{ |
|
330 |
$this->cpage['namespace'] = $k[$i]; |
|
331 |
$this->cpage['urlname_nons'] = substr($this->page, strlen($this->nslist[$this->cpage['namespace']]), strlen($this->page)); |
|
332 |
if(!isset($this->cpage['wiki_mode'])) |
|
333 |
{ |
|
334 |
$this->cpage['wiki_mode'] = 2; |
|
335 |
} |
|
336 |
} |
|
337 |
} |
|
338 |
$this->namespace = $this->cpage['namespace']; |
|
339 |
||
340 |
if($this->namespace=='System') |
|
341 |
{ |
|
342 |
$this->cpage['protected'] = 1; |
|
343 |
} |
|
344 |
if($this->namespace=='Special') |
|
345 |
{ |
|
346 |
// Can't load nonexistent pages |
|
347 |
$this->main_page(); |
|
348 |
} |
|
349 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
350 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
351 |
{ |
|
352 |
$this->wiki_mode = true; |
|
353 |
} |
|
354 |
} |
|
355 |
// This is used in the admin panel to keep track of form submission targets |
|
356 |
$this->cpage['module'] = $this->cpage['urlname']; |
|
357 |
||
358 |
// Page is set up, call any hooks |
|
359 |
$code = $plugins->setHook('page_set'); |
|
360 |
foreach ( $code as $cmd ) |
|
361 |
{ |
|
362 |
eval($cmd); |
|
363 |
} |
|
364 |
||
365 |
$session->init_permissions(); |
|
366 |
} |
|
367 |
||
368 |
function add_page($flags) |
|
369 |
{ |
|
370 |
//dc_dump($flags, 'paths: page added by plugin:'); |
|
371 |
$flags['urlname_nons'] = $flags['urlname']; |
|
372 |
$flags['urlname'] = $this->nslist[$flags['namespace']] . $flags['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
373 |
$pages_len = sizeof($this->pages)/2; |
|
374 |
$this->pages[$pages_len] = $flags; |
|
375 |
$this->pages[$flags['urlname']] =& $this->pages[$pages_len]; |
|
376 |
} |
|
377 |
||
378 |
function main_page() |
|
379 |
{ |
|
380 |
if( is_string(getConfig('main_page')) ) |
|
381 |
{ |
|
382 |
header('Location: '.makeUrl(getConfig('main_page'))); |
|
383 |
die('If you aren\'t redirected, <a href="' . makeUrl(getConfig('main_page')) . '">click here</a>.'); |
|
384 |
} |
|
385 |
else |
|
386 |
{ |
|
387 |
header('Location: '.makeUrl($this->pages[0]['urlname'])); |
|
388 |
die('If you aren\'t redirected, <a href="' . makeUrl($this->pages[0]['urlname']) . '">click here</a>.'); |
|
389 |
} |
|
390 |
exit; |
|
391 |
} |
|
392 |
||
393 |
function sysmsg($n) |
|
394 |
{ |
|
395 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
396 |
dc_here('paths: system message requested: '.$n); |
|
397 |
$q = $db->sql_query('SELECT page_text, char_tag FROM '.table_prefix.'page_text WHERE page_id=\''.$db->escape($n).'\' AND namespace=\'System\''); |
|
398 |
if( !$q ) |
|
399 |
{ |
|
400 |
$db->_die('Error during generic selection of system page data.'); |
|
401 |
} |
|
402 |
if($db->numrows() < 1) |
|
403 |
{ |
|
404 |
return false; |
|
405 |
//$db->_die('Error during generic selection of system page data: there were no rows in the text table that matched the page text query.'); |
|
406 |
} |
|
407 |
$r = $db->fetchrow(); |
|
408 |
$db->free_result(); |
|
409 |
$message = $r['page_text']; |
|
410 |
||
411 |
$message = preg_replace('/<noinclude>(.*?)<\/noinclude>/is', '', $message); |
|
412 |
||
413 |
return $message; |
|
414 |
} |
|
415 |
function get_pageid_from_url() |
|
416 |
{ |
|
417 |
if(isset($_GET['title'])) |
|
418 |
{ |
|
419 |
if( $_GET['title'] == '' && getConfig('main_page') != '' ) |
|
420 |
{ |
|
421 |
$this->main_page(); |
|
422 |
} |
|
423 |
if(strstr($_GET['title'], ' ')) |
|
424 |
{ |
|
425 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
426 |
$loc = str_replace(' ', '_', $loc); |
|
427 |
$loc = str_replace('+', '_', $loc); |
|
428 |
header('Location: '.$loc); |
|
429 |
exit; |
|
430 |
} |
|
431 |
$ret = $_GET['title']; |
|
432 |
} |
|
433 |
elseif(isset($_SERVER['PATH_INFO'])) |
|
434 |
{ |
|
435 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
436 |
||
437 |
if(!isset($pi[1]) || (isset($pi[1]) && $pi[1] == '')) |
|
438 |
{ |
|
439 |
return false; |
|
440 |
} |
|
441 |
||
442 |
if(strstr($pi[1], ' ')) |
|
443 |
{ |
|
444 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
445 |
$loc = str_replace(' ', '_', $loc); |
|
446 |
$loc = str_replace('+', '_', $loc); |
|
447 |
header('Location: '.$loc); |
|
448 |
exit; |
|
449 |
} |
|
450 |
if( !( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] ) ) |
|
451 |
{ |
|
452 |
unset($pi[0]); |
|
453 |
$pi[1] = implode('/', $pi); |
|
454 |
} |
|
455 |
$ret = $pi[1]; |
|
456 |
} |
|
457 |
else |
|
458 |
{ |
|
459 |
$k = array_keys($_GET); |
|
460 |
foreach($k as $c) |
|
461 |
{ |
|
462 |
if(substr($c, 0, 1) == '/') |
|
463 |
{ |
|
464 |
$ret = substr($c, 1, strlen($c)); |
|
465 |
if(substr($ret, 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || |
|
466 |
substr($ret, 0, strlen($this->nslist['Admin'])) == $this->nslist['Admin']) |
|
467 |
{ |
|
468 |
$ret = explode('/', $ret); |
|
469 |
$ret = $ret[0]; |
|
470 |
} |
|
471 |
break; |
|
472 |
} |
|
473 |
} |
|
474 |
} |
|
475 |
||
476 |
return ( isset($ret) ) ? $ret : false; |
|
477 |
} |
|
478 |
// Parses a (very carefully formed) array into Javascript code compatible with the Tigra Tree Menu used in the admin menu |
|
479 |
function parseAdminTree() |
|
480 |
{ |
|
481 |
$k = array_keys($this->admin_tree); |
|
482 |
$i = 0; |
|
483 |
$ret = ''; |
|
484 |
$ret .= "var TREE_ITEMS = [\n ['Administration panel home', 'javascript:ajaxPage(\'".$this->nslist['Admin']."Home\');',\n "; |
|
485 |
foreach($k as $key) |
|
486 |
{ |
|
487 |
$i++; |
|
488 |
$ret .= "['".$key."', 'javascript:trees[0].toggle($i)', \n"; |
|
489 |
foreach($this->admin_tree[$key] as $c) |
|
490 |
{ |
|
491 |
$i++; |
|
492 |
$ret .= " ['".$c['name']."', 'javascript:ajaxPage(\\'".$this->nslist['Admin'].$c['pageid']."\\');'],\n"; |
|
493 |
} |
|
494 |
$ret .= " ],\n"; |
|
495 |
} |
|
496 |
$ret .= " ['Log out of admin panel', 'javascript:ajaxPage(\\'".$this->nslist['Admin']."AdminLogout\\');'],\n"; |
|
497 |
// I used this while I painstakingly wrote the Runt code that auto-expands certain nodes based on the value of a bitfield stored in a cookie. *shudders* |
|
498 |
// $ret .= " ['(debug) Clear menu bitfield', 'javascript:createCookie(\\'admin_menu_state\\', \\'1\\', 365);'],\n"; |
|
499 |
$ret .= "]\n];"; |
|
500 |
return $ret; |
|
501 |
} |
|
502 |
function addAdminNode($section, $page_title, $url) |
|
503 |
{ |
|
504 |
if(!isset($this->admin_tree[$section])) |
|
505 |
{ |
|
506 |
$this->admin_tree[$section] = Array(); |
|
507 |
} |
|
508 |
$this->admin_tree[$section][] = Array( |
|
509 |
'name'=>$page_title, |
|
510 |
'pageid'=>$url |
|
511 |
); |
|
512 |
} |
|
513 |
function getParam($id = 0) |
|
514 |
{ |
|
515 |
if(isset($_SERVER['PATH_INFO'])) |
|
516 |
{ |
|
517 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
518 |
$id = $id + 2; |
|
519 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
520 |
} |
|
521 |
else if( isset($_GET['title']) ) |
|
522 |
{ |
|
523 |
$pi = explode('/', $_GET['title']); |
|
524 |
$id = $id + 1; |
|
525 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
526 |
} |
|
527 |
else |
|
528 |
{ |
|
529 |
$k = array_keys($_GET); |
|
530 |
foreach($k as $c) |
|
531 |
{ |
|
532 |
if(substr($c, 0, 1) == '/') |
|
533 |
{ |
|
534 |
||
535 |
// Bugfix for apache somehow passing dots as underscores |
|
536 |
global $mime_types; |
|
537 |
$exts = array_keys($mime_types); |
|
538 |
$exts = '(' . implode('|', $exts) . ')'; |
|
539 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
540 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
541 |
||
542 |
$pi = explode('/', $c); |
|
543 |
$id = $id + 2; |
|
544 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
545 |
} |
|
546 |
} |
|
547 |
return false; |
|
548 |
} |
|
549 |
} |
|
550 |
||
551 |
function getAllParams() |
|
552 |
{ |
|
553 |
if(isset($_SERVER['PATH_INFO'])) |
|
554 |
{ |
|
555 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
556 |
unset($pi[0], $pi[1]); |
|
557 |
return implode('/', $pi); |
|
558 |
} |
|
559 |
else if( isset($_GET['title']) ) |
|
560 |
{ |
|
561 |
$pi = explode('/', $_GET['title']); |
|
562 |
unset($pi[0]); |
|
563 |
return implode('/', $pi); |
|
564 |
} |
|
565 |
else |
|
566 |
{ |
|
567 |
$k = array_keys($_GET); |
|
568 |
foreach($k as $c) |
|
569 |
{ |
|
570 |
if(substr($c, 0, 1) == '/') |
|
571 |
{ |
|
572 |
// Bugfix for apache somehow passing dots as underscores |
|
573 |
global $mime_types; |
|
574 |
$exts = array_keys($mime_types); |
|
575 |
$exts = '(' . implode('|', $exts) . ')'; |
|
576 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
577 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
578 |
||
579 |
$pi = explode('/', $c); |
|
580 |
unset($pi[0], $pi[1]); |
|
581 |
return implode('/', $pi); |
|
582 |
} |
|
583 |
} |
|
584 |
return false; |
|
585 |
} |
|
586 |
} |
|
587 |
||
588 |
/** |
|
589 |
* Creates a new namespace in memory |
|
590 |
* @param string $id the namespace ID |
|
591 |
* @param string $prefix the URL prefix, must not be blank or already used |
|
592 |
* @return bool true on success false on failure |
|
593 |
*/ |
|
594 |
||
595 |
function create_namespace($id, $prefix) |
|
596 |
{ |
|
597 |
if(in_array($prefix, $this->nslist)) |
|
598 |
{ |
|
599 |
// echo '<b>Warning:</b> pathManager::create_namespace: Prefix "'.$prefix.'" is already taken<br />'; |
|
600 |
return false; |
|
601 |
} |
|
602 |
if( isset($this->nslist[$id]) ) |
|
603 |
{ |
|
604 |
// echo '<b>Warning:</b> pathManager::create_namespace: Namespace ID "'.$prefix.'" is already taken<br />'; |
|
605 |
return false; |
|
606 |
} |
|
607 |
$this->nslist[$id] = $prefix; |
|
608 |
} |
|
609 |
||
610 |
/** |
|
611 |
* Fetches the page texts for searching |
|
612 |
*/ |
|
613 |
||
614 |
function fetch_page_search_texts() |
|
615 |
{ |
|
616 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
617 |
$texts = Array(); |
|
618 |
$q = $db->sql_query('SELECT t.page_id,t.namespace,t.page_text,t.char_tag FROM '.table_prefix.'page_text AS t |
|
619 |
LEFT JOIN '.table_prefix.'pages AS p |
|
620 |
ON t.page_id=p.urlname |
|
621 |
WHERE p.namespace=t.namespace |
|
622 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
623 |
AND p.visible=1;'); // Only indexes "visible" pages |
|
624 |
||
625 |
if( !$q ) |
|
626 |
{ |
|
627 |
return false; |
|
628 |
} |
|
629 |
while($row = $db->fetchrow()) |
|
630 |
{ |
|
631 |
$pid = $this->nslist[$row['namespace']] . $row['page_id']; |
|
632 |
$texts[$pid] = $row['page_text']; |
|
633 |
} |
|
634 |
$db->free_result(); |
|
635 |
||
636 |
return $texts; |
|
637 |
} |
|
638 |
||
639 |
/** |
|
640 |
* Fetches a MySQL search query to use for Searcher::searchMySQL() |
|
641 |
*/ |
|
642 |
||
643 |
function fetch_page_search_resource() |
|
644 |
{ |
|
645 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
646 |
// sha1('') returns "da39a3ee5e6b4b0d3255bfef95601890afd80709" |
|
647 |
$texts = 'SELECT t.page_text,CONCAT(\'ns=\',t.namespace,\';pid=\',t.page_id) FROM '.table_prefix.'page_text AS t |
|
648 |
LEFT JOIN '.table_prefix.'pages AS p |
|
649 |
ON ( t.page_id=p.urlname AND t.namespace=p.namespace ) |
|
650 |
WHERE p.namespace=t.namespace |
|
651 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
652 |
AND p.visible=1;'; // Only indexes "visible" pages |
|
653 |
return $texts; |
|
654 |
} |
|
655 |
||
656 |
/** |
|
657 |
* Rebuilds the search index |
|
658 |
*/ |
|
659 |
||
660 |
function rebuild_search_index() |
|
661 |
{ |
|
662 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
663 |
$search = new Searcher(); |
|
664 |
$texts = Array(); |
|
665 |
$textq = $db->sql_unbuffered_query($this->fetch_page_search_resource()); |
|
666 |
if(!$textq) $db->_die(''); |
|
667 |
while($row = $db->fetchrow_num()) |
|
668 |
{ |
|
669 |
$texts[(string)$row[1]] = $row[0]; |
|
670 |
} |
|
671 |
$search->buildIndex($texts); |
|
672 |
// echo '<pre>'.print_r($search->index, true).'</pre>'; |
|
673 |
// return; |
|
674 |
$q = $db->sql_query('DELETE FROM '.table_prefix.'search_index'); |
|
675 |
if(!$q) return false; |
|
676 |
$secs = Array(); |
|
677 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
678 |
foreach($search->index as $word => $pages) |
|
679 |
{ |
|
680 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
681 |
} |
|
682 |
$q .= implode(',', $secs); |
|
683 |
unset($secs); |
|
684 |
$q .= ';'; |
|
685 |
$result = $db->sql_query($q); |
|
686 |
$db->free_result(); |
|
687 |
if($result) |
|
688 |
return true; |
|
689 |
else |
|
690 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
691 |
} |
|
692 |
||
693 |
/** |
|
694 |
* Partially rebuilds the search index, removing/inserting entries only for the current page |
|
695 |
* @param string $page_id |
|
696 |
* @param string $namespace |
|
697 |
*/ |
|
698 |
||
699 |
function rebuild_page_index($page_id, $namespace) |
|
700 |
{ |
|
701 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
702 |
if(!$db->sql_query('SELECT page_text FROM '.table_prefix.'page_text |
|
703 |
WHERE page_id=\''.$db->escape($page_id).'\' AND namespace=\''.$db->escape($namespace).'\';')) |
|
704 |
{ |
|
705 |
return $db->get_error(); |
|
706 |
} |
|
707 |
$row = $db->fetchrow(); |
|
708 |
$db->free_result(); |
|
709 |
$search = new Searcher(); |
|
710 |
$search->buildIndex(Array("ns={$namespace};pid={$page_id}"=>$row['page_text'])); |
|
711 |
$new_index = $search->index; |
|
712 |
||
713 |
$keys = array_keys($search->index); |
|
714 |
foreach($keys as $i => $k) |
|
715 |
{ |
|
716 |
$c =& $keys[$i]; |
|
717 |
$c = hexencode($c, '', ''); |
|
718 |
} |
|
719 |
$keys = "word=0x" . implode ( " OR word=0x", $keys ) . ""; |
|
720 |
||
721 |
// Zap the cache |
|
722 |
$cache = array_keys($search->index); |
|
723 |
if ( count($cache) < 1 ) |
|
724 |
{ |
|
725 |
return false; |
|
726 |
} |
|
727 |
$cache = "query LIKE '%" . implode ( "%' OR query LIKE '%", $cache ) . "%'"; |
|
728 |
$db->sql_query('DELETE FROM '.table_prefix.'search_cache WHERE '.$cache); |
|
729 |
||
730 |
$query = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
731 |
||
732 |
while($row = $db->fetchrow()) |
|
733 |
{ |
|
734 |
$row['word'] = rtrim($row['word'], "\0"); |
|
735 |
$new_index[ $row['word'] ] = $row['page_names'] . ',' . $search->index[ $row['word'] ]; |
|
736 |
} |
|
737 |
$db->free_result(); |
|
738 |
||
739 |
$db->sql_query('DELETE FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
740 |
||
741 |
$secs = Array(); |
|
742 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
743 |
foreach($new_index as $word => $pages) |
|
744 |
{ |
|
745 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
746 |
} |
|
747 |
$q .= implode(',', $secs); |
|
748 |
unset($secs); |
|
749 |
$q .= ';'; |
|
750 |
if(!$db->check_query($q)) |
|
751 |
{ |
|
752 |
die('BUG: PathManager::rebuild_page_index: Query rejected by SQL parser:<pre>'.$q.'</pre>'); |
|
753 |
} |
|
754 |
$result = $db->sql_query($q); |
|
755 |
if($result) |
|
756 |
return true; |
|
757 |
else |
|
758 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
759 |
||
760 |
} |
|
761 |
||
762 |
/** |
|
763 |
* Creates an instance of the Searcher class, including index info |
|
764 |
* @return object |
|
765 |
*/ |
|
766 |
||
767 |
function makeSearcher($match_case = false) |
|
768 |
{ |
|
769 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
770 |
$search = new Searcher(); |
|
771 |
$q = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index;'); |
|
772 |
if(!$q) |
|
773 |
{ |
|
774 |
echo $db->get_error(); |
|
775 |
return false; |
|
776 |
} |
|
777 |
$idx = Array(); |
|
778 |
while($row = $db->fetchrow($q)) |
|
779 |
{ |
|
780 |
$row['word'] = rtrim($row['word'], "\0"); |
|
781 |
$idx[$row['word']] = $row['page_names']; |
|
782 |
} |
|
783 |
$db->free_result(); |
|
784 |
$search->index = $idx; |
|
785 |
if($match_case) |
|
786 |
$search->match_case = true; |
|
787 |
return $search; |
|
788 |
} |
|
789 |
||
790 |
/** |
|
791 |
* Creates an associative array filled with the values of all the page titles |
|
792 |
* @return array |
|
793 |
*/ |
|
794 |
||
795 |
function get_page_titles() |
|
796 |
{ |
|
797 |
$texts = Array(); |
|
798 |
for ( $i = 0; $i < sizeof($this->pages) / 2; $i++ ) |
|
799 |
{ |
|
800 |
$texts[$this->pages[$i]['urlname']] = $this->pages[$i]['name']; |
|
801 |
} |
|
802 |
return $texts; |
|
803 |
} |
|
804 |
||
805 |
/** |
|
806 |
* Creates an instance of the Searcher class, including index info for page titles |
|
807 |
* @return object |
|
808 |
*/ |
|
809 |
||
810 |
function makeTitleSearcher($match_case = false) |
|
811 |
{ |
|
812 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
813 |
$search = new Searcher(); |
|
814 |
$texts = $this->get_page_titles(); |
|
815 |
$search->buildIndex($texts); |
|
816 |
if($match_case) |
|
817 |
$search->match_case = true; |
|
818 |
return $search; |
|
819 |
} |
|
820 |
||
821 |
} |
|
822 |
||
823 |
?> |