index.php 14 KB

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