Admin.php 35 KB

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