blessing-skin-server/app/Providers/PluginServiceProvider.php

109 lines
3.3 KiB
PHP
Raw Normal View History

2016-10-17 12:20:55 +08:00
<?php
namespace App\Providers;
use Event;
use App\Events;
2016-10-24 22:32:07 +08:00
use Illuminate\Support\Str;
use App\Services\PluginManager;
2016-10-17 12:20:55 +08:00
use Illuminate\Support\ServiceProvider;
class PluginServiceProvider extends ServiceProvider
{
/**
* Map of event class names to callback names.
*
* @var array
*/
protected $eventCallbackMap = [
Events\PluginWasEnabled::class => 'enabled',
Events\PluginWasDeleted::class => 'deleted',
Events\PluginWasDisabled::class => 'disabled'
];
2016-10-17 12:20:55 +08:00
/**
* Bootstrap any application services.
*
* @return void
*/
2016-10-24 22:32:07 +08:00
public function boot(PluginManager $plugins)
2016-10-17 12:20:55 +08:00
{
// store paths of class files of plugins
$src_paths = [];
$loader = $this->app->make('translation.loader');
// make view instead of view.finder since the finder is defined as not a singleton
$finder = $this->app->make('view');
2016-10-17 12:20:55 +08:00
foreach ($plugins->getPlugins() as $plugin) {
if ($plugin->isEnabled()) {
$src_paths[$plugin->getNameSpace()] = $plugin->getPath()."/src";
// add paths of views
$finder->addNamespace($plugin->getNameSpace(), $plugin->getPath()."/views");
}
// always add paths of translation files for namespace hints
$loader->addNamespace($plugin->getNameSpace(), $plugin->getPath()."/lang");
2016-10-24 22:32:07 +08:00
}
$this->registerPluginCallbackListener();
$this->registerClassAutoloader($src_paths);
2016-10-24 22:32:07 +08:00
$bootstrappers = $plugins->getEnabledBootstrappers();
2016-10-17 12:20:55 +08:00
foreach ($bootstrappers as $file) {
$bootstrapper = require $file;
// call closure using service container
2016-10-17 12:20:55 +08:00
$this->app->call($bootstrapper);
}
}
protected function registerPluginCallbackListener()
{
Event::listen(array_keys($this->eventCallbackMap), function ($event) {
// call callback functions of plugin
if (file_exists($filename = $event->plugin->getPath()."/callbacks.php")) {
$callbacks = require $filename;
$callback = array_get($callbacks, $this->eventCallbackMap[get_class($event)]);
return $callback ? call_user_func($callback, $event->plugin) : null;
}
});
}
2016-10-24 22:32:07 +08:00
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->singleton('plugins', PluginManager::class);
}
/**
* Register class autoloader for plugins.
*
* @return void
*/
protected function registerClassAutoloader($paths)
{
spl_autoload_register(function ($class) use ($paths) {
// traverse in registered plugin paths
foreach ((array) array_keys($paths) as $namespace) {
if ($namespace != '' && mb_strpos($class, $namespace) === 0) {
// parse real file path
$path = $paths[$namespace].Str::replaceFirst($namespace, '', $class).".php";
$path = str_replace('\\', '/', $path);
if (file_exists($path)) {
// include class file if it exists
include $path;
}
}
}
});
}
2016-10-17 12:20:55 +08:00
}