]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Addons/Details.php
Use router parameters in Admin modules
[friendica.git] / src / Module / Admin / Addons / Details.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Admin\Addons;
23
24 use Friendica\Content\Text\Markdown;
25 use Friendica\Core\Addon;
26 use Friendica\Core\Renderer;
27 use Friendica\DI;
28 use Friendica\Module\BaseAdmin;
29 use Friendica\Util\Strings;
30
31 class Details extends BaseAdmin
32 {
33         public static function post(array $parameters = [])
34         {
35                 parent::post($parameters);
36
37                 $addon = Strings::sanitizeFilePathItem($parameters['addon']);
38
39                 $redirect = 'admin/addons/' . $addon;
40
41                 if (is_file('addon/' . $addon . '/' . $addon . '.php')) {
42                         include_once 'addon/' . $addon . '/' . $addon . '.php';
43
44                         if (function_exists($addon . '_addon_admin_post')) {
45                                 $func = $addon . '_addon_admin_post';
46                                 $func(DI::app());
47                         }
48                 }
49
50                 DI::baseUrl()->redirect($redirect);
51         }
52
53         public static function content(array $parameters = [])
54         {
55                 parent::content($parameters);
56
57                 $a = DI::app();
58
59                 $addons_admin = Addon::getAdminList();
60
61                 $addon = Strings::sanitizeFilePathItem($parameters['addon']);
62                 if (!is_file("addon/$addon/$addon.php")) {
63                         notice(DI::l10n()->t('Addon not found.'));
64                         Addon::uninstall($addon);
65                         DI::baseUrl()->redirect('admin/addons');
66                 }
67
68                 if (($_GET['action'] ?? '') == 'toggle') {
69                         self::checkFormSecurityTokenRedirectOnError('/admin/addons', 'admin_addons', 't');
70
71                         // Toggle addon status
72                         if (Addon::isEnabled($addon)) {
73                                 Addon::uninstall($addon);
74                                 info(DI::l10n()->t('Addon %s disabled.', $addon));
75                         } else {
76                                 Addon::install($addon);
77                                 info(DI::l10n()->t('Addon %s enabled.', $addon));
78                         }
79
80                         DI::baseUrl()->redirect('admin/addons/' . $addon);
81                 }
82
83                 // display addon details
84                 if (Addon::isEnabled($addon)) {
85                         $status = 'on';
86                         $action = DI::l10n()->t('Disable');
87                 } else {
88                         $status = 'off';
89                         $action = DI::l10n()->t('Enable');
90                 }
91
92                 $readme = null;
93                 if (is_file("addon/$addon/README.md")) {
94                         $readme = Markdown::convert(file_get_contents("addon/$addon/README.md"), false);
95                 } elseif (is_file("addon/$addon/README")) {
96                         $readme = '<pre>' . file_get_contents("addon/$addon/README") . '</pre>';
97                 }
98
99                 $admin_form = '';
100                 if (array_key_exists($addon, $addons_admin)) {
101                         require_once "addon/$addon/$addon.php";
102                         $func = $addon . '_addon_admin';
103                         $func($a, $admin_form);
104                 }
105
106                 $t = Renderer::getMarkupTemplate('admin/addons/details.tpl');
107
108                 return Renderer::replaceMacros($t, [
109                         '$title' => DI::l10n()->t('Administration'),
110                         '$page' => DI::l10n()->t('Addons'),
111                         '$toggle' => DI::l10n()->t('Toggle'),
112                         '$settings' => DI::l10n()->t('Settings'),
113                         '$baseurl' => DI::baseUrl()->get(true),
114
115                         '$addon' => $addon,
116                         '$status' => $status,
117                         '$action' => $action,
118                         '$info' => Addon::getInfo($addon),
119                         '$str_author' => DI::l10n()->t('Author: '),
120                         '$str_maintainer' => DI::l10n()->t('Maintainer: '),
121
122                         '$admin_form' => $admin_form,
123                         '$function' => 'addons',
124                         '$screenshot' => '',
125                         '$readme' => $readme,
126
127                         '$form_security_token' => self::getFormSecurityToken('admin_addons'),
128                 ]);
129         }
130 }