2018-02-06 20:35:10 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-02-06 20:35:10 +01:00
|
|
|
*/
|
2019-04-26 15:11:01 +02:00
|
|
|
|
2018-02-06 20:35:10 +01:00
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2021-10-01 15:25:00 +02:00
|
|
|
use Friendica\Model\Contact;
|
2019-04-01 03:53:08 +02:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-06 20:35:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Some functions to handle addons
|
|
|
|
*/
|
2019-12-15 23:28:01 +01:00
|
|
|
class Addon
|
2018-02-06 20:35:10 +01:00
|
|
|
{
|
2019-02-04 09:33:55 +01:00
|
|
|
/**
|
|
|
|
* The addon sub-directory
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-02-05 23:36:01 +01:00
|
|
|
const DIRECTORY = 'addon';
|
2019-02-04 09:33:55 +01:00
|
|
|
|
2018-10-06 01:13:29 +02:00
|
|
|
/**
|
2018-10-21 07:15:02 +02:00
|
|
|
* List of the names of enabled addons
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $addons = [];
|
|
|
|
|
2019-04-28 04:19:54 +02:00
|
|
|
/**
|
|
|
|
* Returns the list of available addons with their current status and info.
|
|
|
|
* This list is made from scanning the addon/ folder.
|
|
|
|
* Unsupported addons are excluded unless they already are enabled or system.show_unsupported_addon is set.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2023-01-07 20:49:29 +01:00
|
|
|
public static function getAvailableList(): array
|
2019-04-21 18:20:04 +02:00
|
|
|
{
|
|
|
|
$addons = [];
|
|
|
|
$files = glob('addon/*/');
|
|
|
|
if (is_array($files)) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if (is_dir($file)) {
|
|
|
|
list($tmp, $addon) = array_map('trim', explode('/', $file));
|
|
|
|
$info = self::getInfo($addon);
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get('system', 'show_unsupported_addons')
|
2019-04-21 18:20:04 +02:00
|
|
|
|| strtolower($info['status']) != 'unsupported'
|
|
|
|
|| self::isEnabled($addon)
|
|
|
|
) {
|
|
|
|
$addons[] = [$addon, (self::isEnabled($addon) ? 'on' : 'off'), $info];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $addons;
|
|
|
|
}
|
|
|
|
|
2019-04-28 04:19:54 +02:00
|
|
|
/**
|
|
|
|
* Returns a list of addons that can be configured at the node level.
|
|
|
|
* The list is formatted for display in the admin panel aside.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2023-01-07 20:49:29 +01:00
|
|
|
public static function getAdminList(): array
|
2019-04-28 04:19:54 +02:00
|
|
|
{
|
|
|
|
$addons_admin = [];
|
2023-01-08 02:33:50 +01:00
|
|
|
$addons = array_filter(DI::config()->get('addons') ?? []);
|
2023-01-07 19:52:43 +01:00
|
|
|
|
2023-01-04 01:05:02 +01:00
|
|
|
ksort($addons);
|
2023-01-03 20:24:48 +01:00
|
|
|
foreach ($addons as $name => $data) {
|
|
|
|
if (empty($data['admin'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$addons_admin[$name] = [
|
|
|
|
'url' => 'admin/addons/' . $name,
|
|
|
|
'name' => $name,
|
2019-04-28 04:19:54 +02:00
|
|
|
'class' => 'addon'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $addons_admin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 07:15:02 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Synchronize addons:
|
2018-10-06 01:13:29 +02:00
|
|
|
*
|
|
|
|
* system.addon contains a comma-separated list of names
|
|
|
|
* of addons which are used on this system.
|
|
|
|
* Go through the database list of already installed addons, and if we have
|
|
|
|
* an entry, but it isn't in the config list, call the uninstall procedure
|
|
|
|
* and mark it uninstalled in the database (for now we'll remove it).
|
|
|
|
* Then go through the config list and if we have a addon that isn't installed,
|
|
|
|
* call the install procedure and add it to the database.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-21 07:15:02 +02:00
|
|
|
public static function loadAddons()
|
2018-10-06 01:13:29 +02:00
|
|
|
{
|
2023-01-08 02:33:50 +01:00
|
|
|
self::$addons = array_keys(array_filter(DI::config()->get('addons') ?? []));
|
2018-10-06 01:13:29 +02:00
|
|
|
}
|
|
|
|
|
2018-02-06 20:35:10 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* uninstalls an addon.
|
2018-02-06 20:35:10 +01:00
|
|
|
*
|
|
|
|
* @param string $addon name of the addon
|
2019-01-06 22:06:53 +01:00
|
|
|
* @return void
|
|
|
|
* @throws \Exception
|
2018-02-06 20:35:10 +01:00
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function uninstall(string $addon)
|
2018-02-06 20:35:10 +01:00
|
|
|
{
|
2019-04-01 03:53:08 +02:00
|
|
|
$addon = Strings::sanitizeFilePathItem($addon);
|
|
|
|
|
2022-08-30 21:45:30 +02:00
|
|
|
Logger::debug("Addon {addon}: {action}", ['action' => 'uninstall', 'addon' => $addon]);
|
2023-01-03 20:24:48 +01:00
|
|
|
DI::config()->delete('addons', $addon);
|
2018-02-06 20:35:10 +01:00
|
|
|
|
|
|
|
@include_once('addon/' . $addon . '/' . $addon . '.php');
|
|
|
|
if (function_exists($addon . '_uninstall')) {
|
|
|
|
$func = $addon . '_uninstall';
|
|
|
|
$func();
|
|
|
|
}
|
2018-10-21 07:15:02 +02:00
|
|
|
|
2020-07-27 07:33:24 +02:00
|
|
|
Hook::delete(['file' => 'addon/' . $addon . '/' . $addon . '.php']);
|
2019-05-08 06:46:13 +02:00
|
|
|
|
2018-10-25 02:44:05 +02:00
|
|
|
unset(self::$addons[array_search($addon, self::$addons)]);
|
2018-02-06 20:35:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* installs an addon.
|
2018-02-06 20:35:10 +01:00
|
|
|
*
|
|
|
|
* @param string $addon name of the addon
|
|
|
|
* @return bool
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-02-06 20:35:10 +01:00
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function install(string $addon): bool
|
2018-02-06 20:35:10 +01:00
|
|
|
{
|
2019-04-01 03:53:08 +02:00
|
|
|
$addon = Strings::sanitizeFilePathItem($addon);
|
2018-02-06 20:35:10 +01:00
|
|
|
|
2021-10-09 06:11:08 +02:00
|
|
|
$addon_file_path = 'addon/' . $addon . '/' . $addon . '.php';
|
|
|
|
|
2019-04-01 03:53:08 +02:00
|
|
|
// silently fail if addon was removed of if $addon is funky
|
2021-10-09 06:11:08 +02:00
|
|
|
if (!file_exists($addon_file_path)) {
|
2018-02-06 20:35:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-04-01 03:53:08 +02:00
|
|
|
|
2022-08-30 21:45:30 +02:00
|
|
|
Logger::debug("Addon {addon}: {action}", ['action' => 'install', 'addon' => $addon]);
|
2021-10-09 06:11:08 +02:00
|
|
|
$t = @filemtime($addon_file_path);
|
|
|
|
@include_once($addon_file_path);
|
2018-02-06 20:35:10 +01:00
|
|
|
if (function_exists($addon . '_install')) {
|
|
|
|
$func = $addon . '_install';
|
2019-12-15 22:34:11 +01:00
|
|
|
$func(DI::app());
|
2020-11-22 05:19:03 +01:00
|
|
|
}
|
2018-02-06 20:35:10 +01:00
|
|
|
|
2023-01-04 23:12:41 +01:00
|
|
|
DI::config()->set('addons', $addon, [
|
2023-01-03 20:24:48 +01:00
|
|
|
'last_update' => $t,
|
|
|
|
'admin' => function_exists($addon . '_addon_admin'),
|
2020-11-22 05:19:03 +01:00
|
|
|
]);
|
2019-04-01 03:53:08 +02:00
|
|
|
|
2020-11-22 05:19:03 +01:00
|
|
|
if (!self::isEnabled($addon)) {
|
|
|
|
self::$addons[] = $addon;
|
2018-02-06 20:35:10 +01:00
|
|
|
}
|
2020-11-22 05:19:03 +01:00
|
|
|
|
|
|
|
return true;
|
2018-02-06 20:35:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* reload all updated addons
|
2022-06-20 02:45:53 +02:00
|
|
|
*
|
|
|
|
* @return void
|
2023-01-07 20:49:29 +01:00
|
|
|
* @throws \Exception
|
|
|
|
*
|
2018-02-06 20:35:10 +01:00
|
|
|
*/
|
|
|
|
public static function reload()
|
|
|
|
{
|
2023-01-08 02:33:50 +01:00
|
|
|
$addons = array_filter(DI::config()->get('addons') ?? []);
|
2023-01-07 19:54:59 +01:00
|
|
|
|
2023-01-03 20:24:48 +01:00
|
|
|
foreach ($addons as $name => $data) {
|
|
|
|
$addonname = Strings::sanitizeFilePathItem(trim($name));
|
2021-10-09 06:11:08 +02:00
|
|
|
$addon_file_path = 'addon/' . $addonname . '/' . $addonname . '.php';
|
2023-01-03 20:24:48 +01:00
|
|
|
if (file_exists($addon_file_path) && $data['last_update'] == filemtime($addon_file_path)) {
|
2021-10-09 06:11:08 +02:00
|
|
|
// Addon unmodified, skipping
|
2020-03-10 14:13:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
2020-03-10 00:28:37 +01:00
|
|
|
|
2023-01-03 20:24:48 +01:00
|
|
|
Logger::debug("Addon {addon}: {action}", ['action' => 'reload', 'addon' => $name]);
|
2020-03-10 00:28:37 +01:00
|
|
|
|
2023-01-03 20:24:48 +01:00
|
|
|
self::uninstall($name);
|
|
|
|
self::install($name);
|
2018-02-06 20:35:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Parse addon comment in search of addon infos.
|
2018-02-06 20:35:10 +01:00
|
|
|
*
|
|
|
|
* like
|
|
|
|
* \code
|
|
|
|
* * Name: addon
|
|
|
|
* * Description: An addon which plugs in
|
|
|
|
* . * Version: 1.2.3
|
|
|
|
* * Author: John <profile url>
|
|
|
|
* * Author: Jane <email>
|
|
|
|
* * Maintainer: Jess <email>
|
|
|
|
* *
|
|
|
|
* *\endcode
|
|
|
|
* @param string $addon the name of the addon
|
|
|
|
* @return array with the addon information
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-02-06 20:35:10 +01:00
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function getInfo(string $addon): array
|
2018-02-06 20:35:10 +01:00
|
|
|
{
|
2019-04-01 03:53:08 +02:00
|
|
|
$addon = Strings::sanitizeFilePathItem($addon);
|
|
|
|
|
2018-02-06 20:35:10 +01:00
|
|
|
$info = [
|
|
|
|
'name' => $addon,
|
|
|
|
'description' => "",
|
|
|
|
'author' => [],
|
|
|
|
'maintainer' => [],
|
|
|
|
'version' => "",
|
|
|
|
'status' => ""
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!is_file("addon/$addon/$addon.php")) {
|
|
|
|
return $info;
|
|
|
|
}
|
|
|
|
|
2021-07-27 06:57:29 +02:00
|
|
|
DI::profiler()->startRecording('file');
|
2018-02-06 20:35:10 +01:00
|
|
|
$f = file_get_contents("addon/$addon/$addon.php");
|
2021-07-27 06:57:29 +02:00
|
|
|
DI::profiler()->stopRecording();
|
2018-02-06 20:35:10 +01:00
|
|
|
|
|
|
|
$r = preg_match("|/\*.*\*/|msU", $f, $m);
|
|
|
|
|
|
|
|
if ($r) {
|
|
|
|
$ll = explode("\n", $m[0]);
|
|
|
|
foreach ($ll as $l) {
|
|
|
|
$l = trim($l, "\t\n\r */");
|
|
|
|
if ($l != "") {
|
2018-07-30 06:41:20 +02:00
|
|
|
$addon_info = array_map("trim", explode(":", $l, 2));
|
|
|
|
if (count($addon_info) < 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
list($type, $v) = $addon_info;
|
2018-02-06 20:35:10 +01:00
|
|
|
$type = strtolower($type);
|
|
|
|
if ($type == "author" || $type == "maintainer") {
|
|
|
|
$r = preg_match("|([^<]+)<([^>]+)>|", $v, $m);
|
|
|
|
if ($r) {
|
2021-10-01 15:25:00 +02:00
|
|
|
if (!empty($m[2]) && empty(parse_url($m[2], PHP_URL_SCHEME))) {
|
|
|
|
$contact = Contact::getByURL($m[2], false);
|
|
|
|
if (!empty($contact['url'])) {
|
|
|
|
$m[2] = $contact['url'];
|
|
|
|
}
|
|
|
|
}
|
2018-02-06 20:35:10 +01:00
|
|
|
$info[$type][] = ['name' => $m[1], 'link' => $m[2]];
|
|
|
|
} else {
|
|
|
|
$info[$type][] = ['name' => $v];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (array_key_exists($type, $info)) {
|
|
|
|
$info[$type] = $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $info;
|
|
|
|
}
|
2018-10-21 07:15:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the provided addon is enabled
|
|
|
|
*
|
|
|
|
* @param string $addon
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function isEnabled(string $addon): bool
|
2018-10-21 07:15:02 +02:00
|
|
|
{
|
|
|
|
return in_array($addon, self::$addons);
|
|
|
|
}
|
|
|
|
|
2018-10-21 13:53:16 +02:00
|
|
|
/**
|
|
|
|
* Returns a list of the enabled addon names
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function getEnabledList(): array
|
2018-10-21 07:15:02 +02:00
|
|
|
{
|
|
|
|
return self::$addons;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the list of non-hidden enabled addon names
|
|
|
|
*
|
|
|
|
* @return array
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-10-21 07:15:02 +02:00
|
|
|
*/
|
2022-06-20 02:45:53 +02:00
|
|
|
public static function getVisibleList(): array
|
2018-10-21 07:15:02 +02:00
|
|
|
{
|
|
|
|
$visible_addons = [];
|
2023-01-08 02:33:50 +01:00
|
|
|
$addons = array_filter(DI::config()->get('addons') ?? []);
|
2023-01-07 19:54:59 +01:00
|
|
|
|
2023-01-03 20:24:48 +01:00
|
|
|
foreach ($addons as $name => $data) {
|
|
|
|
$visible_addons[] = $name;
|
2018-10-21 07:15:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $visible_addons;
|
|
|
|
}
|
2018-02-06 20:35:10 +01:00
|
|
|
}
|