Admin.php 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  1. <?php
  2. /**
  3. * This file, unpredictable as this might be, handles basic administration.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines
  9. *
  10. * @copyright 2013 Simple Machines and individual contributors
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('No direct access...');
  17. /**
  18. * The main admin handling function.
  19. * It initialises all the basic context required for the admin center.
  20. * It passes execution onto the relevant admin section.
  21. * If the passed section is not found it shows the admin home page.
  22. */
  23. function AdminMain()
  24. {
  25. global $txt, $context, $scripturl, $modSettings, $settings, $sourcedir, $options, $boarddir, $maintenance;
  26. // Load the language and templates....
  27. loadLanguage('Admin');
  28. loadTemplate('Admin', 'admin');
  29. loadJavascriptFile('admin.js', array('default_theme' => true), 'admin.js');
  30. if (!empty($maintenance))
  31. $context['template_layers'][] = 'maint_warning';
  32. // No indexing evil stuff.
  33. $context['robot_no_index'] = true;
  34. require_once($sourcedir . '/Subs-Menu.php');
  35. // Some preferences.
  36. $context['admin_preferences'] = !empty($options['admin_preferences']) ? unserialize($options['admin_preferences']) : array();
  37. // Define all the menu structure - see Subs-Menu.php for details!
  38. $admin_areas = array(
  39. 'forum' => array(
  40. 'title' => $txt['admin_main'],
  41. 'permission' => array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'),
  42. 'areas' => array(
  43. 'index' => array(
  44. 'label' => $txt['admin_center'],
  45. 'function' => 'AdminHome',
  46. 'icon' => 'administration.png',
  47. ),
  48. 'credits' => array(
  49. 'label' => $txt['support_credits_title'],
  50. 'function' => 'AdminHome',
  51. 'icon' => 'support.png',
  52. ),
  53. 'news' => array(
  54. 'label' => $txt['news_title'],
  55. 'file' => 'ManageNews.php',
  56. 'function' => 'ManageNews',
  57. 'icon' => 'news.png',
  58. 'permission' => array('edit_news', 'send_mail', 'admin_forum'),
  59. 'subsections' => array(
  60. 'editnews' => array($txt['admin_edit_news'], 'edit_news'),
  61. 'mailingmembers' => array($txt['admin_newsletters'], 'send_mail'),
  62. 'settings' => array($txt['settings'], 'admin_forum'),
  63. ),
  64. ),
  65. 'packages' => array(
  66. 'label' => $txt['package'],
  67. 'file' => 'Packages.php',
  68. 'function' => 'Packages',
  69. 'permission' => array('admin_forum'),
  70. 'icon' => 'packages.png',
  71. 'subsections' => array(
  72. 'browse' => array($txt['browse_packages']),
  73. 'packageget' => array($txt['download_packages'], 'url' => $scripturl . '?action=admin;area=packages;sa=packageget;get'),
  74. 'installed' => array($txt['installed_packages']),
  75. 'perms' => array($txt['package_file_perms']),
  76. 'options' => array($txt['package_settings']),
  77. ),
  78. ),
  79. 'search' => array(
  80. 'function' => 'AdminSearch',
  81. 'permission' => array('admin_forum'),
  82. 'select' => 'index'
  83. ),
  84. 'adminlogoff' => array(
  85. 'label' => $txt['admin_logoff'],
  86. 'function' => 'AdminEndSession',
  87. 'enabled' => empty($modSettings['securityDisable']),
  88. 'icon' => 'exit.png',
  89. ),
  90. ),
  91. ),
  92. 'config' => array(
  93. 'title' => $txt['admin_config'],
  94. 'permission' => array('admin_forum'),
  95. 'areas' => array(
  96. 'corefeatures' => array(
  97. 'label' => $txt['core_settings_title'],
  98. 'file' => 'ManageSettings.php',
  99. 'function' => 'ModifyCoreFeatures',
  100. 'icon' => 'corefeatures.png',
  101. ),
  102. 'featuresettings' => array(
  103. 'label' => $txt['modSettings_title'],
  104. 'file' => 'ManageSettings.php',
  105. 'function' => 'ModifyFeatureSettings',
  106. 'icon' => 'features.png',
  107. 'subsections' => array(
  108. 'basic' => array($txt['mods_cat_features']),
  109. 'layout' => array($txt['mods_cat_layout']),
  110. 'karma' => array($txt['karma'], 'enabled' => in_array('k', $context['admin_features'])),
  111. 'sig' => array($txt['signature_settings_short']),
  112. 'profile' => array($txt['custom_profile_shorttitle']),
  113. ),
  114. ),
  115. 'securitysettings' => array(
  116. 'label' => $txt['admin_security_moderation'],
  117. 'file' => 'ManageSettings.php',
  118. 'function' => 'ModifySecuritySettings',
  119. 'icon' => 'security.png',
  120. 'subsections' => array(
  121. 'general' => array($txt['mods_cat_security_general']),
  122. 'spam' => array($txt['antispam_title']),
  123. 'moderation' => array($txt['moderation_settings_short'], 'enabled' => in_array('w', $context['admin_features'])),
  124. ),
  125. ),
  126. 'languages' => array(
  127. 'label' => $txt['language_configuration'],
  128. 'file' => 'ManageLanguages.php',
  129. 'function' => 'ManageLanguages',
  130. 'icon' => 'languages.png',
  131. 'subsections' => array(
  132. 'edit' => array($txt['language_edit']),
  133. 'add' => array($txt['language_add']),
  134. 'settings' => array($txt['language_settings']),
  135. ),
  136. ),
  137. 'current_theme' => array(
  138. 'label' => $txt['theme_current_settings'],
  139. 'file' => 'Themes.php',
  140. 'function' => 'ThemesMain',
  141. 'custom_url' => $scripturl . '?action=admin;area=theme;sa=list;th=' . $settings['theme_id'],
  142. 'icon' => 'current_theme.png',
  143. ),
  144. 'theme' => array(
  145. 'label' => $txt['theme_admin'],
  146. 'file' => 'Themes.php',
  147. 'function' => 'ThemesMain',
  148. 'custom_url' => $scripturl . '?action=admin;area=theme',
  149. 'icon' => 'themes.png',
  150. 'subsections' => array(
  151. 'admin' => array($txt['themeadmin_admin_title']),
  152. 'list' => array($txt['themeadmin_list_title']),
  153. 'reset' => array($txt['themeadmin_reset_title']),
  154. 'edit' => array($txt['themeadmin_edit_title']),
  155. ),
  156. ),
  157. 'modsettings' => array(
  158. 'label' => $txt['admin_modifications'],
  159. 'file' => 'ManageSettings.php',
  160. 'function' => 'ModifyModSettings',
  161. 'icon' => 'modifications.png',
  162. 'subsections' => array(
  163. 'general' => array($txt['mods_cat_modifications_misc']),
  164. // Mod Authors for a "ADD AFTER" on this line. Ensure you end your change with a comma. For example:
  165. // 'shout' => array($txt['shout']),
  166. // Note the comma!! The setting with automatically appear with the first mod to be added.
  167. ),
  168. ),
  169. ),
  170. ),
  171. 'layout' => array(
  172. 'title' => $txt['layout_controls'],
  173. 'permission' => array('manage_boards', 'admin_forum', 'manage_smileys', 'manage_attachments', 'moderate_forum'),
  174. 'areas' => array(
  175. 'manageboards' => array(
  176. 'label' => $txt['admin_boards'],
  177. 'file' => 'ManageBoards.php',
  178. 'function' => 'ManageBoards',
  179. 'icon' => 'boards.png',
  180. 'permission' => array('manage_boards'),
  181. 'subsections' => array(
  182. 'main' => array($txt['boardsEdit']),
  183. 'newcat' => array($txt['mboards_new_cat']),
  184. 'settings' => array($txt['settings'], 'admin_forum'),
  185. ),
  186. ),
  187. 'postsettings' => array(
  188. 'label' => $txt['manageposts'],
  189. 'file' => 'ManagePosts.php',
  190. 'function' => 'ManagePostSettings',
  191. 'permission' => array('admin_forum'),
  192. 'icon' => 'posts.png',
  193. 'subsections' => array(
  194. 'posts' => array($txt['manageposts_settings']),
  195. 'bbc' => array($txt['manageposts_bbc_settings']),
  196. 'censor' => array($txt['admin_censored_words']),
  197. 'topics' => array($txt['manageposts_topic_settings']),
  198. ),
  199. ),
  200. 'managedrafts' => array(
  201. 'label' => $txt['manage_drafts'],
  202. 'file' => 'Drafts.php',
  203. 'function' => 'ModifyDraftSettings',
  204. 'icon' => 'drafts.png',
  205. 'permission' => array('admin_forum'),
  206. ),
  207. 'managecalendar' => array(
  208. 'label' => $txt['manage_calendar'],
  209. 'file' => 'ManageCalendar.php',
  210. 'function' => 'ManageCalendar',
  211. 'icon' => 'calendar.png',
  212. 'permission' => array('admin_forum'),
  213. 'enabled' => in_array('cd', $context['admin_features']),
  214. 'subsections' => array(
  215. 'holidays' => array($txt['manage_holidays'], 'admin_forum', 'enabled' => !empty($modSettings['cal_enabled'])),
  216. 'settings' => array($txt['calendar_settings'], 'admin_forum'),
  217. ),
  218. ),
  219. 'managesearch' => array(
  220. 'label' => $txt['manage_search'],
  221. 'file' => 'ManageSearch.php',
  222. 'function' => 'ManageSearch',
  223. 'icon' => 'search.png',
  224. 'permission' => array('admin_forum'),
  225. 'subsections' => array(
  226. 'weights' => array($txt['search_weights']),
  227. 'method' => array($txt['search_method']),
  228. 'settings' => array($txt['settings']),
  229. ),
  230. ),
  231. 'smileys' => array(
  232. 'label' => $txt['smileys_manage'],
  233. 'file' => 'ManageSmileys.php',
  234. 'function' => 'ManageSmileys',
  235. 'icon' => 'smiley.png',
  236. 'permission' => array('manage_smileys'),
  237. 'subsections' => array(
  238. 'editsets' => array($txt['smiley_sets']),
  239. 'addsmiley' => array($txt['smileys_add'], 'enabled' => !empty($modSettings['smiley_enable'])),
  240. 'editsmileys' => array($txt['smileys_edit'], 'enabled' => !empty($modSettings['smiley_enable'])),
  241. 'setorder' => array($txt['smileys_set_order'], 'enabled' => !empty($modSettings['smiley_enable'])),
  242. 'editicons' => array($txt['icons_edit_message_icons'], 'enabled' => !empty($modSettings['messageIcons_enable'])),
  243. 'settings' => array($txt['settings']),
  244. ),
  245. ),
  246. 'manageattachments' => array(
  247. 'label' => $txt['attachments_avatars'],
  248. 'file' => 'ManageAttachments.php',
  249. 'function' => 'ManageAttachments',
  250. 'icon' => 'attachment.png',
  251. 'permission' => array('manage_attachments'),
  252. 'subsections' => array(
  253. 'browse' => array($txt['attachment_manager_browse']),
  254. 'attachments' => array($txt['attachment_manager_settings']),
  255. 'avatars' => array($txt['attachment_manager_avatar_settings']),
  256. 'attachpaths' => array($txt['attach_directories']),
  257. 'maintenance' => array($txt['attachment_manager_maintenance']),
  258. ),
  259. ),
  260. ),
  261. ),
  262. 'members' => array(
  263. 'title' => $txt['admin_manage_members'],
  264. 'permission' => array('moderate_forum', 'manage_membergroups', 'manage_bans', 'manage_permissions', 'admin_forum'),
  265. 'areas' => array(
  266. 'viewmembers' => array(
  267. 'label' => $txt['admin_users'],
  268. 'file' => 'ManageMembers.php',
  269. 'function' => 'ViewMembers',
  270. 'icon' => 'members.png',
  271. 'permission' => array('moderate_forum'),
  272. 'subsections' => array(
  273. 'all' => array($txt['view_all_members']),
  274. 'search' => array($txt['mlist_search']),
  275. ),
  276. ),
  277. 'membergroups' => array(
  278. 'label' => $txt['admin_groups'],
  279. 'file' => 'ManageMembergroups.php',
  280. 'function' => 'ModifyMembergroups',
  281. 'icon' => 'membergroups.png',
  282. 'permission' => array('manage_membergroups'),
  283. 'subsections' => array(
  284. 'index' => array($txt['membergroups_edit_groups'], 'manage_membergroups'),
  285. 'add' => array($txt['membergroups_new_group'], 'manage_membergroups'),
  286. 'settings' => array($txt['settings'], 'admin_forum'),
  287. ),
  288. ),
  289. 'permissions' => array(
  290. 'label' => $txt['edit_permissions'],
  291. 'file' => 'ManagePermissions.php',
  292. 'function' => 'ModifyPermissions',
  293. 'icon' => 'permissions.png',
  294. 'permission' => array('manage_permissions'),
  295. 'subsections' => array(
  296. 'index' => array($txt['permissions_groups'], 'manage_permissions'),
  297. 'board' => array($txt['permissions_boards'], 'manage_permissions'),
  298. 'profiles' => array($txt['permissions_profiles'], 'manage_permissions'),
  299. 'postmod' => array($txt['permissions_post_moderation'], 'manage_permissions', 'enabled' => $modSettings['postmod_active']),
  300. 'settings' => array($txt['settings'], 'admin_forum'),
  301. ),
  302. ),
  303. 'regcenter' => array(
  304. 'label' => $txt['registration_center'],
  305. 'file' => 'ManageRegistration.php',
  306. 'function' => 'RegCenter',
  307. 'icon' => 'regcenter.png',
  308. 'permission' => array('admin_forum', 'moderate_forum'),
  309. 'subsections' => array(
  310. 'register' => array($txt['admin_browse_register_new'], 'moderate_forum'),
  311. 'agreement' => array($txt['registration_agreement'], 'admin_forum'),
  312. 'reservednames' => array($txt['admin_reserved_set'], 'admin_forum'),
  313. 'settings' => array($txt['settings'], 'admin_forum'),
  314. ),
  315. ),
  316. 'ban' => array(
  317. 'label' => $txt['ban_title'],
  318. 'file' => 'ManageBans.php',
  319. 'function' => 'Ban',
  320. 'icon' => 'ban.png',
  321. 'permission' => 'manage_bans',
  322. 'subsections' => array(
  323. 'list' => array($txt['ban_edit_list']),
  324. 'add' => array($txt['ban_add_new']),
  325. 'browse' => array($txt['ban_trigger_browse']),
  326. 'log' => array($txt['ban_log']),
  327. ),
  328. ),
  329. 'paidsubscribe' => array(
  330. 'label' => $txt['paid_subscriptions'],
  331. 'enabled' => in_array('ps', $context['admin_features']),
  332. 'file' => 'ManagePaid.php',
  333. 'icon' => 'paid.png',
  334. 'function' => 'ManagePaidSubscriptions',
  335. 'permission' => 'admin_forum',
  336. 'subsections' => array(
  337. 'view' => array($txt['paid_subs_view']),
  338. 'settings' => array($txt['settings']),
  339. ),
  340. ),
  341. 'sengines' => array(
  342. 'label' => $txt['search_engines'],
  343. 'enabled' => in_array('sp', $context['admin_features']),
  344. 'file' => 'ManageSearchEngines.php',
  345. 'icon' => 'engines.png',
  346. 'function' => 'SearchEngines',
  347. 'permission' => 'admin_forum',
  348. 'subsections' => array(
  349. 'stats' => array($txt['spider_stats']),
  350. 'logs' => array($txt['spider_logs']),
  351. 'spiders' => array($txt['spiders']),
  352. 'settings' => array($txt['settings']),
  353. ),
  354. ),
  355. ),
  356. ),
  357. 'maintenance' => array(
  358. 'title' => $txt['admin_maintenance'],
  359. 'permission' => array('admin_forum'),
  360. 'areas' => array(
  361. 'serversettings' => array(
  362. 'label' => $txt['admin_server_settings'],
  363. 'file' => 'ManageServer.php',
  364. 'function' => 'ModifySettings',
  365. 'icon' => 'server.png',
  366. 'subsections' => array(
  367. 'general' => array($txt['general_settings']),
  368. 'database' => array($txt['database_paths_settings']),
  369. 'cookie' => array($txt['cookies_sessions_settings']),
  370. 'cache' => array($txt['caching_settings']),
  371. 'loads' => array($txt['load_balancing_settings']),
  372. 'phpinfo' => array($txt['phpinfo_settings']),
  373. ),
  374. ),
  375. 'maintain' => array(
  376. 'label' => $txt['maintain_title'],
  377. 'file' => 'ManageMaintenance.php',
  378. 'icon' => 'maintain.png',
  379. 'function' => 'ManageMaintenance',
  380. 'subsections' => array(
  381. 'routine' => array($txt['maintain_sub_routine'], 'admin_forum'),
  382. 'database' => array($txt['maintain_sub_database'], 'admin_forum'),
  383. 'members' => array($txt['maintain_sub_members'], 'admin_forum'),
  384. 'topics' => array($txt['maintain_sub_topics'], 'admin_forum'),
  385. 'hooks' => array($txt['hooks_title_list'], 'admin_forum'),
  386. ),
  387. ),
  388. 'scheduledtasks' => array(
  389. 'label' => $txt['maintain_tasks'],
  390. 'file' => 'ManageScheduledTasks.php',
  391. 'icon' => 'scheduled.png',
  392. 'function' => 'ManageScheduledTasks',
  393. 'subsections' => array(
  394. 'tasks' => array($txt['maintain_tasks'], 'admin_forum'),
  395. 'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
  396. ),
  397. ),
  398. 'mailqueue' => array(
  399. 'label' => $txt['mailqueue_title'],
  400. 'file' => 'ManageMail.php',
  401. 'function' => 'ManageMail',
  402. 'icon' => 'mail.png',
  403. 'subsections' => array(
  404. 'browse' => array($txt['mailqueue_browse'], 'admin_forum'),
  405. 'settings' => array($txt['mailqueue_settings'], 'admin_forum'),
  406. ),
  407. ),
  408. 'reports' => array(
  409. 'label' => $txt['generate_reports'],
  410. 'file' => 'Reports.php',
  411. 'function' => 'ReportsMain',
  412. 'icon' => 'reports.png',
  413. ),
  414. 'logs' => array(
  415. 'label' => $txt['logs'],
  416. 'function' => 'AdminLogs',
  417. 'icon' => 'logs.png',
  418. 'subsections' => array(
  419. 'errorlog' => array($txt['errlog'], 'admin_forum', 'enabled' => !empty($modSettings['enableErrorLogging']), 'url' => $scripturl . '?action=admin;area=logs;sa=errorlog;desc'),
  420. 'adminlog' => array($txt['admin_log'], 'admin_forum', 'enabled' => in_array('ml', $context['admin_features'])),
  421. 'modlog' => array($txt['moderation_log'], 'admin_forum', 'enabled' => in_array('ml', $context['admin_features'])),
  422. 'banlog' => array($txt['ban_log'], 'manage_bans'),
  423. 'spiderlog' => array($txt['spider_logs'], 'admin_forum', 'enabled' => in_array('sp', $context['admin_features'])),
  424. 'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
  425. 'settings' => array($txt['log_settings'], 'admin_forum'),
  426. ),
  427. ),
  428. 'repairboards' => array(
  429. 'label' => $txt['admin_repair'],
  430. 'file' => 'RepairBoards.php',
  431. 'function' => 'RepairBoards',
  432. 'select' => 'maintain',
  433. 'hidden' => true,
  434. ),
  435. ),
  436. ),
  437. );
  438. // Any files to include for administration?
  439. if (!empty($modSettings['integrate_admin_include']))
  440. {
  441. $admin_includes = explode(',', $modSettings['integrate_admin_include']);
  442. foreach ($admin_includes as $include)
  443. {
  444. $include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir']));
  445. if (file_exists($include))
  446. require_once($include);
  447. }
  448. }
  449. // Make sure the administrator has a valid session...
  450. validateSession();
  451. // Actually create the menu!
  452. $admin_include_data = createMenu($admin_areas, array('do_big_icons' => true));
  453. unset($admin_areas);
  454. // Nothing valid?
  455. if ($admin_include_data == false)
  456. fatal_lang_error('no_access', false);
  457. // Build the link tree.
  458. $context['linktree'][] = array(
  459. 'url' => $scripturl . '?action=admin',
  460. 'name' => $txt['admin_center'],
  461. );
  462. if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index')
  463. $context['linktree'][] = array(
  464. 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  465. 'name' => $admin_include_data['label'],
  466. );
  467. if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label'])
  468. $context['linktree'][] = array(
  469. 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';sa=' . $admin_include_data['current_subsection'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  470. 'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']][0],
  471. );
  472. // Make a note of the Unique ID for this menu.
  473. $context['admin_menu_id'] = $context['max_menu_id'];
  474. $context['admin_menu_name'] = 'menu_data_' . $context['admin_menu_id'];
  475. // Where in the admin are we?
  476. $context['admin_area'] = $admin_include_data['current_area'];
  477. // Now - finally - call the right place!
  478. if (isset($admin_include_data['file']))
  479. require_once($sourcedir . '/' . $admin_include_data['file']);
  480. $admin_include_data['function']();
  481. }
  482. /**
  483. * The main administration section.
  484. * It prepares all the data necessary for the administration front page.
  485. * It uses the Admin template along with the admin sub template.
  486. * It requires the moderate_forum, manage_membergroups, manage_bans,
  487. * admin_forum, manage_permissions, manage_attachments, manage_smileys,
  488. * manage_boards, edit_news, or send_mail permission.
  489. * It uses the index administrative area.
  490. * It can be found by going to ?action=admin.
  491. */
  492. function AdminHome()
  493. {
  494. global $sourcedir, $forum_version, $txt, $scripturl, $context, $user_info;
  495. // You have to be able to do at least one of the below to see this page.
  496. isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'));
  497. // Find all of this forum's administrators...
  498. require_once($sourcedir . '/Subs-Membergroups.php');
  499. if (listMembergroupMembers_Href($context['administrators'], 1, 32) && allowedTo('manage_membergroups'))
  500. {
  501. // Add a 'more'-link if there are more than 32.
  502. $context['more_admins_link'] = '<a href="' . $scripturl . '?action=moderate;area=viewgroups;sa=members;group=1">' . $txt['more'] . '</a>';
  503. }
  504. // Load the credits stuff.
  505. require_once($sourcedir . '/Who.php');
  506. Credits(true);
  507. // This makes it easier to get the latest news with your time format.
  508. $context['time_format'] = urlencode($user_info['time_format']);
  509. $context['forum_version'] = $forum_version;
  510. // Get a list of current server versions.
  511. require_once($sourcedir . '/Subs-Admin.php');
  512. $checkFor = array(
  513. 'gd',
  514. 'imagick',
  515. 'db_server',
  516. 'mmcache',
  517. 'eaccelerator',
  518. 'phpa',
  519. 'apc',
  520. 'memcache',
  521. 'xcache',
  522. 'php',
  523. 'server',
  524. );
  525. $context['current_versions'] = getServerVersions($checkFor);
  526. $context['can_admin'] = allowedTo('admin_forum');
  527. $context['sub_template'] = $context['admin_area'] == 'credits' ? 'credits' : 'admin';
  528. $context['page_title'] = $context['admin_area'] == 'credits' ? $txt['support_credits_title'] : $txt['admin_center'];
  529. if ($context['admin_area'] != 'credits')
  530. $context[$context['admin_menu_name']]['tab_data'] = array(
  531. 'title' => $txt['admin_center'],
  532. 'help' => '',
  533. 'description' => '
  534. <strong>' . $txt['hello_guest'] . ' ' . $context['user']['name'] . '!</strong>
  535. ' . sprintf($txt['admin_main_welcome'], $txt['admin_center'], $txt['help'], $txt['help']),
  536. );
  537. // Lastly, fill in the blanks in the support resources paragraphs.
  538. $txt['support_resources_p1'] = sprintf($txt['support_resources_p1'],
  539. 'http://wiki.simplemachines.org/',
  540. 'http://wiki.simplemachines.org/smf/features2',
  541. 'http://wiki.simplemachines.org/smf/options2',
  542. 'http://wiki.simplemachines.org/smf/themes2',
  543. 'http://wiki.simplemachines.org/smf/packages2'
  544. );
  545. $txt['support_resources_p2'] = sprintf($txt['support_resources_p2'],
  546. 'http://www.simplemachines.org/community/',
  547. 'http://www.simplemachines.org/redirect/english_support',
  548. 'http://www.simplemachines.org/redirect/international_support_boards',
  549. 'http://www.simplemachines.org/redirect/smf_support',
  550. 'http://www.simplemachines.org/redirect/customize_support'
  551. );
  552. }
  553. /**
  554. * Get one of the admin information files from Simple Machines.
  555. */
  556. function DisplayAdminFile()
  557. {
  558. global $context, $modSettings, $smcFunc;
  559. setMemoryLimit('32M');
  560. if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename']))
  561. fatal_lang_error('no_access', false);
  562. $request = $smcFunc['db_query']('', '
  563. SELECT data, filetype
  564. FROM {db_prefix}admin_info_files
  565. WHERE filename = {string:current_filename}
  566. LIMIT 1',
  567. array(
  568. 'current_filename' => $_REQUEST['filename'],
  569. )
  570. );
  571. if ($smcFunc['db_num_rows']($request) == 0)
  572. fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']));
  573. list ($file_data, $filetype) = $smcFunc['db_fetch_row']($request);
  574. $smcFunc['db_free_result']($request);
  575. // @todo Temp
  576. // Figure out if sesc is still being used.
  577. if (strpos($file_data, ';sesc=') !== false)
  578. $file_data = '
  579. if (!(\'smfForum_sessionvar\' in window))
  580. window.smfForum_sessionvar = \'sesc\';
  581. ' . strtr($file_data, array(';sesc=' => ';\' + window.smfForum_sessionvar + \'='));
  582. $context['template_layers'] = array();
  583. // Lets make sure we aren't going to output anything nasty.
  584. @ob_end_clean();
  585. if (!empty($modSettings['enableCompressedOutput']))
  586. @ob_start('ob_gzhandler');
  587. else
  588. @ob_start();
  589. // Make sure they know what type of file we are.
  590. header('Content-Type: ' . $filetype);
  591. echo $file_data;
  592. obExit(false);
  593. }
  594. /**
  595. * This function allocates out all the search stuff.
  596. */
  597. function AdminSearch()
  598. {
  599. global $txt, $context, $smcFunc, $sourcedir;
  600. isAllowedTo('admin_forum');
  601. // What can we search for?
  602. $subactions = array(
  603. 'internal' => 'AdminSearchInternal',
  604. 'online' => 'AdminSearchOM',
  605. 'member' => 'AdminSearchMember',
  606. );
  607. $context['search_type'] = !isset($_REQUEST['search_type']) || !isset($subactions[$_REQUEST['search_type']]) ? 'internal' : $_REQUEST['search_type'];
  608. $context['search_term'] = isset($_REQUEST['search_term']) ? $smcFunc['htmlspecialchars']($_REQUEST['search_term'], ENT_QUOTES) : '';
  609. $context['sub_template'] = 'admin_search_results';
  610. $context['page_title'] = $txt['admin_search_results'];
  611. // Keep track of what the admin wants.
  612. if (empty($context['admin_preferences']['sb']) || $context['admin_preferences']['sb'] != $context['search_type'])
  613. {
  614. $context['admin_preferences']['sb'] = $context['search_type'];
  615. // Update the preferences.
  616. require_once($sourcedir . '/Subs-Admin.php');
  617. updateAdminPreferences();
  618. }
  619. if (trim($context['search_term']) == '')
  620. $context['search_results'] = array();
  621. else
  622. $subactions[$context['search_type']]();
  623. }
  624. /**
  625. * A complicated but relatively quick internal search.
  626. */
  627. function AdminSearchInternal()
  628. {
  629. global $context, $txt, $helptxt, $scripturl, $sourcedir;
  630. // Try to get some more memory.
  631. setMemoryLimit('128M');
  632. // Load a lot of language files.
  633. $language_files = array(
  634. 'Help', 'ManageMail', 'ManageSettings', 'ManageCalendar', 'ManageBoards', 'ManagePaid', 'ManagePermissions', 'Search',
  635. 'Login', 'ManageSmileys',
  636. );
  637. // All the files we need to include.
  638. $include_files = array(
  639. 'ManageSettings', 'ManageBoards', 'ManageNews', 'ManageAttachments', 'ManageCalendar', 'ManageMail', 'ManagePaid', 'ManagePermissions',
  640. 'ManagePosts', 'ManageRegistration', 'ManageSearch', 'ManageSearchEngines', 'ManageServer', 'ManageSmileys', 'ManageLanguages',
  641. );
  642. // This is a special array of functions that contain setting data - we query all these to simply pull all setting bits!
  643. $settings_search = array(
  644. array('ModifyCoreFeatures', 'area=corefeatures'),
  645. array('ModifyBasicSettings', 'area=featuresettings;sa=basic'),
  646. array('ModifyLayoutSettings', 'area=featuresettings;sa=layout'),
  647. array('ModifyKarmaSettings', 'area=featuresettings;sa=karma'),
  648. array('ModifySignatureSettings', 'area=featuresettings;sa=sig'),
  649. array('ModifyGeneralSecuritySettings', 'area=securitysettings;sa=general'),
  650. array('ModifySpamSettings', 'area=securitysettings;sa=spam'),
  651. array('ModifyModerationSettings', 'area=securitysettings;sa=moderation'),
  652. array('ModifyGeneralModSettings', 'area=modsettings;sa=general'),
  653. // Mod authors if you want to be "real freaking good" then add any setting pages for your mod BELOW this line!
  654. array('ManageAttachmentSettings', 'area=manageattachments;sa=attachments'),
  655. array('ManageAvatarSettings', 'area=manageattachments;sa=avatars'),
  656. array('ModifyCalendarSettings', 'area=managecalendar;sa=settings'),
  657. array('EditBoardSettings', 'area=manageboards;sa=settings'),
  658. array('ModifyMailSettings', 'area=mailqueue;sa=settings'),
  659. array('ModifyNewsSettings', 'area=news;sa=settings'),
  660. array('GeneralPermissionSettings', 'area=permissions;sa=settings'),
  661. array('ModifyPostSettings', 'area=postsettings;sa=posts'),
  662. array('ModifyBBCSettings', 'area=postsettings;sa=bbc'),
  663. array('ModifyTopicSettings', 'area=postsettings;sa=topics'),
  664. array('EditSearchSettings', 'area=managesearch;sa=settings'),
  665. array('EditSmileySettings', 'area=smileys;sa=settings'),
  666. array('ModifyGeneralSettings', 'area=serversettings;sa=general'),
  667. array('ModifyDatabaseSettings', 'area=serversettings;sa=database'),
  668. array('ModifyCookieSettings', 'area=serversettings;sa=cookie'),
  669. array('ModifyCacheSettings', 'area=serversettings;sa=cache'),
  670. array('ModifyLanguageSettings', 'area=languages;sa=settings'),
  671. array('ModifyRegistrationSettings', 'area=regcenter;sa=settings'),
  672. array('ManageSearchEngineSettings', 'area=sengines;sa=settings'),
  673. array('ModifySubscriptionSettings', 'area=paidsubscribe;sa=settings'),
  674. array('ModifyLogSettings', 'area=logs;sa=settings'),
  675. );
  676. call_integration_hook('integrate_admin_search', array(&$language_files, &$include_files, &$settings_search));
  677. loadLanguage(implode('+', $language_files));
  678. foreach ($include_files as $file)
  679. require_once($sourcedir . '/' . $file . '.php');
  680. /* This is the huge array that defines everything... it's a huge array of items formatted as follows:
  681. 0 = Language index (Can be array of indexes) to search through for this setting.
  682. 1 = URL for this indexes page.
  683. 2 = Help index for help associated with this item (If different from 0)
  684. */
  685. $search_data = array(
  686. // All the major sections of the forum.
  687. 'sections' => array(
  688. ),
  689. 'settings' => array(
  690. array('COPPA', 'area=regcenter;sa=settings'),
  691. array('CAPTCHA', 'area=securitysettings;sa=spam'),
  692. ),
  693. );
  694. // Go through the admin menu structure trying to find suitably named areas!
  695. foreach ($context[$context['admin_menu_name']]['sections'] as $section)
  696. {
  697. foreach ($section['areas'] as $menu_key => $menu_item)
  698. {
  699. $search_data['sections'][] = array($menu_item['label'], 'area=' . $menu_key);
  700. if (!empty($menu_item['subsections']))
  701. foreach ($menu_item['subsections'] as $key => $sublabel)
  702. {
  703. if (isset($sublabel['label']))
  704. $search_data['sections'][] = array($sublabel['label'], 'area=' . $menu_key . ';sa=' . $key);
  705. }
  706. }
  707. }
  708. foreach ($settings_search as $setting_area)
  709. {
  710. // Get a list of their variables.
  711. $config_vars = $setting_area[0](true);
  712. foreach ($config_vars as $var)
  713. if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch')))
  714. $search_data['settings'][] = array($var[(isset($var[2]) && in_array($var[2], array('file', 'db'))) ? 0 : 1], $setting_area[1]);
  715. }
  716. $context['page_title'] = $txt['admin_search_results'];
  717. $context['search_results'] = array();
  718. $search_term = strtolower(un_htmlspecialchars($context['search_term']));
  719. // Go through all the search data trying to find this text!
  720. foreach ($search_data as $section => $data)
  721. {
  722. foreach ($data as $item)
  723. {
  724. $found = false;
  725. if (!is_array($item[0]))
  726. $item[0] = array($item[0]);
  727. foreach ($item[0] as $term)
  728. {
  729. if (stripos($term, $search_term) !== false || (isset($txt[$term]) && stripos($txt[$term], $search_term) !== false) || (isset($txt['setting_' . $term]) && stripos($txt['setting_' . $term], $search_term) !== false))
  730. {
  731. $found = $term;
  732. break;
  733. }
  734. }
  735. if ($found)
  736. {
  737. // Format the name - and remove any descriptions the entry may have.
  738. $name = isset($txt[$found]) ? $txt[$found] : (isset($txt['setting_' . $found]) ? $txt['setting_' . $found] : $found);
  739. $name = preg_replace('~<(?:div|span)\sclass="smalltext">.+?</(?:div|span)>~', '', $name);
  740. $context['search_results'][] = array(
  741. 'url' => (substr($item[1], 0, 4) == 'area' ? $scripturl . '?action=admin;' . $item[1] : $item[1]) . ';' . $context['session_var'] . '=' . $context['session_id'] . ((substr($item[1], 0, 4) == 'area' && $section == 'settings' ? '#' . $item[0][0] : '')),
  742. 'name' => $name,
  743. 'type' => $section,
  744. 'help' => shorten_subject(isset($item[2]) ? strip_tags($helptxt[$item[2]]) : (isset($helptxt[$found]) ? strip_tags($helptxt[$found]) : ''), 255),
  745. );
  746. }
  747. }
  748. }
  749. }
  750. /**
  751. * All this does is pass through to manage members.
  752. */
  753. function AdminSearchMember()
  754. {
  755. global $context, $sourcedir;
  756. require_once($sourcedir . '/ManageMembers.php');
  757. $_REQUEST['sa'] = 'query';
  758. $_POST['membername'] = un_htmlspecialchars($context['search_term']);
  759. $_POST['types'] = '';
  760. ViewMembers();
  761. }
  762. /**
  763. * This file allows the user to search the SM online manual for a little of help.
  764. */
  765. function AdminSearchOM()
  766. {
  767. global $context, $sourcedir;
  768. $context['doc_apiurl'] = 'http://wiki.simplemachines.org/api.php';
  769. $context['doc_scripturl'] = 'http://wiki.simplemachines.org/smf/';
  770. // Set all the parameters search might expect.
  771. $postVars = explode(' ', $context['search_term']);
  772. // Encode the search data.
  773. foreach ($postVars as $k => $v)
  774. $postVars[$k] = urlencode($v);
  775. // This is what we will send.
  776. $postVars = implode('+', $postVars);
  777. // Get the results from the doc site.
  778. require_once($sourcedir . '/Subs-Package.php');
  779. // Demo URL:
  780. // http://wiki.simplemachines.org/api.php?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=template+eval
  781. $search_results = fetch_web_data($context['doc_apiurl'] . '?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=' . $postVars);
  782. // If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded?
  783. if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?>\s*(<api>.+?</api>)~is', $search_results, $matches) != true)
  784. fatal_lang_error('cannot_connect_doc_site');
  785. $search_results = $matches[1];
  786. // Otherwise we simply walk through the XML and stick it in context for display.
  787. $context['search_results'] = array();
  788. require_once($sourcedir . '/Class-Package.php');
  789. // Get the results loaded into an array for processing!
  790. $results = new xmlArray($search_results, false);
  791. // Move through the api layer.
  792. if (!$results->exists('api'))
  793. fatal_lang_error('cannot_connect_doc_site');
  794. // Are there actually some results?
  795. if ($results->exists('api/query/search/p'))
  796. {
  797. $relevance = 0;
  798. foreach ($results->set('api/query/search/p') as $result)
  799. {
  800. $context['search_results'][$result->fetch('@title')] = array(
  801. 'title' => $result->fetch('@title'),
  802. 'relevance' => $relevance++,
  803. 'snippet' => str_replace('class=\'searchmatch\'', 'class="highlight"', un_htmlspecialchars($result->fetch('@snippet'))),
  804. );
  805. }
  806. }
  807. }
  808. /**
  809. * This function decides which log to load.
  810. */
  811. function AdminLogs()
  812. {
  813. global $sourcedir, $context, $txt, $scripturl;
  814. // These are the logs they can load.
  815. $log_functions = array(
  816. 'errorlog' => array('ManageErrors.php', 'ViewErrorLog'),
  817. 'adminlog' => array('Modlog.php', 'ViewModlog'),
  818. 'modlog' => array('Modlog.php', 'ViewModlog', 'disabled' => !in_array('ml', $context['admin_features'])),
  819. 'banlog' => array('ManageBans.php', 'BanLog'),
  820. 'spiderlog' => array('ManageSearchEngines.php', 'SpiderLogs'),
  821. 'tasklog' => array('ManageScheduledTasks.php', 'TaskLog'),
  822. 'settings' => array('ManageSettings.php', 'ModifyLogSettings'),
  823. );
  824. call_integration_hook('integrate_manage_logs', array(&$log_functions));
  825. $sub_action = isset($_REQUEST['sa']) && isset($log_functions[$_REQUEST['sa']]) && empty($log_functions[$_REQUEST['sa']]['disabled']) ? $_REQUEST['sa'] : 'errorlog';
  826. // If it's not got a sa set it must have come here for first time, pretend error log should be reversed.
  827. if (!isset($_REQUEST['sa']))
  828. $_REQUEST['desc'] = true;
  829. // Setup some tab stuff.
  830. $context[$context['admin_menu_name']]['tab_data'] = array(
  831. 'title' => $txt['logs'],
  832. 'help' => '',
  833. 'description' => $txt['maintain_info'],
  834. 'tabs' => array(
  835. 'errorlog' => array(
  836. 'url' => $scripturl . '?action=admin;area=logs;sa=errorlog;desc',
  837. 'description' => sprintf($txt['errlog_desc'], $txt['remove']),
  838. ),
  839. 'adminlog' => array(
  840. 'description' => $txt['admin_log_desc'],
  841. ),
  842. 'modlog' => array(
  843. 'description' => $txt['moderation_log_desc'],
  844. ),
  845. 'banlog' => array(
  846. 'description' => $txt['ban_log_description'],
  847. ),
  848. 'spiderlog' => array(
  849. 'description' => $txt['spider_log_desc'],
  850. ),
  851. 'tasklog' => array(
  852. 'description' => $txt['scheduled_log_desc'],
  853. ),
  854. 'settings' => array(
  855. 'description' => $txt['log_settings_desc'],
  856. ),
  857. ),
  858. );
  859. require_once($sourcedir . '/' . $log_functions[$sub_action][0]);
  860. $log_functions[$sub_action][1]();
  861. }
  862. /**
  863. * This ends a admin session, requiring authentication to access the ACP again.
  864. */
  865. function AdminEndSession()
  866. {
  867. // This is so easy!
  868. unset($_SESSION['admin_time']);
  869. // Clean any admin tokens as well.
  870. foreach ($_SESSION['token'] as $key => $token)
  871. if (strpos($key, '-admin') !== false)
  872. unset($_SESSION['token'][$key]);
  873. redirectexit('action=admin');
  874. }
  875. ?>