index.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. <?php
  2. /**
  3. * This, as you have probably guessed, is the crux on which SMF functions.
  4. * Everything should start here, so all the setup and security is done
  5. * properly. The most interesting part of this file is the action array in
  6. * the smf_main() function. It is formatted as so:
  7. * 'action-in-url' => array('Source-File.php', 'FunctionToCall'),
  8. *
  9. * Then, you can access the FunctionToCall() function from Source-File.php
  10. * with the URL index.php?action=action-in-url. Relatively simple, no?
  11. *
  12. * Simple Machines Forum (SMF)
  13. *
  14. * @package SMF
  15. * @author Simple Machines http://www.simplemachines.org
  16. * @copyright 2012 Simple Machines
  17. * @license http://www.simplemachines.org/about/smf/license.php BSD
  18. *
  19. * @version 2.1 Alpha 1
  20. */
  21. $forum_version = 'SMF 2.1 Alpha 1';
  22. // Get everything started up...
  23. define('SMF', 1);
  24. if (function_exists('set_magic_quotes_runtime'))
  25. @set_magic_quotes_runtime(0);
  26. error_reporting(defined('E_STRICT') ? E_ALL | E_STRICT : E_ALL);
  27. $time_start = microtime();
  28. // This makes it so headers can be sent!
  29. ob_start();
  30. // Do some cleaning, just in case.
  31. foreach (array('db_character_set', 'cachedir') as $variable)
  32. if (isset($GLOBALS[$variable]))
  33. unset($GLOBALS[$variable], $GLOBALS[$variable]);
  34. // Load the settings...
  35. require_once(dirname(__FILE__) . '/Settings.php');
  36. // Make absolutely sure the cache directory is defined.
  37. if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache'))
  38. $cachedir = $boarddir . '/cache';
  39. // Without those we can't go anywhere
  40. require_once($sourcedir . '/QueryString.php');
  41. require_once($sourcedir . '/Subs.php');
  42. require_once($sourcedir . '/Load.php');
  43. // If $maintenance is set specifically to 2, then we're upgrading or something.
  44. if (!empty($maintenance) && $maintenance == 2)
  45. display_maintenance_message();
  46. // Create a variable to store some SMF specific functions in.
  47. $smcFunc = array();
  48. // Initiate the database connection and define some database functions to use.
  49. loadDatabase();
  50. // Load the settings from the settings table, and perform operations like optimizing.
  51. reloadSettings();
  52. // Clean the request variables, add slashes, etc.
  53. cleanRequest();
  54. $context = array();
  55. // Seed the random generator.
  56. if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69)
  57. smf_seed_generator();
  58. // Before we get carried away, are we doing a scheduled task? If so save CPU cycles by jumping out!
  59. if (isset($_GET['scheduled']))
  60. {
  61. require_once($sourcedir . '/ScheduledTasks.php');
  62. AutoTask();
  63. }
  64. // Displaying attached avatars
  65. elseif (isset($_GET['action']) && $_GET['action'] == 'dlattach' && isset($_GET['type']) && $_GET['type'] == 'avatar')
  66. {
  67. require_once($sourcedir. '/Avatar.php');
  68. showAvatar();
  69. }
  70. // And important includes.
  71. require_once($sourcedir . '/Session.php');
  72. require_once($sourcedir . '/Errors.php');
  73. require_once($sourcedir . '/Logging.php');
  74. require_once($sourcedir . '/Security.php');
  75. require_once($sourcedir . '/Class-BrowserDetect.php');
  76. // Using an pre-PHP 5.1 version?
  77. if (version_compare(PHP_VERSION, '5.1', '<'))
  78. require_once($sourcedir . '/Subs-Compat.php');
  79. // Check if compressed output is enabled, supported, and not already being done.
  80. if (!empty($modSettings['enableCompressedOutput']) && !headers_sent())
  81. {
  82. // If zlib is being used, turn off output compression.
  83. if (ini_get('zlib.output_compression') >= 1 || ini_get('output_handler') == 'ob_gzhandler')
  84. $modSettings['enableCompressedOutput'] = '0';
  85. else
  86. {
  87. ob_end_clean();
  88. ob_start('ob_gzhandler');
  89. }
  90. }
  91. // Register an error handler.
  92. set_error_handler('error_handler');
  93. // Start the session. (assuming it hasn't already been.)
  94. loadSession();
  95. // Determine if this is using WAP, WAP2, or imode. Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
  96. if (isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']))
  97. unset($_SESSION['nowap']);
  98. elseif (isset($_REQUEST['nowap']))
  99. $_SESSION['nowap'] = true;
  100. elseif (!isset($_SESSION['nowap']))
  101. {
  102. if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
  103. $_REQUEST['wap2'] = 1;
  104. elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
  105. {
  106. if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
  107. $_REQUEST['imode'] = 1;
  108. else
  109. $_REQUEST['wap'] = 1;
  110. }
  111. }
  112. if (!defined('WIRELESS'))
  113. define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));
  114. // Some settings and headers are different for wireless protocols.
  115. if (WIRELESS)
  116. {
  117. define('WIRELESS_PROTOCOL', isset($_REQUEST['wap']) ? 'wap' : (isset($_REQUEST['wap2']) ? 'wap2' : (isset($_REQUEST['imode']) ? 'imode' : '')));
  118. // Some cellphones can't handle output compression...
  119. // @todo shouldn't the phone handle that?
  120. $modSettings['enableCompressedOutput'] = '0';
  121. // @todo Do we want these hard coded?
  122. $modSettings['defaultMaxMessages'] = 5;
  123. $modSettings['defaultMaxTopics'] = 9;
  124. // Wireless protocol header.
  125. if (WIRELESS_PROTOCOL == 'wap')
  126. header('Content-Type: text/vnd.wap.wml');
  127. }
  128. // Restore post data if we are revalidating OpenID.
  129. if (isset($_GET['openid_restore_post']) && !empty($_SESSION['openid']['saved_data'][$_GET['openid_restore_post']]['post']) && empty($_POST))
  130. {
  131. $_POST = $_SESSION['openid']['saved_data'][$_GET['openid_restore_post']]['post'];
  132. unset($_SESSION['openid']['saved_data'][$_GET['openid_restore_post']]);
  133. }
  134. // What function shall we execute? (done like this for memory's sake.)
  135. call_user_func(smf_main());
  136. // Call obExit specially; we're coming from the main area ;).
  137. obExit(null, null, true);
  138. /**
  139. * The main dispatcher.
  140. * This delegates to each area.
  141. */
  142. function smf_main()
  143. {
  144. global $modSettings, $settings, $user_info, $board, $topic, $board_info, $maintenance, $sourcedir;
  145. // Special case: session keep-alive, output a transparent pixel.
  146. if (isset($_GET['action']) && $_GET['action'] == 'keepalive')
  147. {
  148. header('Content-Type: image/gif');
  149. die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
  150. }
  151. // Load the user's cookie (or set as guest) and load their settings.
  152. loadUserSettings();
  153. // Load the current board's information.
  154. loadBoard();
  155. // Load the current user's permissions.
  156. loadPermissions();
  157. // Attachments don't require the entire theme to be loaded.
  158. if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach' && (!empty($modSettings['allow_guestAccess']) && $user_info['is_guest']))
  159. detectBrowser();
  160. // Load the current theme. (note that ?theme=1 will also work, may be used for guest theming.)
  161. else
  162. loadTheme();
  163. // Check if the user should be disallowed access.
  164. is_not_banned();
  165. // If we are in a topic and don't have permission to approve it then duck out now.
  166. if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest']))
  167. fatal_lang_error('not_a_topic', false);
  168. $no_stat_actions = array('dlattach', 'findmember', 'jsoption', 'requestmembers', 'smstats', '.xml', 'xmlhttp', 'verificationcode', 'viewquery', 'viewsmfile');
  169. call_integration_hook('integrate_pre_log_stats', array(&$no_stat_actions));
  170. // Do some logging, unless this is an attachment, avatar, toggle of editor buttons, theme option, XML feed etc.
  171. if (empty($_REQUEST['action']) || !in_array($_REQUEST['action'], $no_stat_actions))
  172. {
  173. // Log this user as online.
  174. writeLog();
  175. // Track forum statistics and hits...?
  176. if (!empty($modSettings['hitStats']))
  177. trackStats(array('hits' => '+'));
  178. }
  179. unset($no_stat_actions);
  180. // Is the forum in maintenance mode? (doesn't apply to administrators.)
  181. if (!empty($maintenance) && !allowedTo('admin_forum'))
  182. {
  183. // You can only login.... otherwise, you're getting the "maintenance mode" display.
  184. if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'login2' || $_REQUEST['action'] == 'logout'))
  185. {
  186. require_once($sourcedir . '/LogInOut.php');
  187. return $_REQUEST['action'] == 'login2' ? 'Login2' : 'Logout';
  188. }
  189. // Don't even try it, sonny.
  190. else
  191. {
  192. require_once($sourcedir . '/Subs-Auth.php');
  193. return 'InMaintenance';
  194. }
  195. }
  196. // If guest access is off, a guest can only do one of the very few following actions.
  197. elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'register', 'register2', 'reminder', 'activate', 'help', 'smstats', 'mailq', 'verificationcode', 'openidreturn'))))
  198. {
  199. require_once($sourcedir . '/Subs-Auth.php');
  200. return 'KickGuest';
  201. }
  202. elseif (empty($_REQUEST['action']))
  203. {
  204. // Action and board are both empty... BoardIndex! Unless someone else wants to do something different.
  205. if (empty($board) && empty($topic))
  206. {
  207. $defaultActions = call_integration_hook('integrate_default_action');
  208. foreach ($defaultActions as $defaultAction)
  209. {
  210. $call = strpos($defaultAction, '::') !== false ? explode('::', $defaultAction) : $defaultAction;
  211. if (!empty($call) && is_callable($call))
  212. return $call;
  213. }
  214. require_once($sourcedir . '/BoardIndex.php');
  215. return 'BoardIndex';
  216. }
  217. // Topic is empty, and action is empty.... MessageIndex!
  218. elseif (empty($topic))
  219. {
  220. require_once($sourcedir . '/MessageIndex.php');
  221. return 'MessageIndex';
  222. }
  223. // Board is not empty... topic is not empty... action is empty.. Display!
  224. else
  225. {
  226. require_once($sourcedir . '/Display.php');
  227. return 'Display';
  228. }
  229. }
  230. // Here's the monstrous $_REQUEST['action'] array - $_REQUEST['action'] => array($file, $function).
  231. $actionArray = array(
  232. 'activate' => array('Register.php', 'Activate'),
  233. 'admin' => array('Admin.php', 'AdminMain'),
  234. 'announce' => array('Post.php', 'AnnounceTopic'),
  235. 'attachapprove' => array('ManageAttachments.php', 'ApproveAttach'),
  236. 'buddy' => array('Subs-Members.php', 'BuddyListToggle'),
  237. 'calendar' => array('Calendar.php', 'CalendarMain'),
  238. 'clock' => array('Calendar.php', 'clock'),
  239. 'collapse' => array('BoardIndex.php', 'CollapseCategory'),
  240. 'coppa' => array('Register.php', 'CoppaForm'),
  241. 'credits' => array('Who.php', 'Credits'),
  242. 'deletemsg' => array('RemoveTopic.php', 'DeleteMessage'),
  243. 'disregardtopic' => array('Notify.php', 'TopicDisregard'),
  244. 'dlattach' => array('Display.php', 'Download'),
  245. 'editpoll' => array('Poll.php', 'EditPoll'),
  246. 'editpoll2' => array('Poll.php', 'EditPoll2'),
  247. 'emailuser' => array('SendTopic.php', 'EmailUser'),
  248. 'findmember' => array('Subs-Auth.php', 'JSMembers'),
  249. 'groups' => array('Groups.php', 'Groups'),
  250. 'help' => array('Help.php', 'ShowHelp'),
  251. 'helpadmin' => array('Help.php', 'ShowAdminHelp'),
  252. 'jsmodify' => array('Post.php', 'JavaScriptModify'),
  253. 'jsoption' => array('Themes.php', 'SetJavaScript'),
  254. 'loadeditorlocale' => array('Subs-Editor.php', 'loadLocale'),
  255. 'lock' => array('Topic.php', 'LockTopic'),
  256. 'lockvoting' => array('Poll.php', 'LockVoting'),
  257. 'login' => array('LogInOut.php', 'Login'),
  258. 'login2' => array('LogInOut.php', 'Login2'),
  259. 'logout' => array('LogInOut.php', 'Logout'),
  260. 'markasread' => array('Subs-Boards.php', 'MarkRead'),
  261. 'mergetopics' => array('SplitTopics.php', 'MergeTopics'),
  262. 'mlist' => array('Memberlist.php', 'Memberlist'),
  263. 'moderate' => array('ModerationCenter.php', 'ModerationMain'),
  264. 'modifycat' => array('ManageBoards.php', 'ModifyCat'),
  265. 'modifykarma' => array('Karma.php', 'ModifyKarma'),
  266. 'movetopic' => array('MoveTopic.php', 'MoveTopic'),
  267. 'movetopic2' => array('MoveTopic.php', 'MoveTopic2'),
  268. 'notify' => array('Notify.php', 'Notify'),
  269. 'notifyboard' => array('Notify.php', 'BoardNotify'),
  270. 'openidreturn' => array('Subs-OpenID.php', 'smf_openID_return'),
  271. 'pm' => array('PersonalMessage.php', 'MessageMain'),
  272. 'post' => array('Post.php', 'Post'),
  273. 'post2' => array('Post.php', 'Post2'),
  274. 'printpage' => array('Printpage.php', 'PrintTopic'),
  275. 'profile' => array('Profile.php', 'ModifyProfile'),
  276. 'quotefast' => array('Post.php', 'QuoteFast'),
  277. 'quickmod' => array('MessageIndex.php', 'QuickModeration'),
  278. 'quickmod2' => array('Display.php', 'QuickInTopicModeration'),
  279. 'recent' => array('Recent.php', 'RecentPosts'),
  280. 'register' => array('Register.php', 'Register'),
  281. 'register2' => array('Register.php', 'Register2'),
  282. 'reminder' => array('Reminder.php', 'RemindMe'),
  283. 'removepoll' => array('Poll.php', 'RemovePoll'),
  284. 'removetopic2' => array('RemoveTopic.php', 'RemoveTopic2'),
  285. 'reporttm' => array('SendTopic.php', 'ReportToModerator'),
  286. 'requestmembers' => array('Subs-Auth.php', 'RequestMembers'),
  287. 'restoretopic' => array('RemoveTopic.php', 'RestoreTopic'),
  288. 'search' => array('Search.php', 'PlushSearch1'),
  289. 'search2' => array('Search.php', 'PlushSearch2'),
  290. 'sendtopic' => array('SendTopic.php', 'EmailUser'),
  291. 'smstats' => array('Stats.php', 'SMStats'),
  292. 'suggest' => array('Subs-Editor.php', 'AutoSuggestHandler'),
  293. 'spellcheck' => array('Subs-Post.php', 'SpellCheck'),
  294. 'splittopics' => array('SplitTopics.php', 'SplitTopics'),
  295. 'stats' => array('Stats.php', 'DisplayStats'),
  296. 'sticky' => array('Topic.php', 'Sticky'),
  297. 'theme' => array('Themes.php', 'ThemesMain'),
  298. 'trackip' => array('Profile-View.php', 'trackIP'),
  299. 'about:mozilla' => array('Karma.php', 'BookOfUnknown'),
  300. 'about:unknown' => array('Karma.php', 'BookOfUnknown'),
  301. 'unread' => array('Recent.php', 'UnreadTopics'),
  302. 'unreadreplies' => array('Recent.php', 'UnreadTopics'),
  303. 'verificationcode' => array('Register.php', 'VerificationCode'),
  304. 'viewprofile' => array('Profile.php', 'ModifyProfile'),
  305. 'vote' => array('Poll.php', 'Vote'),
  306. 'viewquery' => array('ViewQuery.php', 'ViewQuery'),
  307. 'viewsmfile' => array('Admin.php', 'DisplayAdminFile'),
  308. 'who' => array('Who.php', 'Who'),
  309. '.xml' => array('News.php', 'ShowXmlFeed'),
  310. 'xmlhttp' => array('Xml.php', 'XMLhttpMain'),
  311. );
  312. // Allow modifying $actionArray easily.
  313. call_integration_hook('integrate_actions', array(&$actionArray));
  314. // Get the function and file to include - if it's not there, do the board index.
  315. if (!isset($_REQUEST['action']) || !isset($actionArray[$_REQUEST['action']]))
  316. {
  317. // Catch the action with the theme?
  318. if (!empty($settings['catch_action']))
  319. {
  320. require_once($sourcedir . '/Themes.php');
  321. return 'WrapAction';
  322. }
  323. // Fall through to the board index then...
  324. require_once($sourcedir . '/BoardIndex.php');
  325. return 'BoardIndex';
  326. }
  327. // Otherwise, it was set - so let's go to that action.
  328. require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]);
  329. return $actionArray[$_REQUEST['action']][1];
  330. }
  331. ?>