Files
nexusphp/nexus/Plugin/Plugin.php
2024-12-25 22:30:55 +08:00

94 lines
2.5 KiB
PHP

<?php
namespace Nexus\Plugin;
class Plugin
{
private static mixed $providers = null;
private static array $plugins = [];
// public function __construct()
// {
// $this->start();
// }
public function start(): void
{
$this->loadProviders();
$this->bootPlugins();
}
public static function enabled($name): bool
{
return !empty(self::$providers[$name]['providers']);
}
public static function listEnabled(): array
{
$result = [];
//plugins are more exactly
foreach (self::$plugins as $id => $plugin) {
$result[$id] = 1;
}
return $result;
}
public static function getById($id) :BasePlugin|null
{
return self::$plugins[$id] ?? null;
}
public function getMainClass($name)
{
if (isset(self::$providers[$name]['providers'][0])) {
$className = self::$providers[$name]['providers'][0];
$className = str_replace('ServiceProvider', 'Repository', $className);
if (class_exists($className)) {
return new $className;
}
}
}
private function bootPlugins()
{
foreach (self::$providers as $providers) {
if (!isset($providers['providers'])) {
continue;
}
$provider = $providers['providers'][0];
$parts = explode('\\', $provider);
if ($parts[0] == 'NexusPlugin') {
$className = str_replace('ServiceProvider', 'Repository', $provider);
if (class_exists($className)) {
$constantName = "$className::COMPATIBLE_VERSION";
if (defined($constantName) && version_compare(VERSION_NUMBER, constant($constantName), '<')) {
continue;
}
$plugin = new $className;
$pluginIdName = "$className::ID";
if (defined($pluginIdName)) {
self::$plugins[constant($pluginIdName)] = $plugin;
}
call_user_func([$plugin, 'boot']);
}
}
}
}
private function loadProviders()
{
if (is_null(self::$providers)) {
$path = ROOT_PATH . 'bootstrap/cache/packages.php';
if (file_exists($path)) {
self::$providers = require $path;
} else {
self::$providers = [];
}
}
}
}