Cheetah
index.php
Go to the documentation of this file.
1 <?php
2 
8 if (function_exists('mb_internal_encoding')) {
9  mb_internal_encoding('UTF-8');
10 }
11 
12 if (version_compare(phpversion(), "5.3.0", ">=") == 1) {
13  error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
14 } else {
15  error_reporting(E_ALL & ~E_NOTICE);
16 }
17 
18 if (isset($_GET['refresh']) && $_GET['refresh']) {
19  header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
20  header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
21  header("Cache-Control: no-store, no-cache, must-revalidate");
22  header("Cache-Control: post-check=0, pre-check=0", false);
23  header("Pragma: no-cache");
24 }
25 
26 if (!file_exists('./inc/header.inc.php')) {
27  header("Location: install/");
28  exit;
29 }
30 
31 if ($_GET['orca_integration'] && preg_match('/^[0-9a-z]+$/', $_GET['orca_integration'])) {
32  define('CH_ORCA_INTEGRATION', $_GET['orca_integration']);
33 } else {
34  define('CH_ORCA_INTEGRATION', 'cheetah');
35 }
36 
37 require_once('./inc/header.inc.php');
38 
39 $ret = @include_once($gConf['dir']['inc'] . 'util.inc.php');
40 if (!$ret) {
41  echo 'File inclusion failed. <br />Did you properly edit <b>inc/header.inc.php</b> file ?';
42  exit;
43 }
44 
45 require_once(CH_DIRECTORY_PATH_CLASSES . 'Thing.php');
46 require_once($gConf['dir']['classes'] . 'ThingPage.php');
47 require_once($gConf['dir']['classes'] . 'Mistake.php');
48 require_once($gConf['dir']['classes'] . 'ChXslTransform.php');
49 require_once($gConf['dir']['classes'] . 'ChDb.php');
50 require_once($gConf['dir']['classes'] . 'DbForum.php');
51 require_once($gConf['dir']['classes'] . 'Forum.php');
52 
53 require_once($gConf['dir']['classes'] . 'DbLogin.php');
54 require_once($gConf['dir']['classes'] . 'Login.php');
55 
56 require_once($gConf['dir']['classes'] . 'ChMail.php');
57 
58 require_once($gConf['dir']['classes'] . 'DbAdmin.php');
59 require_once($gConf['dir']['classes'] . 'Admin.php');
60 
61 //checkMagicQuotes ();
62 
63 require_once($gConf['dir']['base'] . 'integrations/' . CH_ORCA_INTEGRATION . '/class.php'); // override Forum class if needed
64 require_once($gConf['dir']['base'] . 'integrations/' . CH_ORCA_INTEGRATION . '/design.php'); // include custom header/footer
65 
66 $action = isset($_GET['action']) ? $_GET['action'] : (isset($_POST['action']) ? $_POST['action'] : '');
67 $_GET['debug'] = isset($_GET['debug']) && $_GET['debug'] ? 1 : 0;
68 $_GET['trans'] = isset ($_GET['trans']) && $_GET['trans'] ? 1 : 0;
69 
70 require_once($gConf['dir']['base'] . 'integrations/' . CH_ORCA_INTEGRATION . '/callback.php'); // define custom callback functions
71 
72 $f->updateCurrentUserActivity();
73 
75 switch ($action) {
76  // admin functions
77 
78  case 'compile_langs':
79  $orca_admin = new Admin ();
80  echo_utf8($orca_admin->compileLangs());
81  break;
82 
83  case 'edit_categories':
84  transCheck($f->getPageXML(0, $_GET), $gConf['dir']['xsl'] . 'edit_categories.xsl', $_GET['trans']);
85  break;
86 
87  case 'edit_category_del':
88  $orca_admin = new Admin ();
89  transCheck($orca_admin->deleteCategory((int)$_GET['cat_id']), '', 0);
90  break;
91 
92  case 'edit_forum_del':
93  $orca_admin = new Admin ();
94  transCheck($orca_admin->deleteForum((int)$_GET['forum_id']), '', 0);
95  break;
96 
97  case 'edit_category':
98  $orca_admin = new Admin ();
99  transCheck($orca_admin->editCategory((int)$_GET['cat_id']), $gConf['dir']['xsl'] . 'edit_cat_form.xsl',
100  $_GET['trans']);
101  break;
102 
103  case 'edit_category_submit':
104  $orca_admin = new Admin ();
105  transCheck($orca_admin->editCategorySubmit((int)$_GET['cat_id'], $_GET['cat_name'], (int)$_GET['cat_order'],
106  (int)$_GET['cat_expanded']), '', 0);
107  break;
108 
109  case 'edit_forum':
110  $orca_admin = new Admin ();
111  transCheck($orca_admin->editForum((int)$_GET['forum_id'], $_GET['cat_id']),
112  $gConf['dir']['xsl'] . 'edit_forum_form.xsl', $_GET['trans']);
113  break;
114 
115  case 'edit_forum_submit':
116  $orca_admin = new Admin ();
117  transCheck($orca_admin->editFormSubmit((int)$_GET['cat_id'], (int)$_GET['forum_id'], $_GET['title'],
118  $_GET['desc'], $_GET['type'], (int)$_GET['order']), '', 0);
119  break;
120 
121  case 'reported_posts':
122  $orca_admin = new Admin ();
123  transCheck($orca_admin->getReportedPostsXML(false), $gConf['dir']['xsl'] . 'forum_posts.xsl', $_GET['trans']);
124  break;
125 
126  case 'hidden_posts':
127  $orca_admin = new Admin ();
128  transCheck($orca_admin->getHiddenPostsXML(false), $gConf['dir']['xsl'] . 'forum_posts.xsl', $_GET['trans']);
129  break;
130 
131  case 'list_forums_admin':
132  transCheck($f->getForumsXML($_GET['cat'], 1), $gConf['dir']['xsl'] . 'edit_cat_forums.xsl', $_GET['trans']);
133  break;
134 
135  case 'clear_report':
136  $orca_admin = new Admin ();
137  transCheck($orca_admin->clearReport((int)$_GET['post_id']), '', 0);
138  break;
139 
140  // login functions are replaced by cheetah login/join functions
141  /*
142  case 'join_form':
143  $orca_login = new Login ();
144  transcheck ($orca_login->getJoinForm(), $gConf['dir']['xsl'] . 'join_form.xsl', $_GET['trans']);
145  break;
146 
147  case 'login_form':
148  $orca_login = new Login ();
149  transcheck ($orca_login->getLoginForm(), $gConf['dir']['xsl'] . 'login_form.xsl', $_GET['trans']);
150  break;
151 
152  case 'join_submit':
153  $orca_login = new Login ();
154  transCheck ($orca_login->joinSubmit (array('username' => $_GET['username'], 'email' => $_GET['email'])), '', 0);
155  break;
156 
157  case 'login_submit':
158  $orca_login = new Login ();
159  transCheck ($orca_login->loginSubmit (array('username' => $_GET['username'], 'pwd' => $_GET['pwd'])), '', 0);
160  break;
161 
162  case 'logout':
163  transcheck ($f->logout(), '', 0);
164  break;
165  */
166 
167  // user functions
168 
169  case 'rss_forum':
170  transCheck($f->getRssForum($_GET['forum']), '', 0);
171  break;
172 
173  case 'rss_topic':
174  transCheck($f->getRssTopic($_GET['topic']), '', 0);
175  break;
176 
177  case 'rss_user':
178  transCheck($f->getRssUser($_GET['user'], $_GET['sort']), '', 0);
179  break;
180 
181  case 'rss_all':
182  transCheck($f->getRssAll($_GET['sort']), '', 0);
183  break;
184 
185  case 'rss_updated_topics':
186  transCheck($f->getRssUpdatedTopics(), '', 0);
187  break;
188 
189  case 'report_post':
190  transCheck($f->report((int)$_GET['post_id']), '', 0);
191  break;
192 
193  case 'flag_topic':
194  transCheck($f->flag((int)$_GET['topic_id']), '', 0);
195  break;
196 
197  case 'vote_post_good':
198  transCheck($f->votePost((int)$_GET['post_id'], 1), '', 0);
199  break;
200 
201  case 'vote_post_bad':
202  transCheck($f->votePost((int)$_GET['post_id'], -1), '', 0);
203  break;
204 
205  case 'get_new_post':
206  transCheck($f->getLivePostsXML(1, (int)$_GET['ts']), $gConf['dir']['xsl'] . 'live_tracker_main.xsl',
207  $_GET['trans']);
208  break;
209 
210  case 'is_new_post':
211  transCheck($f->isNewPost((int)$_GET['ts']), '', 0);
212  break;
213 
214  case 'profile':
215  transCheck($f->showProfile($_GET['user'], false), $gConf['dir']['xsl'] . 'profile.xsl', $_GET['trans']);
216  break;
217 
218  case 'show_hidden_topics':
219  transCheck($f->getHiddenTopicsXML(false, (int)$_GET['start']), $gConf['dir']['xsl'] . 'hidden_topics.xsl',
220  $_GET['trans']);
221  break;
222 
223  case 'show_my_threads':
224  transCheck($f->getMyThreadsXML(false, (int)$_GET['start']), $gConf['dir']['xsl'] . 'my_topics.xsl',
225  $_GET['trans']);
226  break;
227 
228  case 'show_my_flags':
229  transCheck($f->getMyFlagsXML(false, (int)$_GET['start']), $gConf['dir']['xsl'] . 'flagged_topics.xsl',
230  $_GET['trans']);
231  break;
232 
233  case 'list_topics':
234  transCheck($f->getTopicsXML($_GET['forum'], false, (int)$_GET['start']),
235  $gConf['dir']['xsl'] . 'forum_topics.xsl', $_GET['trans']);
236  break;
237 
238  case 'list_posts':
239  transCheck($f->getPostsXML($_GET['topic'], false), $gConf['dir']['xsl'] . 'forum_posts.xsl', $_GET['trans']);
240  break;
241 
242  case 'show_hidden_post':
243  transCheck($f->getHiddenPostXML((int)$_GET['post_id'], 1), $gConf['dir']['xsl'] . 'forum_posts.xsl',
244  $_GET['trans']);
245  break;
246 
247  case 'hide_hidden_post':
248  transCheck($f->getHiddenPostXML((int)$_GET['post_id'], 0), $gConf['dir']['xsl'] . 'forum_posts.xsl',
249  $_GET['trans']);
250  break;
251 
252  case 'hide_post':
253  transCheck($f->hidePost((int)$_GET['is_hide'], (int)$_GET['post_id']), '', 0);
254  break;
255 
256  case 'delete_post':
257  echo_utf8($f->deletePostXML((int)$_GET['post_id'], (int)$_GET['topic_id'], (int)$_GET['forum_id']));
258  break;
259 
260  case 'edit_post':
261  echo_utf8($f->editPost((int)$_POST['post_id'], $_POST['topic_id'], $_POST['post_text']));
262  break;
263 
264  case 'edit_post_xml':
265  transcheck($f->editPostXml((int)$_GET['post_id'], $_GET['topic_id']), $gConf['dir']['xsl'] . 'edit_post.xsl',
266  $_GET['trans']);
267  break;
268 
269  case 'del_topic':
270  transCheck($f->delTopic((int)$_GET['topic_id']), '', 0);
271  break;
272 
273  case 'move_topic_form':
274  transCheck($f->moveTopicForm((int)$_GET['topic_id']), $gConf['dir']['xsl'] . 'move_topic_form.xsl',
275  $_GET['trans']);
276  break;
277 
278  case 'move_topic_submit':
279  transCheck($f->moveTopicSubmit((int)$_GET['topic_id'], (int)$_GET['forum_id'], (int)$_GET['old_forum_id'],
280  (int)$_GET['goto_new_location']), '', 0);
281  break;
282 
283  case 'new_topic':
284  transCheck($f->getNewTopicXML($_GET['forum']), $gConf['dir']['xsl'] . 'new_topic.xsl', $_GET['trans']);
285  break;
286 
287  case 'hide_topic':
288  transCheck($f->hideTopic((int)$_GET['is_hide'], (int)$_GET['topic_id']), '', 0);
289  break;
290 
291  case 'stick':
292  transCheck($f->stick((int)$_GET['topic_id']), '', 0);
293  break;
294 
295  case 'lock_topic':
296  transCheck($f->lock((int)$_GET['topic_id']), '', 0);
297  break;
298 
299  case 'reply':
300  transCheck($f->getPostReplyXML((int)$_GET['forum'], (int)$_GET['topic']),
301  $gConf['dir']['xsl'] . 'post_reply.xsl', $_GET['trans']);
302  break;
303 
304  case 'show_search':
305  transCheck($f->getSearchXML(), $gConf['dir']['xsl'] . 'search_form.xsl', $_GET['trans']);
306  break;
307 
308  case 'search':
309  transCheck($f->getSearchResultsXML($_GET['text'], $_GET['type'], (int)$_GET['forum'], $_GET['u'], $_GET['disp'],
310  $_GET['start']), $gConf['dir']['xsl'] . 'search.xsl', $_GET['trans']);
311  break;
312 
313  case 'post_reply':
314  echo_utf8($f->postReplyXML($_POST));
315  break;
316 
317  case 'post_new_topic':
318  echo_utf8($f->postNewTopicXML($_POST));
319  break;
320 
321  case 'post_success':
322  transCheck("<forum><uri>{$_GET['forum']}</uri></forum>", $gConf['dir']['xsl'] . 'default_post_success.xsl',
323  $_GET['trans']);
324  break;
325 
326  case 'access_denied':
327  transCheck('<forum_access>no</forum_access>', $gConf['dir']['xsl'] . 'default_access_denied.xsl',
328  $_GET['trans']);
329  break;
330 
331  case 'forum_index':
332  transCheck($f->getPageXML(0, $_GET), $gConf['dir']['xsl'] . 'home.xsl', $_GET['trans']);
333  break;
334 
335  case 'list_forums':
336  transCheck($f->getForumsXML($_GET['cat'], 1), $gConf['dir']['xsl'] . 'cat_forums.xsl', $_GET['trans']);
337  break;
338 
339  case 'live_tracker':
340  transCheck($f->liveTracker(), $gConf['dir']['xsl'] . 'live_tracker_main.xsl', $_GET['debug'] ? 0 : 1);
341  break;
342 
343  case 'download':
344  $f->download($_GET['hash']);
345  break;
346 
347  case 'recent_topics':
348  transCheck($f->getRecentTopicsXML(false, (int)$_GET['start']), $gConf['dir']['xsl'] . 'recent_topics.xsl',
349  $_GET['trans']);
350  break;
351 
352  default:
353  $isMarker = true;
354  if (!isset($_GET['start'])) {
355  $o = new ChWsbOrcaForumsHome();
356  $s = $o->getCode();
357  $isMarker = false !== strpos($s, $o->sMarker);
358  list($GLOBALS['glBeforeContent'], $GLOBALS['glAfterContent']) = explode($o->sMarker, $s);
359  }
360  if ($isMarker) {
361  $sXml = $f->getRecentTopicsXML(true, (int)$_GET['start']);
362  } else {
363  $li = $f->_getLoginInfo ();
364  $sXml = $f->addHeaderFooter ($li, "");
365  }
366  transCheck($sXml, $gConf['dir']['xsl'] . 'recent_topics_main.xsl', $_GET['debug'] ? 0 : 1);
367  break;
368 
369  case 'goto':
370  switch (true) {
371  // user functions
372  case (isset($_GET['cat_id'])):
373  $_GET['cat'] = $_GET['cat_id'];
374  $xsl = 'home_main.xsl';
375  transCheck($f->getPageXML(1, $_GET), $gConf['dir']['xsl'] . $xsl, $_GET['debug'] ? 0 : 1);
376  break;
377  case (isset($_GET['new_topic'])):
378  transCheck($f->getNewTopicXML($_GET['new_topic'], true), $gConf['dir']['xsl'] . 'new_topic_main.xsl',
379  $_GET['debug'] ? 0 : 1);
380  break;
381  case (isset($_GET['forum_id'])):
382  transCheck($f->getTopicsXML($_GET['forum_id'], true, (int)$_GET['start']),
383  $gConf['dir']['xsl'] . 'forum_topics_main.xsl', $_GET['debug'] ? 0 : 1);
384  break;
385  case (isset($_GET['topic_id'])):
386  transCheck($f->getPostsXML($_GET['topic_id'], true), $gConf['dir']['xsl'] . 'forum_posts_main.xsl',
387  $_GET['debug'] ? 0 : 1);
388  break;
389  case (isset($_GET['user'])):
390  transCheck($f->showProfile($_GET['user'], true), $gConf['dir']['xsl'] . 'profile_main.xsl',
391  $_GET['debug'] ? 0 : 1);
392  break;
393  case (isset($_GET['search'])):
394  transCheck($f->getSearchXML(true), $gConf['dir']['xsl'] . 'search_form_main.xsl',
395  $_GET['debug'] ? 0 : 1);
396  break;
397  case (isset($_GET['search_result'])):
398  transCheck($f->getSearchResultsXML($_GET['text'], $_GET['type'], (int)$_GET['forum'], $_GET['u'],
399  $_GET['disp'], $_GET['start'], true), $gConf['dir']['xsl'] . 'search_main.xsl',
400  $_GET['debug'] ? 0 : 1);
401  break;
402  case (isset($_GET['recent_topics'])):
403  transCheck($f->getRecentTopicsXML(true, (int)$_GET['start']),
404  $gConf['dir']['xsl'] . 'recent_topics_main.xsl', $_GET['debug'] ? 0 : 1);
405  break;
406  case (isset($_GET['my_flags'])):
407  transCheck($f->getMyFlagsXML(true, (int)$_GET['start']),
408  $gConf['dir']['xsl'] . 'flagged_topics_main.xsl', $_GET['debug'] ? 0 : 1);
409  break;
410  case (isset($_GET['my_threads'])):
411  transCheck($f->getMyThreadsXML(true, (int)$_GET['start']), $gConf['dir']['xsl'] . 'my_topics_main.xsl',
412  $_GET['debug'] ? 0 : 1);
413  break;
414  case (isset($_GET['hidden_topics'])):
415  transCheck($f->getHiddenTopicsXML(true, (int)$_GET['start']),
416  $gConf['dir']['xsl'] . 'hidden_topics_main.xsl', $_GET['debug'] ? 0 : 1);
417  break;
418  case (isset($_GET['hidden_posts'])):
419  $orca_admin = new Admin ();
420  transCheck($orca_admin->getHiddenPostsXML(true), $gConf['dir']['xsl'] . 'forum_posts_main.xsl',
421  $_GET['debug'] ? 0 : 1);
422  break;
423  case (isset($_GET['manage_forum'])):
424  transCheck($f->getPageXML(1, $_GET), $gConf['dir']['xsl'] . 'edit_categories_main.xsl',
425  $_GET['debug'] ? 0 : 1);
426  break;
427  case (isset($_GET['reported_posts'])):
428  $orca_admin = new Admin ();
429  transCheck($orca_admin->getReportedPostsXML(true), $gConf['dir']['xsl'] . 'forum_posts_main.xsl',
430  $_GET['debug'] ? 0 : 1);
431  break;
432  case (isset($_GET['index'])):
433  $o = new ChWsbOrcaForumsIndex();
434  $s = $o->getCode();
435  list($GLOBALS['glBeforeContent'], $GLOBALS['glAfterContent']) = explode($o->sMarker, $s);
436  transCheck($f->getPageXML(1, $_GET), $gConf['dir']['xsl'] . 'home_main.xsl', $_GET['debug'] ? 0 : 1);
437  break;
438  }
439  break;
440 
441 }
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
$f
global $f
Definition: callback.php:13
$ret
$ret
Definition: index.php:39
transCheck
transCheck($xml, $xsl, $trans, $browser_transform=0)
Definition: util.inc.php:16
CH_ORCA_INTEGRATION
const CH_ORCA_INTEGRATION
Definition: ChForumSiteMaps.php:10
php
Admin
Definition: Admin.php:11
ChWsbOrcaForumsIndex
Definition: design.php:30
$_GET
$_GET['debug']
Definition: index.php:67
$GLOBALS
$GLOBALS['aRequest']
Definition: index.php:10
exit
if(secureCheckWidgetName($sModule) &&file_exists($sRayHeaderPath) &&!empty($sModule) &&!empty($sApp) &&secureCheckWidgetName($sApp)) else exit
Definition: index.php:20
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
$s
$s
Definition: index.php:29
echo_utf8
echo_utf8($s)
Definition: util.inc.php:252
$action
$action
Definition: index.php:66
$orca_admin
global $orca_admin
Definition: index.php:74
$gConf
global $gConf
Definition: header.inc.php:8
$o
$o
Definition: cmd.php:193
ChWsbOrcaForumsHome
Definition: design.php:45