]> git.mxchange.org Git - friendica.git/blob - src/Module/BaseAdmin.php
1c9fc0f2446ab41759eaa85cfe58ab567a7c3206
[friendica.git] / src / Module / BaseAdmin.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Addon;
26 use Friendica\Core\Renderer;
27 use Friendica\DI;
28 use Friendica\Network\HTTPException;
29
30 /**
31  * This abstract module is meant to be extended by all modules that are reserved to administrator users.
32  *
33  * It performs a blanket permission check in all the module methods as long as the relevant `parent::method()` is
34  * called in the inheriting module.
35  *
36  * Additionally, it puts together the administration page aside with all the administration links.
37  *
38  * @package Friendica\Module
39  */
40 abstract class BaseAdmin extends BaseModule
41 {
42         /**
43          * Checks admin access and throws exceptions if not logged-in administrator
44          *
45          * @param bool $interactive
46          * @return void
47          * @throws HTTPException\ForbiddenException
48          * @throws HTTPException\InternalServerErrorException
49          */
50         public static function checkAdminAccess(bool $interactive = false)
51         {
52                 if (!DI::userSession()->getLocalUserId()) {
53                         if ($interactive) {
54                                 DI::sysmsg()->addNotice(DI::l10n()->t('Please login to continue.'));
55                                 DI::session()->set('return_path', DI::args()->getQueryString());
56                                 DI::baseUrl()->redirect('login');
57                         } else {
58                                 throw new HTTPException\UnauthorizedException(DI::l10n()->t('Please login to continue.'));
59                         }
60                 }
61
62                 if (!DI::app()->isSiteAdmin()) {
63                         throw new HTTPException\ForbiddenException(DI::l10n()->t('You don\'t have access to administration pages.'));
64                 }
65
66                 if (DI::userSession()->getSubManagedUserId()) {
67                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Submanaged account can\'t access the administration pages. Please log back in as the main account.'));
68                 }
69         }
70
71         protected function content(array $request = []): string
72         {
73                 self::checkAdminAccess(true);
74
75                 // Header stuff
76                 DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/settings_head.tpl'), []);
77
78                 /*
79                  * Side bar links
80                  */
81
82                 // array(url, name, extra css classes)
83                 // not part of $aside to make the template more adjustable
84                 $aside_sub = [
85                         'information' => [DI::l10n()->t('Information'), [
86                                 'overview'     => ['admin'             , DI::l10n()->t('Overview')                , 'overview'],
87                                 'federation'   => ['admin/federation'  , DI::l10n()->t('Federation Statistics')   , 'federation']
88                         ]],
89                         'configuration' => [DI::l10n()->t('Configuration'), [
90                                 'site'         => ['admin/site'        , DI::l10n()->t('Site')                    , 'site'],
91                                 'storage'      => ['admin/storage'     , DI::l10n()->t('Storage')                 , 'storage'],
92                                 'users'        => ['admin/users'       , DI::l10n()->t('Users')                   , 'users'],
93                                 'addons'       => ['admin/addons'      , DI::l10n()->t('Addons')                  , 'addons'],
94                                 'themes'       => ['admin/themes'      , DI::l10n()->t('Themes')                  , 'themes'],
95                                 'features'     => ['admin/features'    , DI::l10n()->t('Additional features')     , 'features'],
96                                 'tos'          => ['admin/tos'         , DI::l10n()->t('Terms of Service')        , 'tos'],
97                         ]],
98                         'database' => [DI::l10n()->t('Database'), [
99                                 'dbsync'       => ['admin/dbsync'      , DI::l10n()->t('DB updates')              , 'dbsync'],
100                                 'deferred'     => ['admin/queue/deferred', DI::l10n()->t('Inspect Deferred Workers'), 'deferred'],
101                                 'workerqueue'  => ['admin/queue'       , DI::l10n()->t('Inspect worker Queue')    , 'workerqueue'],
102                         ]],
103                         'tools' => [DI::l10n()->t('Tools'), [
104                                 'contactblock' => ['admin/blocklist/contact', DI::l10n()->t('Contact Blocklist')  , 'contactblock'],
105                                 'blocklist'    => ['admin/blocklist/server' , DI::l10n()->t('Server Blocklist')   , 'blocklist'],
106                                 'deleteitem'   => ['admin/item/delete' , DI::l10n()->t('Delete Item')             , 'deleteitem'],
107                         ]],
108                         'logs' => [DI::l10n()->t('Logs'), [
109                                 'logsconfig'   => ['admin/logs/', DI::l10n()->t('Logs')                           , 'logs'],
110                                 'logsview'     => ['admin/logs/view'    , DI::l10n()->t('View Logs')              , 'viewlogs'],
111                         ]],
112                         'diagnostics' => [DI::l10n()->t('Diagnostics'), [
113                                 'phpinfo'      => ['admin/phpinfo'           , DI::l10n()->t('PHP Info')          , 'phpinfo'],
114                                 'probe'        => ['probe'             , DI::l10n()->t('probe address')           , 'probe'],
115                                 'webfinger'    => ['webfinger'         , DI::l10n()->t('check webfinger')         , 'webfinger'],
116                                 'itemsource'   => ['admin/item/source' , DI::l10n()->t('Item Source')             , 'itemsource'],
117                                 'babel'        => ['babel'             , DI::l10n()->t('Babel')                   , 'babel'],
118                                 'debug/ap'     => ['debug/ap'          , DI::l10n()->t('ActivityPub Conversion')  , 'debug/ap'],
119                         ]],
120                 ];
121
122                 $t = Renderer::getMarkupTemplate('admin/aside.tpl');
123                 DI::page()['aside'] .= Renderer::replaceMacros($t, [
124                         '$admin' => ['addons_admin' => Addon::getAdminList()],
125                         '$subpages' => $aside_sub,
126                         '$admtxt' => DI::l10n()->t('Admin'),
127                         '$plugadmtxt' => DI::l10n()->t('Addon Features'),
128                         '$h_pending' => DI::l10n()->t('User registrations waiting for confirmation'),
129                         '$admurl' => 'admin/'
130                 ]);
131
132                 return '';
133         }
134 }