2020-08-03 21:51:45 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-08-03 21:51:45 +01: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/>.
|
|
|
|
// }}}
|
|
|
|
|
2021-04-15 00:30:35 +01:00
|
|
|
namespace App\Core\Modules;
|
2020-08-03 21:51:45 +01:00
|
|
|
|
2020-09-21 20:09:11 +01:00
|
|
|
use App\Util\Common;
|
2020-09-10 23:28:11 +01:00
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* Base class for all GNU social modules (plugins and components)
|
|
|
|
*/
|
|
|
|
abstract class Module
|
2020-08-03 21:51:45 +01:00
|
|
|
{
|
2021-10-10 09:26:18 +01:00
|
|
|
public const MODULE_TYPE = 'module';
|
2021-09-06 19:49:03 +01:00
|
|
|
|
2021-08-16 17:08:29 +01:00
|
|
|
/**
|
2021-08-21 22:30:24 +01:00
|
|
|
* Load values from the config and set them as properties on each module object
|
2021-08-16 17:08:29 +01:00
|
|
|
*/
|
2021-08-21 22:30:24 +01:00
|
|
|
public function loadConfig()
|
2021-08-12 00:24:25 +01:00
|
|
|
{
|
|
|
|
// Load Module settings
|
2021-08-21 22:30:24 +01:00
|
|
|
foreach (Common::config(static::MODULE_TYPE . 's') as $module => $values) {
|
|
|
|
if ($module == $this->name()) {
|
|
|
|
foreach ($values as $property => $value) {
|
|
|
|
$this->{$property} = $value;
|
|
|
|
}
|
|
|
|
}
|
2021-08-12 00:24:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-21 22:30:24 +01:00
|
|
|
public static function name()
|
2021-08-21 22:30:24 +01:00
|
|
|
{
|
2021-08-21 22:30:24 +01:00
|
|
|
return mb_strtolower(explode('\\', static::class)[2]);
|
2021-08-21 22:30:24 +01:00
|
|
|
}
|
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* Serialize the class to store in the cache
|
|
|
|
*/
|
2020-08-03 21:51:45 +01:00
|
|
|
public static function __set_state($state)
|
|
|
|
{
|
2021-09-06 19:49:03 +01:00
|
|
|
$obj = new (static::class);
|
2020-08-03 21:51:45 +01:00
|
|
|
foreach ($state as $k => $v) {
|
|
|
|
$obj->{$k} = $v;
|
|
|
|
}
|
|
|
|
return $obj;
|
|
|
|
}
|
2021-08-22 13:33:27 +01:00
|
|
|
|
|
|
|
// ------- Module initialize and cleanup ----------
|
|
|
|
|
|
|
|
private function defer(string $cycle)
|
|
|
|
{
|
|
|
|
$type = ucfirst(static::MODULE_TYPE);
|
|
|
|
if (method_exists($this, $method = "on{$cycle}{$type}")) {
|
|
|
|
$this->{$method}();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can't use __call or it won't be found by our event function finder
|
|
|
|
public function onInitializeModule()
|
|
|
|
{
|
|
|
|
$this->defer('Initialize');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onCleanupModule()
|
|
|
|
{
|
|
|
|
$this->defer('Cleanup');
|
|
|
|
}
|
2020-08-03 21:51:45 +01:00
|
|
|
}
|