blessing-skin-server/app/Services/Plugin.php
2019-08-15 17:21:55 +08:00

97 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Services;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
class Plugin
{
/**
* The full directory of this plugin.
*
* @var string
*/
protected $path;
/**
* package.json of the package.
*
* @var array
*/
protected $manifest;
/**
* Whether the plugin is enabled.
*
* @var bool
*/
protected $enabled = false;
public function __construct(string $path, array $manifest)
{
$this->path = $path;
$this->manifest = $manifest;
}
public function __get(string $name)
{
return $this->getManifestAttr(Str::snake($name, '-'));
}
public function getManifest()
{
return $this->manifest;
}
public function getManifestAttr(string $name, $default = null)
{
return Arr::get($this->manifest, $name, $default);
}
public function assets(string $relativeUri): string
{
$baseUrl = config('plugins.url') ?: url('plugins');
return "$baseUrl/{$this->name}/assets/$relativeUri?v=".$this->version;
}
public function getViewPath(string $filename): string
{
return $this->path."/views/$filename";
}
public function getConfigView()
{
return $this->hasConfigView()
? view()->file($this->getViewPath(Arr::get($this->manifest, 'config', 'config.blade.php')))
: null;
}
public function hasConfigView(): bool
{
$filename = Arr::get($this->manifest, 'config', 'config.blade.php');
return $filename && file_exists($this->getViewPath($filename));
}
public function setEnabled(bool $enabled): self
{
$this->enabled = $enabled;
return $this;
}
public function isEnabled(): bool
{
return $this->enabled;
}
public function getPath(): string
{
return $this->path;
}
}