]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Addon.php
Merge remote-tracking branch 'upstream/develop' into user-defined-channels
[friendica.git] / src / Core / Addon.php
index 7b3c86a656c923c079caffa5175abc89993dd4f1..06f6a129675985e1d2feb433fa8292ac041f0e31 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -21,7 +21,6 @@
 
 namespace Friendica\Core;
 
-use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Util\Strings;
@@ -52,7 +51,7 @@ class Addon
         * @return array
         * @throws \Exception
         */
-       public static function getAvailableList()
+       public static function getAvailableList(): array
        {
                $addons = [];
                $files = glob('addon/*/');
@@ -82,18 +81,23 @@ class Addon
         * @return array
         * @throws \Exception
         */
-       public static function getAdminList()
+       public static function getAdminList(): array
        {
                $addons_admin = [];
-               $addonsAdminStmt = DBA::select('addon', ['name'], ['plugin_admin' => 1], ['order' => ['name']]);
-               while ($addon = DBA::fetch($addonsAdminStmt)) {
-                       $addons_admin[$addon['name']] = [
-                               'url' => 'admin/addons/' . $addon['name'],
-                               'name' => $addon['name'],
+               $addons = array_filter(DI::config()->get('addons') ?? []);
+
+               ksort($addons);
+               foreach ($addons as $name => $data) {
+                       if (empty($data['admin'])) {
+                               continue;
+                       }
+
+                       $addons_admin[$name] = [
+                               'url' => 'admin/addons/' . $name,
+                               'name' => $name,
                                'class' => 'addon'
                        ];
                }
-               DBA::close($addonsAdminStmt);
 
                return $addons_admin;
        }
@@ -113,8 +117,7 @@ class Addon
         */
        public static function loadAddons()
        {
-               $installed_addons = DBA::selectToArray('addon', ['name'], ['installed' => true]);
-               self::$addons = array_column($installed_addons, 'name');
+               self::$addons = array_keys(array_filter(DI::config()->get('addons') ?? []));
        }
 
        /**
@@ -124,12 +127,12 @@ class Addon
         * @return void
         * @throws \Exception
         */
-       public static function uninstall($addon)
+       public static function uninstall(string $addon)
        {
                $addon = Strings::sanitizeFilePathItem($addon);
 
-               Logger::notice("Addon {addon}: {action}", ['action' => 'uninstall', 'addon' => $addon]);
-               DBA::delete('addon', ['name' => $addon]);
+               Logger::debug("Addon {addon}: {action}", ['action' => 'uninstall', 'addon' => $addon]);
+               DI::config()->delete('addons', $addon);
 
                @include_once('addon/' . $addon . '/' . $addon . '.php');
                if (function_exists($addon . '_uninstall')) {
@@ -149,7 +152,7 @@ class Addon
         * @return bool
         * @throws \Exception
         */
-       public static function install($addon)
+       public static function install(string $addon): bool
        {
                $addon = Strings::sanitizeFilePathItem($addon);
 
@@ -160,7 +163,7 @@ class Addon
                        return false;
                }
 
-               Logger::notice("Addon {addon}: {action}", ['action' => 'install', 'addon' => $addon]);
+               Logger::debug("Addon {addon}: {action}", ['action' => 'install', 'addon' => $addon]);
                $t = @filemtime($addon_file_path);
                @include_once($addon_file_path);
                if (function_exists($addon . '_install')) {
@@ -168,12 +171,9 @@ class Addon
                        $func(DI::app());
                }
 
-               DBA::insert('addon', [
-                       'name' => $addon,
-                       'installed' => true,
-                       'timestamp' => $t,
-                       'plugin_admin' => function_exists($addon . '_addon_admin'),
-                       'hidden' => file_exists('addon/' . $addon . '/.hidden')
+               DI::config()->set('addons', $addon, [
+                       'last_update' => $t,
+                       'admin' => function_exists($addon . '_addon_admin'),
                ]);
 
                if (!self::isEnabled($addon)) {
@@ -185,23 +185,27 @@ class Addon
 
        /**
         * reload all updated addons
+        *
+        * @return void
+        * @throws \Exception
+        *
         */
        public static function reload()
        {
-               $addons = DBA::selectToArray('addon', [], ['installed' => true]);
+               $addons = array_filter(DI::config()->get('addons') ?? []);
 
-               foreach ($addons as $addon) {
-                       $addonname = Strings::sanitizeFilePathItem(trim($addon['name']));
+               foreach ($addons as $name => $data) {
+                       $addonname = Strings::sanitizeFilePathItem(trim($name));
                        $addon_file_path = 'addon/' . $addonname . '/' . $addonname . '.php';
-                       if (file_exists($addon_file_path) && $addon['timestamp'] == filemtime($addon_file_path)) {
+                       if (file_exists($addon_file_path) && $data['last_update'] == filemtime($addon_file_path)) {
                                // Addon unmodified, skipping
                                continue;
                        }
 
-                       Logger::notice("Addon {addon}: {action}", ['action' => 'reload', 'addon' => $addon['name']]);
+                       Logger::debug("Addon {addon}: {action}", ['action' => 'reload', 'addon' => $name]);
 
-                       self::uninstall($addon['name']);
-                       self::install($addon['name']);
+                       self::uninstall($name);
+                       self::install($name);
                }
        }
 
@@ -222,7 +226,7 @@ class Addon
         * @return array with the addon information
         * @throws \Exception
         */
-       public static function getInfo($addon)
+       public static function getInfo(string $addon): array
        {
                $addon = Strings::sanitizeFilePathItem($addon);
 
@@ -287,7 +291,7 @@ class Addon
         * @param string $addon
         * @return boolean
         */
-       public static function isEnabled($addon)
+       public static function isEnabled(string $addon): bool
        {
                return in_array($addon, self::$addons);
        }
@@ -297,7 +301,7 @@ class Addon
         *
         * @return array
         */
-       public static function getEnabledList()
+       public static function getEnabledList(): array
        {
                return self::$addons;
        }
@@ -308,63 +312,15 @@ class Addon
         * @return array
         * @throws \Exception
         */
-       public static function getVisibleList()
+       public static function getVisibleList(): array
        {
                $visible_addons = [];
-               $stmt = DBA::select('addon', ['name'], ['hidden' => false, 'installed' => true]);
-               if (DBA::isResult($stmt)) {
-                       foreach (DBA::toArray($stmt) as $addon) {
-                               $visible_addons[] = $addon['name'];
-                       }
+               $addons = array_filter(DI::config()->get('addons') ?? []);
+
+               foreach ($addons as $name => $data) {
+                       $visible_addons[] = $name;
                }
 
                return $visible_addons;
        }
-
-       /**
-        * Shim of Hook::register left for backward compatibility purpose.
-        *
-        * @see        Hook::register
-        * @deprecated since version 2018.12
-        * @param string $hook     the name of the hook
-        * @param string $file     the name of the file that hooks into
-        * @param string $function the name of the function that the hook will call
-        * @param int    $priority A priority (defaults to 0)
-        * @return mixed|bool
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        */
-       public static function registerHook($hook, $file, $function, $priority = 0)
-       {
-               return Hook::register($hook, $file, $function, $priority);
-       }
-
-       /**
-        * Shim of Hook::unregister left for backward compatibility purpose.
-        *
-        * @see        Hook::unregister
-        * @deprecated since version 2018.12
-        * @param string $hook     the name of the hook
-        * @param string $file     the name of the file that hooks into
-        * @param string $function the name of the function that the hook called
-        * @return boolean
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        */
-       public static function unregisterHook($hook, $file, $function)
-       {
-               return Hook::unregister($hook, $file, $function);
-       }
-
-       /**
-        * Shim of Hook::callAll left for backward-compatibility purpose.
-        *
-        * @see        Hook::callAll
-        * @deprecated since version 2018.12
-        * @param string        $name of the hook to call
-        * @param string|array &$data to transmit to the callback handler
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        */
-       public static function callHooks($name, &$data = null)
-       {
-               Hook::callAll($name, $data);
-       }
 }