author | Dan |
Wed, 29 Aug 2007 23:35:06 -0400 | |
changeset 109 | 93ef7df77847 |
parent 93 | 95c4d91bd954 |
child 116 | 77c75179bb95 |
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 |
|
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
5 |
* Version 1.0.1 (Loch Ness) |
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 |
|
23
320acf077276
At last, I fixed all those phased-out enano.homelinux.org links!
Dan
parents:
21
diff
changeset
|
17 |
* @see http://enanocms.org/Help:API_Documentation |
1 | 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:', |
|
40
723bb7acf914
Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents:
30
diff
changeset
|
43 |
'Project' =>sanitize_page_id(getConfig('site_name')).':', |
1 | 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'); |
|
76
608dee512bf0
Work started on page tags, still aways to go, but syncing to Nighthawk
Dan
parents:
74
diff
changeset
|
64 |
$session->register_acl_type('tag_create', AUTH_ALLOW, 'Tag page(s)', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
608dee512bf0
Work started on page tags, still aways to go, but syncing to Nighthawk
Dan
parents:
74
diff
changeset
|
65 |
$session->register_acl_type('tag_delete_own', AUTH_ALLOW, 'Remove own page tags', Array('read', 'tag_create'), 'Article|User|Project|Template|File|Help|System|Category'); |
608dee512bf0
Work started on page tags, still aways to go, but syncing to Nighthawk
Dan
parents:
74
diff
changeset
|
66 |
$session->register_acl_type('tag_delete_other', AUTH_DISALLOW, 'Remove others\' page tags', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
1 | 67 |
$session->register_acl_type('set_wiki_mode', AUTH_DISALLOW, 'Set per-page wiki mode', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
68 |
$session->register_acl_type('password_set', AUTH_DISALLOW, 'Set password', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
69 |
$session->register_acl_type('password_reset', AUTH_DISALLOW, 'Disable/reset password', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
70 |
$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'); |
|
71 |
$session->register_acl_type('edit_cat', AUTH_WIKIMODE, 'Edit categorization', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
72 |
$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'); |
|
73 |
$session->register_acl_type('upload_files', AUTH_DISALLOW, 'Upload files', Array('create_page'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
74 |
$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'); |
|
75 |
$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
|
76 |
$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 | 77 |
$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')); |
78 |
||
79 |
// DO NOT add new admin pages here! Use a plugin to call $paths->addAdminNode(); |
|
80 |
$this->addAdminNode('General', 'General Configuration', 'GeneralConfig'); |
|
81 |
$this->addAdminNode('General', 'File uploads', 'UploadConfig'); |
|
82 |
$this->addAdminNode('General', 'Allowed file types', 'UploadAllowedMimeTypes'); |
|
83 |
$this->addAdminNode('General', 'Manage Plugins', 'PluginManager'); |
|
84 |
$this->addAdminNode('General', 'Backup database', 'DBBackup'); |
|
85 |
$this->addAdminNode('Content', 'Manage Pages', 'PageManager'); |
|
86 |
$this->addAdminNode('Content', 'Edit page content', 'PageEditor'); |
|
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
87 |
$this->addAdminNode('Content', 'Manage page groups', 'PageGroups'); |
1 | 88 |
$this->addAdminNode('Appearance', 'Manage themes', 'ThemeManager'); |
89 |
$this->addAdminNode('Users', 'Manage users', 'UserManager'); |
|
90 |
$this->addAdminNode('Users', 'Edit groups', 'GroupManager'); |
|
30 | 91 |
$this->addAdminNode('Users', 'COPPA support', 'COPPA'); |
1 | 92 |
$this->addAdminNode('Users', 'Mass e-mail', 'MassEmail'); |
109
93ef7df77847
Added a ton of new log points for administrator actions; restructured security log view and enabled pagination for security logs; string change in ajax.php for RDNS operation failure
Dan
parents:
93
diff
changeset
|
93 |
$this->addAdminNode('Security', 'Security log', 'SecurityLog'); |
93ef7df77847
Added a ton of new log points for administrator actions; restructured security log view and enabled pagination for security logs; string change in ajax.php for RDNS operation failure
Dan
parents:
93
diff
changeset
|
94 |
$this->addAdminNode('Security', 'Ban control', 'BanControl'); |
1 | 95 |
|
96 |
$code = $plugins->setHook('acl_rule_init'); |
|
97 |
foreach ( $code as $cmd ) |
|
98 |
{ |
|
99 |
eval($cmd); |
|
100 |
} |
|
101 |
||
102 |
$this->wiki_mode = (int)getConfig('wiki_mode')=='1'; |
|
103 |
$this->template_cache = Array(); |
|
104 |
} |
|
105 |
function pathManager() |
|
106 |
{ |
|
107 |
$this->__construct(); |
|
108 |
} |
|
109 |
function init() |
|
110 |
{ |
|
111 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
112 |
||
113 |
dc_here('paths: selecting master page data'); |
|
114 |
||
115 |
$code = $plugins->setHook('paths_init_before'); |
|
116 |
foreach ( $code as $cmd ) |
|
117 |
{ |
|
118 |
eval($cmd); |
|
119 |
} |
|
120 |
||
121 |
$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;'); |
|
122 |
if( !$e ) |
|
123 |
{ |
|
124 |
$db->_die('The error seems to have occured while selecting the page information. File: includes/paths.php; line: '.__LINE__); |
|
125 |
} |
|
126 |
while($r = $db->fetchrow()) |
|
127 |
{ |
|
128 |
||
129 |
$r['urlname_nons'] = $r['urlname']; |
|
130 |
$r['urlname'] = $this->nslist[$r['namespace']] . $r['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
131 |
||
132 |
if ( $r['delvotes'] == null) |
|
133 |
{ |
|
134 |
$r['delvotes'] = 0; |
|
135 |
} |
|
136 |
if ( $r['protected'] == 0 || $r['protected'] == 1 ) |
|
137 |
{ |
|
138 |
$r['really_protected'] = (int)$r['protected']; |
|
139 |
} |
|
140 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '1') |
|
141 |
{ |
|
142 |
$r['really_protected'] = 1; |
|
143 |
} |
|
144 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '0' ) |
|
145 |
{ |
|
146 |
$r['really_protected'] = 0; |
|
147 |
} |
|
148 |
||
149 |
$this->pages[$r['urlname']] = $r; |
|
150 |
$this->pages[] =& $this->pages[$r['urlname']]; |
|
151 |
||
152 |
} |
|
153 |
$db->free_result(); |
|
154 |
dc_here('paths: determining page ID'); |
|
155 |
if( isset($_GET['title']) ) |
|
156 |
{ |
|
157 |
if ( $_GET['title'] == '' && getConfig('main_page') != '' ) |
|
158 |
{ |
|
159 |
$this->main_page(); |
|
160 |
} |
|
161 |
if(strstr($_GET['title'], ' ')) |
|
162 |
{ |
|
163 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
164 |
$loc = str_replace(' ', '_', $loc); |
|
165 |
$loc = str_replace('+', '_', $loc); |
|
166 |
$loc = str_replace('%20', '_', $loc); |
|
167 |
redirect($loc, 'Redirecting...', 'Space detected in the URL, please wait whilst you are redirected', 0); |
|
168 |
exit; |
|
169 |
} |
|
170 |
$url_namespace_special = substr($_GET['title'], 0, strlen($this->nslist['Special']) ); |
|
171 |
$url_namespace_template = substr($_GET['title'], 0, strlen($this->nslist['Template']) ); |
|
172 |
if($url_namespace_special == $this->nslist['Special'] || $url_namespace_template == $this->nslist['Template'] ) |
|
173 |
{ |
|
174 |
$ex = explode('/', $_GET['title']); |
|
175 |
$this->page = $ex[0]; |
|
176 |
} |
|
177 |
else |
|
178 |
{ |
|
179 |
$this->page = $_GET['title']; |
|
180 |
} |
|
181 |
$this->fullpage = $_GET['title']; |
|
182 |
} |
|
183 |
elseif( isset($_SERVER['PATH_INFO']) ) |
|
184 |
{ |
|
185 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
186 |
||
187 |
if( !isset($pi[1]) || (isset($pi[1]) && $pi[1] == '' && getConfig('main_page') != '') ) |
|
188 |
{ |
|
189 |
$this->main_page(); |
|
190 |
} |
|
191 |
if( strstr($pi[1], ' ') ) |
|
192 |
{ |
|
193 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
|
194 |
$loc = str_replace('+', '_', $loc); |
|
195 |
$loc = str_replace('%20', '_', $loc); |
|
196 |
redirect($loc, 'Redirecting...', 'Please wait whilst you are redirected', 3); |
|
197 |
exit; |
|
198 |
} |
|
199 |
unset($pi[0]); |
|
200 |
if( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || substr($pi[1], 0, strlen($this->nslist['Template'])) == $this->nslist['Template'] ) |
|
201 |
{ |
|
202 |
$pi2 = $pi[1]; |
|
203 |
} |
|
204 |
else |
|
205 |
{ |
|
206 |
$pi2 = implode('/', $pi); |
|
207 |
} |
|
208 |
$this->page = $pi2; |
|
209 |
$this->fullpage = implode('/', $pi); |
|
210 |
} |
|
211 |
else |
|
212 |
{ |
|
213 |
$k = array_keys($_GET); |
|
214 |
foreach($k as $c) |
|
215 |
{ |
|
216 |
if(substr($c, 0, 1) == '/') |
|
217 |
{ |
|
218 |
$this->page = substr($c, 1, strlen($c)); |
|
219 |
||
220 |
// Bugfix for apache somehow passing dots as underscores |
|
221 |
global $mime_types; |
|
222 |
||
223 |
$exts = array_keys($mime_types); |
|
224 |
$exts = '(' . implode('|', $exts) . ')'; |
|
225 |
||
226 |
if ( preg_match( '#_'.$exts.'#i', $this->page ) ) |
|
227 |
{ |
|
228 |
$this->page = preg_replace( '#_'.$exts.'#i', '.\\1', $this->page ); |
|
229 |
} |
|
230 |
||
231 |
$this->fullpage = $this->page; |
|
232 |
||
233 |
if(substr($this->page, 0, strlen($this->nslist['Special']))==$this->nslist['Special'] || substr($this->page, 0, strlen($this->nslist['Template']))==$this->nslist['Template']) |
|
234 |
{ |
|
235 |
$ex = explode('/', $this->page); |
|
236 |
$this->page = $ex[0]; |
|
237 |
} |
|
238 |
if(strstr($this->page, ' ')) |
|
239 |
{ |
|
240 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
|
241 |
$loc = str_replace('+', '_', $loc); |
|
242 |
$loc = str_replace('%20', '_', $loc); |
|
243 |
redirect($loc, 'Redirecting...', 'Space in the URL detected, please wait whilst you are redirected', 0); |
|
244 |
exit; |
|
245 |
} |
|
246 |
break; |
|
247 |
} |
|
248 |
} |
|
249 |
if(!$this->page && !($this->page == '' && getConfig('main_page') == '')) |
|
250 |
{ |
|
251 |
$this->main_page(); |
|
252 |
} |
|
253 |
} |
|
254 |
||
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
|
255 |
$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
|
256 |
$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
|
257 |
|
1 | 258 |
dc_here('paths: setting $paths->cpage'); |
259 |
||
260 |
if(isset($this->pages[$this->page])) |
|
261 |
{ |
|
262 |
dc_here('paths: page existence verified, our page ID is: '.$this->page); |
|
263 |
$this->page_exists = true; |
|
264 |
$this->cpage = $this->pages[$this->page]; |
|
265 |
$this->namespace = $this->cpage['namespace']; |
|
266 |
if(!isset($this->cpage['wiki_mode'])) $this->cpage['wiki_mode'] = 2; |
|
267 |
||
268 |
// Determine the wiki mode for this page, now that we have this->cpage established |
|
269 |
if($this->cpage['wiki_mode'] == 2) |
|
270 |
{ |
|
271 |
$this->wiki_mode = (int)getConfig('wiki_mode'); |
|
272 |
} |
|
273 |
else |
|
274 |
{ |
|
275 |
$this->wiki_mode = $this->cpage['wiki_mode']; |
|
276 |
} |
|
277 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
278 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
279 |
{ |
|
280 |
$this->wiki_mode = true; |
|
281 |
} |
|
282 |
// And above all, if the site requires wiki mode to be off for non-logged-in users, disable it now |
|
283 |
if(getConfig('wiki_mode_require_login')=='1' && !$session->user_logged_in) |
|
284 |
{ |
|
285 |
$this->wiki_mode = false; |
|
286 |
} |
|
287 |
if($this->cpage['protected'] == 2) |
|
288 |
{ |
|
289 |
// The page is semi-protected, determine permissions |
|
290 |
if($session->user_logged_in && $session->reg_time + 60*60*24*4 < time()) |
|
291 |
{ |
|
292 |
$this->page_protected = 0; |
|
293 |
} |
|
294 |
else |
|
295 |
{ |
|
296 |
$this->page_protected = 1; |
|
297 |
} |
|
298 |
} |
|
299 |
else |
|
300 |
{ |
|
301 |
$this->page_protected = $this->cpage['protected']; |
|
302 |
} |
|
303 |
} |
|
304 |
else |
|
305 |
{ |
|
306 |
dc_here('paths: page doesn\'t exist, creating new page in memory<br />our page ID is: '.$this->page); |
|
307 |
$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
|
308 |
$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
|
309 |
$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
|
310 |
|
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
|
311 |
$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
|
312 |
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
|
313 |
{ |
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
|
314 |
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
|
315 |
} |
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
|
316 |
|
1 | 317 |
$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
|
318 |
'name'=>$page_name, |
1 | 319 |
'urlname'=>$this->page, |
320 |
'namespace'=>'Article', |
|
321 |
'special'=>0, |
|
322 |
'visible'=>0, |
|
323 |
'comments_on'=>1, |
|
324 |
'protected'=>0, |
|
325 |
'delvotes'=>0, |
|
326 |
'delvote_ips'=>'', |
|
327 |
'wiki_mode'=>2, |
|
328 |
); |
|
329 |
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary |
|
330 |
$k = array_keys($this->nslist); |
|
331 |
for($i=0;$i<sizeof($this->nslist);$i++) |
|
332 |
{ |
|
333 |
$ln = strlen($this->nslist[$k[$i]]); |
|
334 |
if( substr($this->page, 0, $ln) == $this->nslist[$k[$i]] ) |
|
335 |
{ |
|
336 |
$this->cpage['namespace'] = $k[$i]; |
|
337 |
$this->cpage['urlname_nons'] = substr($this->page, strlen($this->nslist[$this->cpage['namespace']]), strlen($this->page)); |
|
338 |
if(!isset($this->cpage['wiki_mode'])) |
|
339 |
{ |
|
340 |
$this->cpage['wiki_mode'] = 2; |
|
341 |
} |
|
342 |
} |
|
343 |
} |
|
344 |
$this->namespace = $this->cpage['namespace']; |
|
345 |
||
346 |
if($this->namespace=='System') |
|
347 |
{ |
|
348 |
$this->cpage['protected'] = 1; |
|
349 |
} |
|
350 |
if($this->namespace=='Special') |
|
351 |
{ |
|
352 |
// Can't load nonexistent pages |
|
353 |
$this->main_page(); |
|
354 |
} |
|
355 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
356 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
357 |
{ |
|
358 |
$this->wiki_mode = true; |
|
359 |
} |
|
360 |
} |
|
361 |
// This is used in the admin panel to keep track of form submission targets |
|
362 |
$this->cpage['module'] = $this->cpage['urlname']; |
|
363 |
||
364 |
// Page is set up, call any hooks |
|
365 |
$code = $plugins->setHook('page_set'); |
|
366 |
foreach ( $code as $cmd ) |
|
367 |
{ |
|
368 |
eval($cmd); |
|
369 |
} |
|
370 |
||
371 |
$session->init_permissions(); |
|
372 |
} |
|
373 |
||
374 |
function add_page($flags) |
|
375 |
{ |
|
376 |
//dc_dump($flags, 'paths: page added by plugin:'); |
|
377 |
$flags['urlname_nons'] = $flags['urlname']; |
|
378 |
$flags['urlname'] = $this->nslist[$flags['namespace']] . $flags['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
379 |
$pages_len = sizeof($this->pages)/2; |
|
380 |
$this->pages[$pages_len] = $flags; |
|
381 |
$this->pages[$flags['urlname']] =& $this->pages[$pages_len]; |
|
382 |
} |
|
383 |
||
384 |
function main_page() |
|
385 |
{ |
|
386 |
if( is_string(getConfig('main_page')) ) |
|
387 |
{ |
|
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
388 |
$main_page = makeUrl(getConfig('main_page')); |
1 | 389 |
} |
390 |
else |
|
391 |
{ |
|
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
392 |
$main_page = makeUrl($this->pages[0]['urlname']); |
1 | 393 |
} |
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
394 |
redirect($main_page, 'Redirecting...', 'Invalid request, redirecting to main page', 0); |
1 | 395 |
exit; |
396 |
} |
|
397 |
||
398 |
function sysmsg($n) |
|
399 |
{ |
|
400 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
401 |
dc_here('paths: system message requested: '.$n); |
|
402 |
$q = $db->sql_query('SELECT page_text, char_tag FROM '.table_prefix.'page_text WHERE page_id=\''.$db->escape($n).'\' AND namespace=\'System\''); |
|
403 |
if( !$q ) |
|
404 |
{ |
|
405 |
$db->_die('Error during generic selection of system page data.'); |
|
406 |
} |
|
407 |
if($db->numrows() < 1) |
|
408 |
{ |
|
409 |
return false; |
|
410 |
//$db->_die('Error during generic selection of system page data: there were no rows in the text table that matched the page text query.'); |
|
411 |
} |
|
412 |
$r = $db->fetchrow(); |
|
413 |
$db->free_result(); |
|
414 |
$message = $r['page_text']; |
|
415 |
||
416 |
$message = preg_replace('/<noinclude>(.*?)<\/noinclude>/is', '', $message); |
|
417 |
||
418 |
return $message; |
|
419 |
} |
|
420 |
function get_pageid_from_url() |
|
421 |
{ |
|
422 |
if(isset($_GET['title'])) |
|
423 |
{ |
|
424 |
if( $_GET['title'] == '' && getConfig('main_page') != '' ) |
|
425 |
{ |
|
426 |
$this->main_page(); |
|
427 |
} |
|
428 |
if(strstr($_GET['title'], ' ')) |
|
429 |
{ |
|
430 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
431 |
$loc = str_replace(' ', '_', $loc); |
|
432 |
$loc = str_replace('+', '_', $loc); |
|
433 |
header('Location: '.$loc); |
|
434 |
exit; |
|
435 |
} |
|
436 |
$ret = $_GET['title']; |
|
437 |
} |
|
438 |
elseif(isset($_SERVER['PATH_INFO'])) |
|
439 |
{ |
|
440 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
441 |
||
442 |
if(!isset($pi[1]) || (isset($pi[1]) && $pi[1] == '')) |
|
443 |
{ |
|
444 |
return false; |
|
445 |
} |
|
446 |
||
447 |
if(strstr($pi[1], ' ')) |
|
448 |
{ |
|
449 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
450 |
$loc = str_replace(' ', '_', $loc); |
|
451 |
$loc = str_replace('+', '_', $loc); |
|
452 |
header('Location: '.$loc); |
|
453 |
exit; |
|
454 |
} |
|
455 |
if( !( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] ) ) |
|
456 |
{ |
|
457 |
unset($pi[0]); |
|
458 |
$pi[1] = implode('/', $pi); |
|
459 |
} |
|
460 |
$ret = $pi[1]; |
|
461 |
} |
|
462 |
else |
|
463 |
{ |
|
464 |
$k = array_keys($_GET); |
|
465 |
foreach($k as $c) |
|
466 |
{ |
|
467 |
if(substr($c, 0, 1) == '/') |
|
468 |
{ |
|
469 |
$ret = substr($c, 1, strlen($c)); |
|
470 |
if(substr($ret, 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || |
|
471 |
substr($ret, 0, strlen($this->nslist['Admin'])) == $this->nslist['Admin']) |
|
472 |
{ |
|
473 |
$ret = explode('/', $ret); |
|
474 |
$ret = $ret[0]; |
|
475 |
} |
|
476 |
break; |
|
477 |
} |
|
478 |
} |
|
479 |
} |
|
480 |
||
481 |
return ( isset($ret) ) ? $ret : false; |
|
482 |
} |
|
483 |
// Parses a (very carefully formed) array into Javascript code compatible with the Tigra Tree Menu used in the admin menu |
|
484 |
function parseAdminTree() |
|
485 |
{ |
|
486 |
$k = array_keys($this->admin_tree); |
|
487 |
$i = 0; |
|
488 |
$ret = ''; |
|
489 |
$ret .= "var TREE_ITEMS = [\n ['Administration panel home', 'javascript:ajaxPage(\'".$this->nslist['Admin']."Home\');',\n "; |
|
490 |
foreach($k as $key) |
|
491 |
{ |
|
492 |
$i++; |
|
493 |
$ret .= "['".$key."', 'javascript:trees[0].toggle($i)', \n"; |
|
494 |
foreach($this->admin_tree[$key] as $c) |
|
495 |
{ |
|
496 |
$i++; |
|
497 |
$ret .= " ['".$c['name']."', 'javascript:ajaxPage(\\'".$this->nslist['Admin'].$c['pageid']."\\');'],\n"; |
|
498 |
} |
|
499 |
$ret .= " ],\n"; |
|
500 |
} |
|
501 |
$ret .= " ['Log out of admin panel', 'javascript:ajaxPage(\\'".$this->nslist['Admin']."AdminLogout\\');'],\n"; |
|
502 |
// 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* |
|
503 |
// $ret .= " ['(debug) Clear menu bitfield', 'javascript:createCookie(\\'admin_menu_state\\', \\'1\\', 365);'],\n"; |
|
504 |
$ret .= "]\n];"; |
|
505 |
return $ret; |
|
506 |
} |
|
507 |
function addAdminNode($section, $page_title, $url) |
|
508 |
{ |
|
509 |
if(!isset($this->admin_tree[$section])) |
|
510 |
{ |
|
511 |
$this->admin_tree[$section] = Array(); |
|
512 |
} |
|
513 |
$this->admin_tree[$section][] = Array( |
|
514 |
'name'=>$page_title, |
|
515 |
'pageid'=>$url |
|
516 |
); |
|
517 |
} |
|
518 |
function getParam($id = 0) |
|
519 |
{ |
|
55
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
520 |
// using !empty here is a bugfix for IIS 5.x on Windows 2000 Server |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
521 |
// It may affect other IIS versions as well |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
522 |
if(isset($_SERVER['PATH_INFO']) && !empty($_SERVER['PATH_INFO'])) |
1 | 523 |
{ |
524 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
525 |
$id = $id + 2; |
|
526 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
527 |
} |
|
528 |
else if( isset($_GET['title']) ) |
|
529 |
{ |
|
530 |
$pi = explode('/', $_GET['title']); |
|
531 |
$id = $id + 1; |
|
532 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
533 |
} |
|
534 |
else |
|
535 |
{ |
|
536 |
$k = array_keys($_GET); |
|
537 |
foreach($k as $c) |
|
538 |
{ |
|
539 |
if(substr($c, 0, 1) == '/') |
|
540 |
{ |
|
541 |
// Bugfix for apache somehow passing dots as underscores |
|
542 |
global $mime_types; |
|
543 |
$exts = array_keys($mime_types); |
|
544 |
$exts = '(' . implode('|', $exts) . ')'; |
|
545 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
546 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
547 |
||
548 |
$pi = explode('/', $c); |
|
549 |
$id = $id + 2; |
|
550 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
551 |
} |
|
552 |
} |
|
553 |
return false; |
|
554 |
} |
|
555 |
} |
|
556 |
||
557 |
function getAllParams() |
|
558 |
{ |
|
55
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
559 |
// using !empty here is a bugfix for IIS 5.x on Windows 2000 Server |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
560 |
// It may affect other IIS versions as well |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
561 |
if(isset($_SERVER['PATH_INFO']) && !empty($_SERVER['PATH_INFO'])) |
1 | 562 |
{ |
563 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
564 |
unset($pi[0], $pi[1]); |
|
565 |
return implode('/', $pi); |
|
566 |
} |
|
567 |
else if( isset($_GET['title']) ) |
|
568 |
{ |
|
569 |
$pi = explode('/', $_GET['title']); |
|
570 |
unset($pi[0]); |
|
571 |
return implode('/', $pi); |
|
572 |
} |
|
573 |
else |
|
574 |
{ |
|
575 |
$k = array_keys($_GET); |
|
576 |
foreach($k as $c) |
|
577 |
{ |
|
578 |
if(substr($c, 0, 1) == '/') |
|
579 |
{ |
|
580 |
// Bugfix for apache somehow passing dots as underscores |
|
581 |
global $mime_types; |
|
582 |
$exts = array_keys($mime_types); |
|
583 |
$exts = '(' . implode('|', $exts) . ')'; |
|
584 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
585 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
586 |
||
587 |
$pi = explode('/', $c); |
|
588 |
unset($pi[0], $pi[1]); |
|
589 |
return implode('/', $pi); |
|
590 |
} |
|
591 |
} |
|
592 |
return false; |
|
593 |
} |
|
594 |
} |
|
595 |
||
596 |
/** |
|
597 |
* Creates a new namespace in memory |
|
598 |
* @param string $id the namespace ID |
|
599 |
* @param string $prefix the URL prefix, must not be blank or already used |
|
600 |
* @return bool true on success false on failure |
|
601 |
*/ |
|
602 |
||
603 |
function create_namespace($id, $prefix) |
|
604 |
{ |
|
605 |
if(in_array($prefix, $this->nslist)) |
|
606 |
{ |
|
607 |
// echo '<b>Warning:</b> pathManager::create_namespace: Prefix "'.$prefix.'" is already taken<br />'; |
|
608 |
return false; |
|
609 |
} |
|
610 |
if( isset($this->nslist[$id]) ) |
|
611 |
{ |
|
612 |
// echo '<b>Warning:</b> pathManager::create_namespace: Namespace ID "'.$prefix.'" is already taken<br />'; |
|
613 |
return false; |
|
614 |
} |
|
615 |
$this->nslist[$id] = $prefix; |
|
616 |
} |
|
617 |
||
618 |
/** |
|
619 |
* Fetches the page texts for searching |
|
620 |
*/ |
|
621 |
||
622 |
function fetch_page_search_texts() |
|
623 |
{ |
|
624 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
625 |
$texts = Array(); |
|
626 |
$q = $db->sql_query('SELECT t.page_id,t.namespace,t.page_text,t.char_tag FROM '.table_prefix.'page_text AS t |
|
627 |
LEFT JOIN '.table_prefix.'pages AS p |
|
628 |
ON t.page_id=p.urlname |
|
629 |
WHERE p.namespace=t.namespace |
|
630 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
631 |
AND p.visible=1;'); // Only indexes "visible" pages |
|
632 |
||
633 |
if( !$q ) |
|
634 |
{ |
|
635 |
return false; |
|
636 |
} |
|
637 |
while($row = $db->fetchrow()) |
|
638 |
{ |
|
639 |
$pid = $this->nslist[$row['namespace']] . $row['page_id']; |
|
640 |
$texts[$pid] = $row['page_text']; |
|
641 |
} |
|
642 |
$db->free_result(); |
|
643 |
||
644 |
return $texts; |
|
645 |
} |
|
646 |
||
647 |
/** |
|
648 |
* Fetches a MySQL search query to use for Searcher::searchMySQL() |
|
649 |
*/ |
|
650 |
||
651 |
function fetch_page_search_resource() |
|
652 |
{ |
|
653 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
654 |
// sha1('') returns "da39a3ee5e6b4b0d3255bfef95601890afd80709" |
|
655 |
$texts = 'SELECT t.page_text,CONCAT(\'ns=\',t.namespace,\';pid=\',t.page_id) FROM '.table_prefix.'page_text AS t |
|
656 |
LEFT JOIN '.table_prefix.'pages AS p |
|
657 |
ON ( t.page_id=p.urlname AND t.namespace=p.namespace ) |
|
658 |
WHERE p.namespace=t.namespace |
|
659 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
660 |
AND p.visible=1;'; // Only indexes "visible" pages |
|
661 |
return $texts; |
|
662 |
} |
|
663 |
||
664 |
/** |
|
665 |
* Rebuilds the search index |
|
666 |
*/ |
|
667 |
||
668 |
function rebuild_search_index() |
|
669 |
{ |
|
670 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
671 |
$search = new Searcher(); |
|
672 |
$texts = Array(); |
|
673 |
$textq = $db->sql_unbuffered_query($this->fetch_page_search_resource()); |
|
674 |
if(!$textq) $db->_die(''); |
|
675 |
while($row = $db->fetchrow_num()) |
|
676 |
{ |
|
677 |
$texts[(string)$row[1]] = $row[0]; |
|
678 |
} |
|
679 |
$search->buildIndex($texts); |
|
680 |
// echo '<pre>'.print_r($search->index, true).'</pre>'; |
|
681 |
// return; |
|
682 |
$q = $db->sql_query('DELETE FROM '.table_prefix.'search_index'); |
|
683 |
if(!$q) return false; |
|
684 |
$secs = Array(); |
|
685 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
686 |
foreach($search->index as $word => $pages) |
|
687 |
{ |
|
688 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
689 |
} |
|
690 |
$q .= implode(',', $secs); |
|
691 |
unset($secs); |
|
692 |
$q .= ';'; |
|
693 |
$result = $db->sql_query($q); |
|
694 |
$db->free_result(); |
|
695 |
if($result) |
|
696 |
return true; |
|
697 |
else |
|
698 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
699 |
} |
|
700 |
||
701 |
/** |
|
702 |
* Partially rebuilds the search index, removing/inserting entries only for the current page |
|
703 |
* @param string $page_id |
|
704 |
* @param string $namespace |
|
705 |
*/ |
|
706 |
||
707 |
function rebuild_page_index($page_id, $namespace) |
|
708 |
{ |
|
709 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
710 |
if(!$db->sql_query('SELECT page_text FROM '.table_prefix.'page_text |
|
711 |
WHERE page_id=\''.$db->escape($page_id).'\' AND namespace=\''.$db->escape($namespace).'\';')) |
|
712 |
{ |
|
713 |
return $db->get_error(); |
|
714 |
} |
|
715 |
$row = $db->fetchrow(); |
|
716 |
$db->free_result(); |
|
717 |
$search = new Searcher(); |
|
718 |
$search->buildIndex(Array("ns={$namespace};pid={$page_id}"=>$row['page_text'])); |
|
719 |
$new_index = $search->index; |
|
720 |
||
721 |
$keys = array_keys($search->index); |
|
722 |
foreach($keys as $i => $k) |
|
723 |
{ |
|
724 |
$c =& $keys[$i]; |
|
725 |
$c = hexencode($c, '', ''); |
|
726 |
} |
|
727 |
$keys = "word=0x" . implode ( " OR word=0x", $keys ) . ""; |
|
728 |
||
729 |
// Zap the cache |
|
730 |
$cache = array_keys($search->index); |
|
731 |
if ( count($cache) < 1 ) |
|
732 |
{ |
|
733 |
return false; |
|
734 |
} |
|
735 |
$cache = "query LIKE '%" . implode ( "%' OR query LIKE '%", $cache ) . "%'"; |
|
736 |
$db->sql_query('DELETE FROM '.table_prefix.'search_cache WHERE '.$cache); |
|
737 |
||
738 |
$query = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
739 |
||
740 |
while($row = $db->fetchrow()) |
|
741 |
{ |
|
742 |
$row['word'] = rtrim($row['word'], "\0"); |
|
743 |
$new_index[ $row['word'] ] = $row['page_names'] . ',' . $search->index[ $row['word'] ]; |
|
744 |
} |
|
745 |
$db->free_result(); |
|
746 |
||
747 |
$db->sql_query('DELETE FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
748 |
||
749 |
$secs = Array(); |
|
750 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
751 |
foreach($new_index as $word => $pages) |
|
752 |
{ |
|
753 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
754 |
} |
|
755 |
$q .= implode(',', $secs); |
|
756 |
unset($secs); |
|
757 |
$q .= ';'; |
|
758 |
if(!$db->check_query($q)) |
|
759 |
{ |
|
760 |
die('BUG: PathManager::rebuild_page_index: Query rejected by SQL parser:<pre>'.$q.'</pre>'); |
|
761 |
} |
|
762 |
$result = $db->sql_query($q); |
|
763 |
if($result) |
|
764 |
return true; |
|
765 |
else |
|
766 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
767 |
||
768 |
} |
|
769 |
||
770 |
/** |
|
771 |
* Creates an instance of the Searcher class, including index info |
|
772 |
* @return object |
|
773 |
*/ |
|
774 |
||
775 |
function makeSearcher($match_case = false) |
|
776 |
{ |
|
777 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
778 |
$search = new Searcher(); |
|
779 |
$q = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index;'); |
|
780 |
if(!$q) |
|
781 |
{ |
|
782 |
echo $db->get_error(); |
|
783 |
return false; |
|
784 |
} |
|
785 |
$idx = Array(); |
|
786 |
while($row = $db->fetchrow($q)) |
|
787 |
{ |
|
788 |
$row['word'] = rtrim($row['word'], "\0"); |
|
789 |
$idx[$row['word']] = $row['page_names']; |
|
790 |
} |
|
791 |
$db->free_result(); |
|
792 |
$search->index = $idx; |
|
793 |
if($match_case) |
|
794 |
$search->match_case = true; |
|
795 |
return $search; |
|
796 |
} |
|
797 |
||
798 |
/** |
|
799 |
* Creates an associative array filled with the values of all the page titles |
|
800 |
* @return array |
|
801 |
*/ |
|
802 |
||
803 |
function get_page_titles() |
|
804 |
{ |
|
805 |
$texts = Array(); |
|
806 |
for ( $i = 0; $i < sizeof($this->pages) / 2; $i++ ) |
|
807 |
{ |
|
808 |
$texts[$this->pages[$i]['urlname']] = $this->pages[$i]['name']; |
|
809 |
} |
|
810 |
return $texts; |
|
811 |
} |
|
812 |
||
813 |
/** |
|
814 |
* Creates an instance of the Searcher class, including index info for page titles |
|
815 |
* @return object |
|
816 |
*/ |
|
817 |
||
818 |
function makeTitleSearcher($match_case = false) |
|
819 |
{ |
|
820 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
821 |
$search = new Searcher(); |
|
822 |
$texts = $this->get_page_titles(); |
|
823 |
$search->buildIndex($texts); |
|
824 |
if($match_case) |
|
825 |
$search->match_case = true; |
|
826 |
return $search; |
|
827 |
} |
|
828 |
||
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
829 |
/** |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
830 |
* Returns a list of groups that a given page is a member of. |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
831 |
* @param string Page ID |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
832 |
* @param string Namespace |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
833 |
* @return array |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
834 |
*/ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
835 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
836 |
function get_page_groups($page_id, $namespace) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
837 |
{ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
838 |
global $db, $session, $paths, $template, $plugins; // Common objects |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
839 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
840 |
$page_id = $db->escape(sanitize_page_id($page_id)); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
841 |
if ( !isset($this->nslist[$namespace]) ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
842 |
die('$paths->get_page_groups(): HACKING ATTEMPT'); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
843 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
844 |
$group_list = array(); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
845 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
846 |
// What linked categories have this page? |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
847 |
$q = $db->sql_query('SELECT g.pg_id FROM '.table_prefix.'page_groups AS g |
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
848 |
LEFT JOIN '.table_prefix.'categories AS c |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
849 |
ON ( ( c.category_id = g.pg_target AND g.pg_type = ' . PAGE_GRP_CATLINK . ' ) OR c.category_id IS NULL ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
850 |
LEFT JOIN '.table_prefix.'page_group_members AS m |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
851 |
ON ( ( g.pg_id = m.pg_id AND g.pg_type = ' . PAGE_GRP_NORMAL . ' ) OR ( m.pg_id IS NULL ) ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
852 |
LEFT JOIN '.table_prefix.'tags AS t |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
853 |
ON ( ( t.tag_name = g.pg_target AND pg_type = ' . PAGE_GRP_TAGGED . ' ) OR t.tag_name IS NULL ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
854 |
WHERE |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
855 |
( c.page_id=\'' . $page_id . '\' AND c.namespace=\'' . $namespace . '\' ) OR |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
856 |
( t.page_id=\'' . $page_id . '\' AND t.namespace=\'' . $namespace . '\' ) OR |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
857 |
( m.page_id=\'' . $page_id . '\' AND m.namespace=\'' . $namespace . '\' );'); |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
858 |
if ( !$q ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
859 |
$db->_die(); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
860 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
861 |
while ( $row = $db->fetchrow() ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
862 |
{ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
863 |
$group_list[] = $row['pg_id']; |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
864 |
} |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
865 |
|
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
parents:
73
diff
changeset
|
866 |
$db->free_result(); |
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
parents:
73
diff
changeset
|
867 |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
868 |
/* |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
869 |
// Static-page groups |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
870 |
$q = $db->sql_query('SELECT g.pg_id FROM '.table_prefix.'page_groups AS g |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
871 |
LEFT JOIN '.table_prefix.'page_group_members AS m |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
872 |
ON ( g.pg_id = m.pg_id ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
873 |
WHERE m.page_id=\'' . $page_id . '\' AND m.namespace=\'' . $namespace . '\' |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
874 |
GROUP BY g.pg_id;'); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
875 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
876 |
if ( !$q ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
877 |
$db->_die(); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
878 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
879 |
while ( $row = $db->fetchrow() ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
880 |
{ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
881 |
$group_list[] = $row['pg_id']; |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
882 |
} |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
883 |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
884 |
// Tag groups |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
885 |
|
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
886 |
$q = $db->sql_query('SELECT g.pg_id FROM '.table_prefix.'page_groups AS g |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
887 |
LEFT JOIN '.table_prefix.'tags AS t |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
888 |
ON ( t.tag_name = g.pg_target AND pg_type = ' . PAGE_GRP_TAGGED . ' ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
889 |
WHERE t.page_id = \'' . $page_id . '\' AND t.namespace = \'' . $namespace . '\';'); |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
890 |
if ( !$q ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
891 |
$db->_die(); |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
892 |
|
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
893 |
while ( $row = $db->fetchrow() ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
894 |
{ |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
895 |
$group_list[] = $row['pg_id']; |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
896 |
} |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
897 |
*/ |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
898 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
899 |
return $group_list; |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
900 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
901 |
} |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
902 |
|
1 | 903 |
} |
904 |
||
905 |
?> |