index.php 15 KB

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