]> git.mxchange.org Git - friendica.git/blob - src/Core/Addon.php
Merge pull request #12578 from MrPetovan/bug/warnings
[friendica.git] / src / Core / Addon.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\Core;
23
24 use Friendica\Database\DBA;
25 use Friendica\DI;
26 use Friendica\Model\Contact;
27 use Friendica\Util\Strings;
28
29 /**
30  * Some functions to handle addons
31  */
32 class Addon
33 {
34         /**
35          * The addon sub-directory
36          * @var string
37          */
38         const DIRECTORY = 'addon';
39
40         /**
41          * List of the names of enabled addons
42          *
43          * @var array
44          */
45         private static $addons = [];
46
47         /**
48          * Returns the list of available addons with their current status and info.
49          * This list is made from scanning the addon/ folder.
50          * Unsupported addons are excluded unless they already are enabled or system.show_unsupported_addon is set.
51          *
52          * @return array
53          * @throws \Exception
54          */
55         public static function getAvailableList()
56         {
57                 $addons = [];
58                 $files = glob('addon/*/');
59                 if (is_array($files)) {
60                         foreach ($files as $file) {
61                                 if (is_dir($file)) {
62                                         list($tmp, $addon) = array_map('trim', explode('/', $file));
63                                         $info = self::getInfo($addon);
64
65                                         if (DI::config()->get('system', 'show_unsupported_addons')
66                                                 || strtolower($info['status']) != 'unsupported'
67                                                 || self::isEnabled($addon)
68                                         ) {
69                                                 $addons[] = [$addon, (self::isEnabled($addon) ? 'on' : 'off'), $info];
70                                         }
71                                 }
72                         }
73                 }
74
75                 return $addons;
76         }
77
78         /**
79          * Returns a list of addons that can be configured at the node level.
80          * The list is formatted for display in the admin panel aside.
81          *
82          * @return array
83          * @throws \Exception
84          */
85         public static function getAdminList()
86         {
87                 $addons_admin = [];
88                 $addonsAdminStmt = DBA::select('addon', ['name'], ['plugin_admin' => 1], ['order' => ['name']]);
89                 while ($addon = DBA::fetch($addonsAdminStmt)) {
90                         $addons_admin[$addon['name']] = [
91                                 'url' => 'admin/addons/' . $addon['name'],
92                                 'name' => $addon['name'],
93                                 'class' => 'addon'
94                         ];
95                 }
96                 DBA::close($addonsAdminStmt);
97
98                 return $addons_admin;
99         }
100
101
102         /**
103          * Synchronize addons:
104          *
105          * system.addon contains a comma-separated list of names
106          * of addons which are used on this system.
107          * Go through the database list of already installed addons, and if we have
108          * an entry, but it isn't in the config list, call the uninstall procedure
109          * and mark it uninstalled in the database (for now we'll remove it).
110          * Then go through the config list and if we have a addon that isn't installed,
111          * call the install procedure and add it to the database.
112          *
113          */
114         public static function loadAddons()
115         {
116                 $installed_addons = DBA::selectToArray('addon', ['name'], ['installed' => true]);
117                 self::$addons = array_column($installed_addons, 'name');
118         }
119
120         /**
121          * uninstalls an addon.
122          *
123          * @param string $addon name of the addon
124          * @return void
125          * @throws \Exception
126          */
127         public static function uninstall(string $addon)
128         {
129                 $addon = Strings::sanitizeFilePathItem($addon);
130
131                 Logger::debug("Addon {addon}: {action}", ['action' => 'uninstall', 'addon' => $addon]);
132                 DBA::delete('addon', ['name' => $addon]);
133
134                 @include_once('addon/' . $addon . '/' . $addon . '.php');
135                 if (function_exists($addon . '_uninstall')) {
136                         $func = $addon . '_uninstall';
137                         $func();
138                 }
139
140                 Hook::delete(['file' => 'addon/' . $addon . '/' . $addon . '.php']);
141
142                 unset(self::$addons[array_search($addon, self::$addons)]);
143         }
144
145         /**
146          * installs an addon.
147          *
148          * @param string $addon name of the addon
149          * @return bool
150          * @throws \Exception
151          */
152         public static function install(string $addon): bool
153         {
154                 $addon = Strings::sanitizeFilePathItem($addon);
155
156                 $addon_file_path = 'addon/' . $addon . '/' . $addon . '.php';
157
158                 // silently fail if addon was removed of if $addon is funky
159                 if (!file_exists($addon_file_path)) {
160                         return false;
161                 }
162
163                 Logger::debug("Addon {addon}: {action}", ['action' => 'install', 'addon' => $addon]);
164                 $t = @filemtime($addon_file_path);
165                 @include_once($addon_file_path);
166                 if (function_exists($addon . '_install')) {
167                         $func = $addon . '_install';
168                         $func(DI::app());
169                 }
170
171                 DBA::insert('addon', [
172                         'name' => $addon,
173                         'installed' => true,
174                         'timestamp' => $t,
175                         'plugin_admin' => function_exists($addon . '_addon_admin'),
176                         'hidden' => file_exists('addon/' . $addon . '/.hidden')
177                 ]);
178
179                 if (!self::isEnabled($addon)) {
180                         self::$addons[] = $addon;
181                 }
182
183                 return true;
184         }
185
186         /**
187          * reload all updated addons
188          *
189          * @return void
190          */
191         public static function reload()
192         {
193                 $addons = DBA::selectToArray('addon', [], ['installed' => true]);
194
195                 foreach ($addons as $addon) {
196                         $addonname = Strings::sanitizeFilePathItem(trim($addon['name']));
197                         $addon_file_path = 'addon/' . $addonname . '/' . $addonname . '.php';
198                         if (file_exists($addon_file_path) && $addon['timestamp'] == filemtime($addon_file_path)) {
199                                 // Addon unmodified, skipping
200                                 continue;
201                         }
202
203                         Logger::debug("Addon {addon}: {action}", ['action' => 'reload', 'addon' => $addon['name']]);
204
205                         self::uninstall($addon['name']);
206                         self::install($addon['name']);
207                 }
208         }
209
210         /**
211          * Parse addon comment in search of addon infos.
212          *
213          * like
214          * \code
215          *   * Name: addon
216          *   * Description: An addon which plugs in
217          * . * Version: 1.2.3
218          *   * Author: John <profile url>
219          *   * Author: Jane <email>
220          *   * Maintainer: Jess <email>
221          *   *
222          *   *\endcode
223          * @param string $addon the name of the addon
224          * @return array with the addon information
225          * @throws \Exception
226          */
227         public static function getInfo(string $addon): array
228         {
229                 $addon = Strings::sanitizeFilePathItem($addon);
230
231                 $info = [
232                         'name' => $addon,
233                         'description' => "",
234                         'author' => [],
235                         'maintainer' => [],
236                         'version' => "",
237                         'status' => ""
238                 ];
239
240                 if (!is_file("addon/$addon/$addon.php")) {
241                         return $info;
242                 }
243
244                 DI::profiler()->startRecording('file');
245                 $f = file_get_contents("addon/$addon/$addon.php");
246                 DI::profiler()->stopRecording();
247
248                 $r = preg_match("|/\*.*\*/|msU", $f, $m);
249
250                 if ($r) {
251                         $ll = explode("\n", $m[0]);
252                         foreach ($ll as $l) {
253                                 $l = trim($l, "\t\n\r */");
254                                 if ($l != "") {
255                                         $addon_info = array_map("trim", explode(":", $l, 2));
256                                         if (count($addon_info) < 2) {
257                                                 continue;
258                                         }
259
260                                         list($type, $v) = $addon_info;
261                                         $type = strtolower($type);
262                                         if ($type == "author" || $type == "maintainer") {
263                                                 $r = preg_match("|([^<]+)<([^>]+)>|", $v, $m);
264                                                 if ($r) {
265                                                         if (!empty($m[2]) && empty(parse_url($m[2], PHP_URL_SCHEME))) {
266                                                                 $contact = Contact::getByURL($m[2], false);
267                                                                 if (!empty($contact['url'])) {
268                                                                         $m[2] = $contact['url'];
269                                                                 }
270                                                         }
271                                                         $info[$type][] = ['name' => $m[1], 'link' => $m[2]];
272                                                 } else {
273                                                         $info[$type][] = ['name' => $v];
274                                                 }
275                                         } else {
276                                                 if (array_key_exists($type, $info)) {
277                                                         $info[$type] = $v;
278                                                 }
279                                         }
280                                 }
281                         }
282                 }
283                 return $info;
284         }
285
286         /**
287          * Checks if the provided addon is enabled
288          *
289          * @param string $addon
290          * @return boolean
291          */
292         public static function isEnabled(string $addon): bool
293         {
294                 return in_array($addon, self::$addons);
295         }
296
297         /**
298          * Returns a list of the enabled addon names
299          *
300          * @return array
301          */
302         public static function getEnabledList(): array
303         {
304                 return self::$addons;
305         }
306
307         /**
308          * Returns the list of non-hidden enabled addon names
309          *
310          * @return array
311          * @throws \Exception
312          */
313         public static function getVisibleList(): array
314         {
315                 $visible_addons = [];
316                 $stmt = DBA::select('addon', ['name'], ['hidden' => false, 'installed' => true]);
317                 if (DBA::isResult($stmt)) {
318                         foreach (DBA::toArray($stmt) as $addon) {
319                                 $visible_addons[] = $addon['name'];
320                         }
321                 }
322
323                 return $visible_addons;
324         }
325 }