forked from elkarte/Elkarte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.php
974 lines (891 loc) · 35.8 KB
/
Admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
<?php
/**
* This file, unpredictable as this might be, handles basic administration.
*
* @package ElkArte Forum
* @copyright ElkArte Forum contributors
* @license BSD http://opensource.org/licenses/BSD-3-Clause (see accompanying LICENSE.txt file)
*
* This file contains code covered by:
* copyright: 2011 Simple Machines (http://www.simplemachines.org)
*
* @version 2.0 dev
*
*/
namespace ElkArte\AdminController;
use ElkArte\AbstractController;
use ElkArte\Action;
use ElkArte\AdminSettingsSearch;
use ElkArte\EventManager;
use ElkArte\Exceptions\Exception;
use ElkArte\Hooks;
use ElkArte\Languages\Txt;
use ElkArte\Menu\Menu;
use ElkArte\Packages\Packages;
use ElkArte\Packages\PackageServers;
use ElkArte\User;
use ElkArte\XmlArray;
/**
* Admin controller class.
*
* What it does:
*
* - This class handles the first general admin screens: home,
* - Handles admin area search actions and end admin session.
*
* @package Admin
*/
class Admin extends AbstractController
{
/**
* @var string[] areas to find current installed status and installed version
*/
private $_checkFor = array('gd', 'imagick', 'db_server', 'php', 'server',
'zend', 'apc', 'memcache', 'memcached', 'opcache');
/**
* Pre Dispatch, called before other methods.
*
* - Loads integration hooks
*/
public function pre_dispatch()
{
global $context, $modSettings;
Hooks::instance()->loadIntegrationsSettings();
// The Admin functions require Jquery UI ....
$modSettings['jquery_include_ui'] = true;
// No indexing evil stuff.
$context['robot_no_index'] = true;
// Need these to do much
require_once(SUBSDIR . '/Admin.subs.php');
}
/**
* The main admin handling function.
*
* What it does:
*
* - It initialises all the basic context required for the admin center.
* - It passes execution onto the relevant admin section.
* - If the passed section is not found it shows the admin home page.
* - Accessed by ?action=admin.
*/
public function action_index()
{
// Make sure the administrator has a valid session...
validateSession();
// Load the language and templates....
Txt::load('Admin');
theme()->getTemplates()->load('Admin');
loadCSSFile('admin.css');
loadJavascriptFile('admin.js', array(), 'admin_script');
// Actually create the menu!
$admin_include_data = $this->loadMenu();
$this->buildLinktree($admin_include_data);
// And off we go, only one action, the chosen menu area
$action = new Action();
$action->initialize(['action' => $admin_include_data]);
$action->dispatch('action');
}
/**
* Load the admin_areas array
*
* What it does:
*
* - Creates the admin menu
* - Allows integrations to add/edit menu with addMenu event and integrate_admin_include
*
* @event integrate_admin_include used add files to include for administration
* @event addMenu passed admin area, allows active modules registered to this event to add items to the admin menu,
* @event integrate_admin_areas passed admin area, used to add items to the admin menu
*
* @return array
* @throws Exception no_access
*/
private function loadMenu()
{
global $txt, $context, $modSettings, $settings;
// Need these to do much
require_once(SUBSDIR . '/Menu.subs.php');
// Define the menu structure - see subs/Menu.subs.php for details!
$admin_areas = array(
'forum' => array(
'title' => $txt['admin_main'],
'permission' => array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'),
'areas' => array(
'index' => array(
'label' => $txt['admin_center'],
'controller' => Admin::class,
'function' => 'action_home',
'class' => 'i-home i-admin',
),
'credits' => array(
'label' => $txt['support_credits_title'],
'controller' => Admin::class,
'function' => 'action_credits',
'class' => 'i-support i-admin',
),
'maillist' => array(
'label' => $txt['mail_center'],
'controller' => ManageMaillist::class,
'function' => 'action_index',
'class' => 'i-envelope-blank i-admin',
'permission' => array('approve_emails', 'admin_forum'),
'enabled' => featureEnabled('pe'),
'subsections' => array(
'emaillist' => array($txt['mm_emailerror'], 'approve_emails'),
'emailfilters' => array($txt['mm_emailfilters'], 'admin_forum'),
'emailparser' => array($txt['mm_emailparsers'], 'admin_forum'),
'emailtemplates' => array($txt['mm_emailtemplates'], 'approve_emails'),
'emailsettings' => array($txt['mm_emailsettings'], 'admin_forum'),
),
),
'news' => array(
'label' => $txt['news_title'],
'controller' => ManageNews::class,
'function' => 'action_index',
'class' => 'i-post-text i-admin',
'permission' => array('edit_news', 'send_mail', 'admin_forum'),
'subsections' => array(
'editnews' => array($txt['admin_edit_news'], 'edit_news'),
'mailingmembers' => array($txt['admin_newsletters'], 'send_mail'),
'settings' => array($txt['settings'], 'admin_forum'),
),
),
'packages' => array(
'label' => $txt['package'],
'controller' => Packages::class,
'function' => 'action_index',
'permission' => array('admin_forum'),
'class' => 'i-package i-admin',
'subsections' => array(
'browse' => array($txt['browse_packages']),
'servers' => array($txt['add_packages']),
'options' => array($txt['package_settings']),
),
),
'packageservers' => array(
'label' => $txt['package_servers'],
'controller' => PackageServers::class,
'function' => 'action_index',
'permission' => array('admin_forum'),
'class' => 'i-package i-admin',
'hidden' => true,
),
'search' => array(
'controller' => Admin::class,
'function' => 'action_search',
'permission' => array('admin_forum'),
'class' => 'i-search i-admin',
'select' => 'index',
'hidden' => true,
),
'adminlogoff' => array(
'controller' => Admin::class,
'function' => 'action_endsession',
'label' => $txt['admin_logoff'],
'enabled' => empty($modSettings['securityDisable']),
'class' => 'i-sign-out i-admin',
),
),
),
'config' => array(
'title' => $txt['admin_config'],
'permission' => array('admin_forum'),
'areas' => array(
'corefeatures' => array(
'label' => $txt['core_settings_title'],
'controller' => CoreFeatures::class,
'function' => 'action_index',
'class' => 'i-cog i-admin',
),
'featuresettings' => array(
'label' => $txt['modSettings_title'],
'controller' => ManageFeatures::class,
'function' => 'action_index',
'class' => 'i-switch-on i-admin',
'subsections' => array(
'basic' => array($txt['mods_cat_features']),
'layout' => array($txt['mods_cat_layout']),
'mention' => array($txt['mention']),
'pwa' => array($txt['pwa_label']),
'pmsettings' => array($txt['personal_messages']),
'sig' => array($txt['signature_settings_short']),
'profile' => array($txt['custom_profile_shorttitle'], 'enabled' => featureEnabled('cp')),
'karma' => array($txt['karma'], 'enabled' => featureEnabled('k')),
'likes' => array($txt['likes'], 'enabled' => featureEnabled('l')),
),
),
'serversettings' => array(
'label' => $txt['admin_server_settings'],
'controller' => ManageServer::class,
'function' => 'action_index',
'class' => 'i-menu i-admin',
'subsections' => array(
'general' => array($txt['general_settings']),
'database' => array($txt['database_paths_settings']),
'cookie' => array($txt['cookies_sessions_settings']),
'cache' => array($txt['caching_settings']),
'loads' => array($txt['loadavg_settings']),
'phpinfo' => array($txt['phpinfo_settings']),
),
),
'securitysettings' => array(
'label' => $txt['admin_security_moderation'],
'controller' => ManageSecurity::class,
'function' => 'action_index',
'class' => 'i-key i-admin',
'subsections' => array(
'general' => array($txt['mods_cat_security_general']),
'spam' => array($txt['antispam_title']),
'moderation' => array($txt['moderation_settings_short'], 'enabled' => !empty($modSettings['warning_enable'])),
),
),
'theme' => array(
'label' => $txt['theme_admin'],
'controller' => ManageThemes::class,
'function' => 'action_index',
'custom_url' => getUrl('admin', ['action' => 'admin', 'area' => 'theme']),
'class' => 'i-modify i-admin',
'subsections' => array(
'admin' => array($txt['themeadmin_admin_title']),
'list' => array($txt['themeadmin_list_title']),
'reset' => array($txt['themeadmin_reset_title']),
),
),
'current_theme' => array(
'label' => $txt['theme_current_settings'],
'controller' => ManageThemes::class,
'function' => 'action_index',
'custom_url' => getUrl('admin', ['action' => 'admin', 'area' => 'theme', 'sa' => 'list', 'th' => $settings['theme_id']]),
'class' => 'i-paint i-admin',
),
'languages' => array(
'label' => $txt['language_configuration'],
'controller' => ManageLanguages::class,
'function' => 'action_index',
'class' => 'i-language i-admin',
'subsections' => array(
'edit' => array($txt['language_edit']),
// 'add' => array($txt['language_add']),
'settings' => array($txt['language_settings']),
),
),
'addonsettings' => array(
'label' => $txt['admin_modifications'],
'controller' => AddonSettings::class,
'function' => 'action_index',
'class' => 'i-puzzle i-admin',
'subsections' => array(
'general' => array($txt['mods_cat_modifications_misc']),
),
),
),
),
'layout' => array(
'title' => $txt['layout_controls'],
'permission' => array('manage_boards', 'admin_forum', 'manage_smileys', 'manage_attachments', 'moderate_forum'),
'areas' => array(
'manageboards' => array(
'label' => $txt['admin_boards'],
'controller' => ManageBoards::class,
'function' => 'action_index',
'class' => 'i-directory i-admin',
'permission' => array('manage_boards'),
'subsections' => array(
'main' => array($txt['boardsEdit']),
'newcat' => array($txt['mboards_new_cat']),
'settings' => array($txt['settings'], 'admin_forum'),
),
),
'postsettings' => array(
'label' => $txt['manageposts'],
'controller' => ManagePosts::class,
'function' => 'action_index',
'permission' => array('admin_forum'),
'class' => 'i-post-text i-admin',
'subsections' => array(
'posts' => array($txt['manageposts_settings']),
'censor' => array($txt['admin_censored_words']),
'topics' => array($txt['manageposts_topic_settings']),
),
),
'editor' => array(
'label' => $txt['editor_manage'],
'controller' => ManageEditor::class,
'function' => 'action_index',
'class' => 'i-modify i-admin',
'permission' => array('manage_bbc'),
),
'smileys' => array(
'label' => $txt['smileys_manage'],
'controller' => ManageSmileys::class,
'function' => 'action_index',
'class' => 'i-smiley-blank i-admin',
'permission' => array('manage_smileys'),
'subsections' => array(
'editsets' => array($txt['smiley_sets']),
'addsmiley' => array($txt['smileys_add']),
'editsmileys' => array($txt['smileys_edit']),
'setorder' => array($txt['smileys_set_order']),
'editicons' => array($txt['icons_edit_message_icons'], 'enabled' => !empty($modSettings['messageIcons_enable'])),
'settings' => array($txt['settings']),
),
),
'manageattachments' => array(
'label' => $txt['attachments_avatars'],
'controller' => ManageAttachments::class,
'function' => 'action_index',
'class' => 'i-paperclip i-admin',
'permission' => array('manage_attachments'),
'subsections' => array(
'browse' => array($txt['attachment_manager_browse']),
'attachments' => array($txt['attachment_manager_settings']),
'avatars' => array($txt['attachment_manager_avatar_settings']),
'attachpaths' => array($txt['attach_directories']),
'maintenance' => array($txt['attachment_manager_maintenance']),
),
),
'managesearch' => array(
'label' => $txt['manage_search'],
'controller' => ManageSearch::class,
'function' => 'action_index',
'class' => 'i-search i-admin',
'permission' => array('admin_forum'),
'subsections' => array(
'method' => array($txt['search_method']),
'weights' => array($txt['search_weights']),
'managesphinx' => array($txt['search_sphinx']),
'settings' => array($txt['settings']),
),
),
),
),
'members' => array(
'title' => $txt['admin_manage_members'],
'permission' => array('moderate_forum', 'manage_membergroups', 'manage_bans', 'manage_permissions', 'admin_forum'),
'areas' => array(
'viewmembers' => array(
'label' => $txt['admin_users'],
'controller' => ManageMembers::class,
'function' => 'action_index',
'class' => 'i-user i-admin',
'permission' => array('moderate_forum'),
),
'membergroups' => array(
'label' => $txt['admin_groups'],
'controller' => ManageMembergroups::class,
'function' => 'action_index',
'class' => 'i-users',
'permission' => array('manage_membergroups'),
'subsections' => array(
'index' => array($txt['membergroups_edit_groups'], 'manage_membergroups'),
'add' => array($txt['membergroups_new_group'], 'manage_membergroups'),
'settings' => array($txt['settings'], 'admin_forum'),
),
),
'permissions' => array(
'label' => $txt['edit_permissions'],
'controller' => ManagePermissions::class,
'function' => 'action_index',
'class' => 'i-key i-admin',
'permission' => array('manage_permissions'),
'subsections' => array(
'index' => array($txt['permissions_groups'], 'manage_permissions'),
'board' => array($txt['permissions_boards'], 'manage_permissions'),
'profiles' => array($txt['permissions_profiles'], 'manage_permissions'),
'postmod' => array($txt['permissions_post_moderation'], 'manage_permissions', 'enabled' => $modSettings['postmod_active']),
'settings' => array($txt['settings'], 'admin_forum'),
),
),
'ban' => array(
'label' => $txt['ban_title'],
'controller' => ManageBans::class,
'function' => 'action_index',
'class' => 'i-thumbdown i-admin',
'permission' => 'manage_bans',
'subsections' => array(
'list' => array($txt['ban_edit_list']),
'add' => array($txt['ban_add_new']),
'browse' => array($txt['ban_trigger_browse']),
'log' => array($txt['ban_log']),
),
),
'regcenter' => array(
'label' => $txt['registration_center'],
'controller' => ManageRegistration::class,
'function' => 'action_index',
'class' => 'i-user-plus i-admin',
'permission' => array('admin_forum', 'moderate_forum'),
'subsections' => array(
'register' => array($txt['admin_browse_register_new'], 'moderate_forum'),
'agreement' => array($txt['registration_agreement'], 'admin_forum'),
'privacypol' => array($txt['privacy_policy'], 'admin_forum'),
'reservednames' => array($txt['admin_reserved_set'], 'admin_forum'),
'settings' => array($txt['settings'], 'admin_forum'),
),
),
'sengines' => array(
'label' => $txt['search_engines'],
'enabled' => featureEnabled('sp'),
'controller' => ManageSearchEngines::class,
'function' => 'action_index',
'class' => 'i-website i-admin',
'permission' => 'admin_forum',
'subsections' => array(
'stats' => array($txt['spider_stats']),
'logs' => array($txt['spider_logs']),
'spiders' => array($txt['spiders']),
'settings' => array($txt['settings']),
),
),
'paidsubscribe' => array(
'label' => $txt['paid_subscriptions'],
'enabled' => featureEnabled('ps'),
'controller' => ManagePaid::class,
'class' => 'i-credit i-admin',
'function' => 'action_index',
'permission' => 'admin_forum',
'subsections' => array(
'view' => array($txt['paid_subs_view']),
'settings' => array($txt['settings']),
),
),
),
),
'maintenance' => array(
'title' => $txt['admin_maintenance'],
'permission' => array('admin_forum'),
'areas' => array(
'maintain' => array(
'label' => $txt['maintain_title'],
'controller' => Maintenance::class,
'function' => 'action_index',
'class' => 'i-cog i-admin',
'subsections' => array(
'routine' => array($txt['maintain_sub_routine'], 'admin_forum'),
'database' => array($txt['maintain_sub_database'], 'admin_forum'),
'members' => array($txt['maintain_sub_members'], 'admin_forum'),
'topics' => array($txt['maintain_sub_topics'], 'admin_forum'),
'hooks' => array($txt['maintain_sub_hooks_list'], 'admin_forum'),
'attachments' => array($txt['maintain_sub_attachments'], 'admin_forum'),
),
),
'logs' => array(
'label' => $txt['logs'],
'controller' => AdminLog::class,
'function' => 'action_index',
'class' => 'i-comments i-admin',
'subsections' => array(
'errorlog' => array($txt['errlog'], 'admin_forum', 'enabled' => !empty($modSettings['enableErrorLogging']), 'url' => getUrl('admin', ['action' => 'admin', 'area' => 'logs', 'sa' => 'errorlog', 'desc'])),
'adminlog' => array($txt['admin_log'], 'admin_forum', 'enabled' => featureEnabled('ml')),
'modlog' => array($txt['moderation_log'], 'admin_forum', 'enabled' => featureEnabled('ml')),
'banlog' => array($txt['ban_log'], 'manage_bans'),
'spiderlog' => array($txt['spider_logs'], 'admin_forum', 'enabled' => featureEnabled('sp')),
'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
'pruning' => array($txt['settings'], 'admin_forum'),
),
),
'scheduledtasks' => array(
'label' => $txt['maintain_tasks'],
'controller' => ManageScheduledTasks::class,
'function' => 'action_index',
'class' => 'i-calendar i-admin',
'subsections' => array(
'tasks' => array($txt['maintain_tasks'], 'admin_forum'),
'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
),
),
'mailqueue' => array(
'label' => $txt['mailqueue_title'],
'controller' => ManageMail::class,
'function' => 'action_index',
'class' => 'i-envelope-blank i-admin',
'subsections' => array(
'browse' => array($txt['mailqueue_browse'], 'admin_forum'),
'test' => array($txt['mailqueue_test'], 'admin_forum'),
'settings' => array($txt['mailqueue_settings'], 'admin_forum'),
),
),
'reports' => array(
'enabled' => featureEnabled('rg'),
'label' => $txt['generate_reports'],
'controller' => Reports::class,
'function' => 'action_index',
'class' => 'i-pie-chart i-admin',
),
'repairboards' => array(
'label' => $txt['admin_repair'],
'controller' => RepairBoards::class,
'function' => 'action_repairboards',
'select' => 'maintain',
'hidden' => true,
),
),
),
);
$this->_events->trigger('addMenu', ['admin_areas' => &$admin_areas]);
// Any files to include for administration?
call_integration_include_hook('integrate_admin_include');
$menuOptions = [
'hook' => 'admin',
];
// Actually create the admin menu!
$admin_include_data = (new Menu())
->addMenuData($admin_areas)
->addOptions($menuOptions)
->prepareMenu()
->setContext()
->getIncludeData();
unset($admin_areas);
// Make a note of the Unique ID for this menu.
$context['admin_menu_id'] = $context['max_menu_id'];
$context['admin_menu_name'] = 'menu_data_' . $context['admin_menu_id'];
// Where in the admin are we?
$context['admin_area'] = $admin_include_data['current_area'];
return $admin_include_data;
}
/**
* Builds out the navigation link tree for the admin area
*
* @param array $admin_include_data
*/
private function buildLinktree($admin_include_data)
{
global $txt, $context;
// Build the link tree.
$context['linktree'][] = array(
'url' => getUrl('admin', ['action' => 'admin']),
'name' => $txt['admin_center'],
);
if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] !== 'index')
{
$context['linktree'][] = array(
'url' => getUrl('admin', ['action' => 'admin', 'area' => $admin_include_data['current_area'], '{session_data}']),
'name' => $admin_include_data['label'],
);
}
if (!isset($admin_include_data['current_subsection'], $admin_include_data['subsections'][$admin_include_data['current_subsection']]))
{
return;
}
if ($admin_include_data['subsections'][$admin_include_data['current_subsection']]['label'] === $admin_include_data['label'])
{
return;
}
$context['linktree'][] = array(
'url' => getUrl('admin', ['action' => 'admin', 'area' => $admin_include_data['current_area'], 'sa' => $admin_include_data['current_subsection'], '{session_data}']),
'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']]['label'],
);
}
/**
* The main administration section.
*
* What it does:
*
* - It prepares all the data necessary for the administration front page.
* - It uses the Admin template along with the admin sub template.
* - It requires the moderate_forum, manage_membergroups, manage_bans,
* admin_forum, manage_permissions, manage_attachments, manage_smileys,
* manage_boards, edit_news, or send_mail permission.
* - It uses the index administrative area.
* - Accessed by ?action=admin.
*/
public function action_home()
{
global $txt, $context;
// We need a little help
require_once(SUBSDIR . '/Membergroups.subs.php');
// You have to be able to do at least one of the below to see this page.
isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'));
// Find all of this forum's administrators...
if (listMembergroupMembers_Href($context['administrators'], 1, 32) && allowedTo('manage_membergroups'))
{
// Add a 'more'-link if there are more than 32.
$context['more_admins_link'] = '<a href="' . getUrl('moderate', ['action' => 'moderate', 'area' => 'viewgroups', 'sa' => 'members', 'group' => 1]) . '">' . $txt['more'] . '</a>';
}
// This makes it easier to get the latest news with your time format.
$context['time_format'] = urlencode($this->user->time_format);
$context['forum_version'] = FORUM_VERSION;
// Get a list of current server versions.
$context['current_versions'] = getServerVersions($this->_checkFor);
$context['can_admin'] = allowedTo('admin_forum');
$context['sub_template'] = 'admin';
$context['page_title'] = $txt['admin_center'];
$context[$context['admin_menu_name']]['object']->prepareTabData([
'title' => 'admin_center',
'description' => '
<span class="bbc_strong">' . $txt['hello_guest'] . ' ' . $context['user']['name'] . '!</span>
' . sprintf($txt['admin_main_welcome'], $txt['admin_control_panel']),
]);
// Load in the admin quick tasks
$context['quick_admin_tasks'] = getQuickAdminTasks();
}
/**
* The credits section in admin panel.
*
* What it does:
*
* - Determines the current level of support functions from the server, such as
* current level of caching engine or graphics library's installed.
* - Accessed by ?action=admin;area=credits
*/
public function action_credits()
{
global $txt, $context;
// We need a little help from our friends
require_once(SUBSDIR . '/Membergroups.subs.php');
require_once(SUBSDIR . '/Who.subs.php');
require_once(SUBSDIR . '/Admin.subs.php');
// You have to be able to do at least one of the below to see this page.
isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'));
// Find all of this forum's administrators...
if (listMembergroupMembers_Href($context['administrators'], 1, 32) && allowedTo('manage_membergroups'))
{
// Add a 'more'-link if there are more than 32.
$context['more_admins_link'] = '<a href="' . getUrl('moderate', ['action' => 'moderate', 'area' => 'viewgroups', 'sa' => 'members', 'group' => 1]) . '">' . $txt['more'] . '</a>';
}
// Load credits.
$context[$context['admin_menu_name']]['object']->prepareTabData([
'title' => 'support_credits_title',
'description' => 'support_credits_desc',
]);
Txt::load('About');
require_once(SUBSDIR . '/About.subs.php');
$context += prepareCreditsData();
// This makes it easier to get the latest news with your time format.
$context['time_format'] = urlencode($this->user->time_format);
$context['forum_version'] = FORUM_VERSION;
// Get a list of current server versions.
$context['current_versions'] = getServerVersions($this->_checkFor);
$context['can_admin'] = allowedTo('admin_forum');
$context['sub_template'] = 'credits';
$context['page_title'] = $txt['support_credits_title'];
// Load in the admin quick tasks
$context['quick_admin_tasks'] = getQuickAdminTasks();
$index = 'new_in_' . str_replace(array('ElkArte ', '.'), array('', '_'), FORUM_VERSION);
if (isset($txt[$index]))
{
$context['latest_updates'] = replaceBasicActionUrl($txt[$index]);
require_once(SUBSDIR . '/Themes.subs.php');
updateThemeOptions(array(1, $this->user->id, 'dismissed_' . $index, 1));
}
}
/**
* This function allocates out all the search stuff.
*
* What it does:
*
* - Accessed with /index.php?action=admin;area=search[;search_type=x]
* - Sets up an array of applicable sub-actions (search types) and the function that goes with each
* - Search type specified by "search_type" request variable (either from a
* form or from the query string) Defaults to 'internal'
* - Calls the appropriate sub action based on the search_type
*/
public function action_search()
{
global $txt, $context;
// What can we search for?
$subActions = array(
'internal' => array($this, 'action_search_internal', 'permission' => 'admin_forum'),
'online' => array($this, 'action_search_doc', 'permission' => 'admin_forum'),
'member' => array($this, 'action_search_member', 'permission' => 'admin_forum'),
);
// Set the subaction
$action = new Action('admin_search');
$subAction = $action->initialize($subActions, 'internal');
// Keep track of what the admin wants in terms of advanced or not
if (empty($context['admin_preferences']['sb']) || $context['admin_preferences']['sb'] != $subAction)
{
$context['admin_preferences']['sb'] = $subAction;
// Update the preferences.
require_once(SUBSDIR . '/Admin.subs.php');
updateAdminPreferences();
}
// Setup for the template
$context['search_type'] = $subAction;
$context['search_term'] = $this->_req->getPost('search_term', 'trim|\\ElkArte\\Helper\\Util::htmlspecialchars[ENT_QUOTES]');
$context['sub_template'] = 'admin_search_results';
$context['page_title'] = $txt['admin_search_results'];
// You did remember to enter something to search for, otherwise its easy
if ($context['search_term'] === '')
{
$context['search_results'] = array();
}
else
{
$action->dispatch($subAction);
}
}
/**
* A complicated but relatively quick internal search.
*
* What it does:
*
* - Can be accessed with /index.php?action=admin;sa=search;search_term=x) or from the admin search form ("Task/Setting" option)
* - Polls the controllers for their configuration settings
* - Calls integrate_admin_search to allow addons to add search configs
* - Loads up the "Help" language file and all "Manage" language files
* - Loads up information about each item it found for the template
*
* @event integrate_admin_search Allows integration to add areas to the internal admin search
* @event search Allows active modules registered to search to add settings for internal search
*/
public function action_search_internal()
{
global $context, $txt;
// Try to get some more memory.
detectServer()->setMemoryLimit('128M');
// Load a lot of language files.
$language_files = [
'Help', 'ManageMail', 'ManageSettings', 'ManageBoards', 'ManagePaid', 'ManagePermissions', 'Search',
'Login', 'ManageSmileys', 'Maillist', 'Mentions', 'Addons'
];
// All the files we need to include to search for settings
$include_files = [];
// This is a special array of functions that contain setting data
// - we query all these to simply pull all setting bits!
$settings_search = [
['settings_search', 'area=addonsettings;sa=general', AddonSettings::class],
['settings_search', 'area=logs;sa=pruning', AdminLog::class],
['config_vars', 'area=corefeatures', CoreFeatures::class],
['settings_search', 'area=manageattachments;sa=attachments', ManageAttachments::class],
['settings_search', 'area=manageattachments;sa=avatars', ManageAvatars::class],
['settings_search', 'area=manageboards;sa=settings', ManageBoards::class],
['settings_search', 'area=postsettings;sa=bbc', ManageEditor::class],
['basicSettings_search', 'area=featuresettings;sa=basic', ManageFeatures::class],
['layoutSettings_search', 'area=featuresettings;sa=layout', ManageFeatures::class],
['karmaSettings_search', 'area=featuresettings;sa=karma', ManageFeatures::class],
['signatureSettings_search', 'area=featuresettings;sa=pmsettings', ManageFeatures::class],
['likesSettings_search', 'area=featuresettings;sa=likes', ManageFeatures::class],
['mentionSettings_search', 'area=featuresettings;sa=mention', ManageFeatures::class],
['signatureSettings_search', 'area=featuresettings;sa=sig', ManageFeatures::class],
['settings_search', 'area=languages;sa=settings', ManageLanguages::class],
['settings_search', 'area=mailqueue;sa=settings', ManageMail::class],
['settings_search', 'area=maillist;sa=emailsettings', ManageMaillist::class],
['filter_search', 'area=maillist;sa=emailsettings', ManageMaillist::class],
['parser_search', 'area=maillist;sa=emailsettings', ManageMaillist::class],
['settings_search', 'area=membergroups;sa=settings', ManageMembergroups::class],
['settings_search', 'area=news;sa=settings', ManageNews::class],
['settings_search', 'area=paidsubscribe;sa=settings', ManagePaid::class],
['settings_search', 'area=permissions;sa=settings', ManagePermissions::class],
['settings_search', 'area=postsettings;sa=posts', ManagePosts::class],
['settings_search', 'area=regcenter;sa=settings', ManageRegistration::class],
['settings_search', 'area=managesearch;sa=settings', ManageSearch::class],
['settings_search', 'area=sengines;sa=settings', ManageSearchEngines::class],
['securitySettings_search', 'area=securitysettings;sa=general', ManageSecurity::class],
['spamSettings_search', 'area=securitysettings;sa=spam', ManageSecurity::class],
['moderationSettings_search', 'area=securitysettings;sa=moderation', ManageSecurity::class],
['generalSettings_search', 'area=serversettings;sa=general', ManageServer::class],
['databaseSettings_search', 'area=serversettings;sa=database', ManageServer::class],
['cookieSettings_search', 'area=serversettings;sa=cookie', ManageServer::class],
['cacheSettings_search', 'area=serversettings;sa=cache', ManageServer::class],
['balancingSettings_search', 'area=serversettings;sa=loads', ManageServer::class],
['settings_search', 'area=smileys;sa=settings', ManageSmileys::class],
['settings_search', 'area=postsettings;sa=topics', ManageTopics::class],
];
// Allow integration to add settings to search
call_integration_hook('integrate_admin_search', [&$language_files, &$include_files, &$settings_search]);
// Allow active modules to add settings for internal search
$this->_events->trigger('addSearch', ['language_files' => &$language_files, 'include_files' => &$include_files, 'settings_search' => &$settings_search]);
// Go through all the search data trying to find this text!
$context['search_results'] = [];
if (isset($context['search_term']))
{
$search_term = strtolower(un_htmlspecialchars($context['search_term'] ?? ''));
$search = new AdminSettingsSearch($language_files, $include_files, $settings_search);
$search->initSearch($context['admin_menu_name'], [
['COPPA', 'area=regcenter;sa=settings'],
['CAPTCHA', 'area=securitysettings;sa=spam'],
]);
$context['search_results'] = $search->doSearch($search_term);
}
$context['page_title'] = $txt['admin_search_results'];
}
/**
* All this does is pass through to manage members.
*/
public function action_search_member()
{
global $context;
// @todo once Action.class is changed
$_REQUEST['sa'] = 'query';
// Set the query values
$this->_req->post->sa = 'query';
$this->_req->post->membername = un_htmlspecialchars($context['search_term']);
$this->_req->post->types = '';
$manageMembers = new ManageMembers(new EventManager());
$manageMembers->setUser(User::$info);
$manageMembers->pre_dispatch();
$manageMembers->action_index();
}
/**
* This file allows the user to search the wiki documentation for a little help.
*
* What it does:
* - Creates an exception since GitHub does not yet support API wiki searches so the connection
* will fail.
*/
public function action_search_doc()
{
global $context;
$context['doc_apiurl'] = 'https://github.com/elkarte/Elkarte/wiki/api.php';
$context['doc_scripturl'] = 'https://github.com/elkarte/Elkarte/wiki/';
// Set all the parameters search might expect.
$postVars = explode(' ', $context['search_term']);
// Encode the search data.
foreach ($postVars as $k => $v)
{
$postVars[$k] = urlencode($v);
}
// This is what we will send.
$postVars = implode('+', $postVars);
// Get the results from the doc site.
require_once(SUBSDIR . '/Package.subs.php');
// Demo URL:
// https://github.com/elkarte/Elkarte/wiki/api.php?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=template+eval
$search_results = fetch_web_data($context['doc_apiurl'] . '?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=' . $postVars);
// If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded?
if (!$search_results || preg_match('~<\?xml\sversion="\d+\.\d+"\?>\s*(<api>.+?</api>)~is', $search_results, $matches) !== 1)
{
throw new Exception('cannot_connect_doc_site');
}
$search_results = empty($matches[1]) ? '' : $matches[1];
// Otherwise we simply walk through the XML and stick it in context for display.
$context['search_results'] = array();
// Get the results loaded into an array for processing!
$results = new XmlArray($search_results, false);
// Move through the api layer.
if (!$results->exists('api'))
{
throw new Exception('cannot_connect_doc_site');
}
// Are there actually some results?
if ($results->exists('api/query/search/p'))
{
$relevance = 0;
foreach ($results->set('api/query/search/p') as $result)
{
$title = $result->fetch('@title');
$context['search_results'][$title] = array(
'title' => $title,
'relevance' => $relevance++,
'snippet' => str_replace("class='searchmatch'", 'class="highlight"', un_htmlspecialchars($result->fetch('@snippet'))),
);
}
}
}
/**
* This ends a admin session, requiring authentication to access the ACP again.
*/
public function action_endsession()
{
// This is so easy!
unset($_SESSION['admin_time']);
// Clean any admin tokens as well.
cleanTokens(false, '-admin');
if (isset($this->_req->query->redir, $_SERVER['HTTP_REFERER']))
{
redirectexit($_SERVER['HTTP_REFERER']);
}
redirectexit();
}
}