123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <?php
- namespace Dcat\Admin;
- use Illuminate\Console\Command;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Facades\Route;
- use Illuminate\Support\Facades\Validator;
- abstract class Extension
- {
- const NAME = null;
- /**
- * @var string
- */
- protected $serviceProvider;
- /**
- * @var string
- */
- protected $assets = '';
- /**
- * @var string
- */
- protected $views = '';
- /**
- * @var string
- */
- protected $lang = '';
- /**
- * @var string
- */
- protected $migrations = '';
- /**
- * @var string
- */
- protected $composer = '';
- /**
- * @var array
- */
- protected $menu = [];
- /**
- * @var array
- */
- protected $permission = [];
- /**
- * The menu validation rules.
- *
- * @var array
- */
- protected $menuValidationRules = [
- 'title' => 'required',
- 'path' => 'required',
- 'icon' => 'required',
- ];
- /**
- * The permission validation rules.
- *
- * @var array
- */
- protected $permissionValidationRules = [
- 'name' => 'required',
- 'slug' => 'required',
- 'path' => 'required',
- ];
- /**
- * @return string
- */
- final public function getName()
- {
- return static::NAME;
- }
- /**
- * @return string
- */
- public function composer()
- {
- return $this->composer;
- }
- /**
- * @return string
- */
- public function serviceProvider()
- {
- return $this->serviceProvider;
- }
- /**
- * Get the path of assets files.
- *
- * @return string
- */
- public function assets()
- {
- return $this->assets;
- }
- /**
- * Get the path of view files.
- *
- * @return string
- */
- public function views()
- {
- return $this->views;
- }
- /**
- * Get the path of migration files.
- *
- * @return string
- */
- public function migrations()
- {
- return $this->migrations;
- }
- /**
- * @return array
- */
- public function menu()
- {
- return $this->menu;
- }
- /**
- * @return array
- */
- public function permission()
- {
- return $this->permission;
- }
- /**
- * @return string
- */
- public function lang()
- {
- return $this->lang;
- }
- /**
- * Whether the extension is enabled.
- *
- * @return bool
- */
- final public static function enabled()
- {
- return config('admin-extensions.'.static::NAME.'.enable') ? true : false;
- }
- /**
- * Whether the extension is disabled.
- *
- * @return bool
- */
- final public static function disable()
- {
- return ! static::enabled();
- }
- /**
- * Get config set in config/admin.php.
- *
- * @param string $key
- * @param null $default
- *
- * @return \Illuminate\Config\Repository|mixed
- */
- final public function config($key = null, $default = null)
- {
- if (is_null($key)) {
- $key = sprintf('admin.extensions.%s', static::NAME);
- } else {
- $key = sprintf('admin.extensions.%s.%s', static::NAME, $key);
- }
- return config($key, $default);
- }
- /**
- * Import menu item and permission to dcat-admin.
- */
- public function import(Command $command)
- {
- if ($menu = $this->menu()) {
- if ($this->validateMenu($menu)) {
- extract($menu);
- if ($this->checkMenuExist($path)) {
- $command->warn("Menu [$path] already exists!");
- } else {
- $this->createMenu($title, $path, $icon);
- $command->info('Import extension menu succeeded!');
- }
- }
- }
- if ($permission = $this->permission()) {
- if ($this->validatePermission($permission)) {
- extract($permission);
- if ($this->checkPermissionExist($slug)) {
- $command->warn("Permission [$slug] already exists!");
- } else {
- $this->createPermission($name, $slug, $path);
- $command->info('Import extension permission succeeded!');
- }
- }
- }
- }
- /**
- * Uninstall the extension.
- *
- * @param Command $command
- */
- public function uninstall(Command $command)
- {
- }
- /**
- * Validate menu fields.
- *
- * @param array $menu
- *
- * @throws \Exception
- *
- * @return bool
- */
- public function validateMenu(array $menu)
- {
- /** @var \Illuminate\Validation\Validator $validator */
- $validator = Validator::make($menu, $this->menuValidationRules);
- if ($validator->passes()) {
- return true;
- }
- $message = "Invalid menu:\r\n".implode("\r\n", Arr::flatten($validator->errors()->messages()));
- throw new \Exception($message);
- }
- /**
- * @param $path
- *
- * @return bool
- */
- protected function checkMenuExist($path)
- {
- $menuModel = config('admin.database.menu_model');
- /* @var \Illuminate\Database\Eloquent\Builder $query */
- $query = $menuModel::query();
- $result = $query->where('uri', $path)
- ->get()
- ->first();
- return $result ? true : false;
- }
- /**
- * Validate permission fields.
- *
- * @param array $permission
- *
- * @throws \Exception
- *
- * @return bool
- */
- public function validatePermission(array $permission)
- {
- /** @var \Illuminate\Validation\Validator $validator */
- $validator = Validator::make($permission, $this->permissionValidationRules);
- if ($validator->passes()) {
- return true;
- }
- $message = "Invalid permission:\r\n".implode("\r\n", Arr::flatten($validator->errors()->messages()));
- throw new \Exception($message);
- }
- /**
- * Create a item in dcat-admin left side menu.
- *
- * @param string $title
- * @param string $uri
- * @param string $icon
- * @param int $parentId
- */
- protected function createMenu($title, $uri, $icon = 'fa-bars', $parentId = 0)
- {
- $menuModel = config('admin.database.menu_model');
- $lastOrder = $menuModel::max('order');
- $menuModel::create([
- 'parent_id' => $parentId,
- 'order' => $lastOrder + 1,
- 'title' => $title,
- 'icon' => $icon,
- 'uri' => $uri,
- ]);
- }
- /**
- * @param $slug
- *
- * @return bool
- */
- protected function checkPermissionExist($slug)
- {
- $permissionModel = config('admin.database.permissions_model');
- /* @var \Illuminate\Database\Eloquent\Builder $query */
- $query = $permissionModel::query();
- $result = $query->where('slug', $slug)
- ->get()
- ->first();
- return $result ? true : false;
- }
- /**
- * Create a permission for this extension.
- *
- * @param $name
- * @param $slug
- * @param $path
- */
- protected function createPermission($name, $slug, $path)
- {
- $permissionModel = config('admin.database.permissions_model');
- $permissionModel::create([
- 'name' => $name,
- 'slug' => $slug,
- 'http_path' => '/'.trim($path, '/'),
- ]);
- }
- /**
- * Set routes for this extension.
- *
- * @param $callback
- */
- public function routes($callback)
- {
- $attributes = array_merge(
- [
- 'prefix' => config('admin.route.prefix'),
- 'middleware' => config('admin.route.middleware'),
- ],
- $this->config('route', [])
- );
- Route::group($attributes, $callback);
- }
- /**
- * @return static
- */
- public static function make()
- {
- return new static();
- }
- }
|