mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-14 19:40:53 +08:00
37 lines
961 B
PHP
37 lines
961 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Services\Plugin\PluginManager;
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* Middleware to initialize all enabled plugins at the beginning of a request.
|
|
* It ensures that all plugin hooks, routes, and services are ready.
|
|
*/
|
|
class InitializePlugins
|
|
{
|
|
protected PluginManager $pluginManager;
|
|
|
|
public function __construct(PluginManager $pluginManager)
|
|
{
|
|
$this->pluginManager = $pluginManager;
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
// This single method call handles loading and booting all enabled plugins.
|
|
// It's safe to call multiple times, as it will only run once per request.
|
|
$this->pluginManager->initializeEnabledPlugins();
|
|
|
|
return $next($request);
|
|
}
|
|
} |