2020-03-20 22:10:01 +00:00
|
|
|
<?php
|
|
|
|
|
2020-05-20 16:53:53 +00:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2020-03-21 20:18:05 +00:00
|
|
|
|
|
|
|
/**
|
2020-03-28 14:39:48 +00:00
|
|
|
* Module and plugin loader code, one of the main features of GNU social
|
2020-03-21 20:18:05 +00:00
|
|
|
*
|
|
|
|
* Loads plugins from `plugins/enabled`, instances them
|
|
|
|
* and hooks its events
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
2020-03-28 14:39:48 +00:00
|
|
|
* @category Modules
|
2020-03-21 20:18:05 +00:00
|
|
|
*
|
|
|
|
* @author Hugo Sales <hugo@fc.up.pt>
|
|
|
|
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2020-05-11 18:15:08 +00:00
|
|
|
namespace App\Core;
|
2020-03-20 22:10:01 +00:00
|
|
|
|
|
|
|
use Functional as F;
|
2020-05-11 18:15:08 +00:00
|
|
|
use GSEvent as Event;
|
2020-03-20 22:10:01 +00:00
|
|
|
|
2020-03-28 14:39:48 +00:00
|
|
|
abstract class ModulesManager
|
2020-03-20 22:10:01 +00:00
|
|
|
{
|
2020-03-28 14:39:48 +00:00
|
|
|
public static array $modules = [];
|
2020-03-20 22:10:01 +00:00
|
|
|
|
2020-03-28 14:39:48 +00:00
|
|
|
public static function loadModules()
|
2020-03-20 22:10:01 +00:00
|
|
|
{
|
2020-03-28 14:39:48 +00:00
|
|
|
$plugins_paths = glob(INSTALLDIR . '/plugins/*');
|
2020-03-20 22:10:01 +00:00
|
|
|
|
|
|
|
foreach ($plugins_paths as $plugin_path) {
|
|
|
|
$class_name = basename($plugin_path);
|
|
|
|
$qualified = 'Plugin\\' . $class_name . '\\' . $class_name;
|
|
|
|
|
|
|
|
require_once $plugin_path . '/' . $class_name . '.php';
|
2020-03-28 14:39:48 +00:00
|
|
|
$class = new $qualified;
|
|
|
|
self::$modules[] = $class;
|
2020-03-20 22:10:01 +00:00
|
|
|
|
|
|
|
// Register event handlers
|
|
|
|
$methods = get_class_methods($class);
|
2020-05-11 18:15:08 +00:00
|
|
|
$events = F\select($methods, F\partial_right('App\Util\Formatting::startsWith', 'on'));
|
2020-03-20 22:10:01 +00:00
|
|
|
F\map($events,
|
2020-05-11 17:39:12 +00:00
|
|
|
function (string $m) use ($class) {
|
|
|
|
Event::addHandler(substr($m, 2), [$class, $m]);
|
|
|
|
});
|
2020-03-20 22:10:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|