index.php 14 KB

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