180 lines
4.5 KiB
PHP
Executable File
180 lines
4.5 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Admin\Providers;
|
|
|
|
use Illuminate\Routing\Router;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Webkul\Admin\Http\Middleware\Locale;
|
|
use Webkul\Core\Tree;
|
|
|
|
class AdminServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot(Router $router)
|
|
{
|
|
$this->loadRoutesFrom(__DIR__ . '/../Routes/web.php');
|
|
|
|
$this->loadTranslationsFrom(__DIR__ . '/../Resources/lang', 'admin');
|
|
|
|
$this->loadViewsFrom(__DIR__ . '/../Resources/views', 'admin');
|
|
|
|
$this->loadPublishers();
|
|
|
|
$this->composeView();
|
|
|
|
$this->registerACL();
|
|
|
|
$router->aliasMiddleware('admin_locale', Locale::class);
|
|
|
|
$this->app->register(EventServiceProvider::class);
|
|
}
|
|
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->registerConfig();
|
|
}
|
|
|
|
/**
|
|
* Register package config.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function registerConfig()
|
|
{
|
|
$this->mergeConfigFrom(
|
|
dirname(__DIR__) . '/Config/menu.php',
|
|
'menu.admin'
|
|
);
|
|
|
|
$this->mergeConfigFrom(
|
|
dirname(__DIR__) . '/Config/acl.php',
|
|
'acl'
|
|
);
|
|
|
|
$this->mergeConfigFrom(
|
|
dirname(__DIR__) . '/Config/system.php',
|
|
'core'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Load publishers.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function loadPublishers(): void
|
|
{
|
|
$this->publishes([__DIR__ . '/../Resources/lang' => lang_path('vendor/admin')]);
|
|
|
|
$this->publishes([__DIR__ . '/../../publishable/assets' => public_path('vendor/webkul/admin/assets')], 'public');
|
|
}
|
|
|
|
/**
|
|
* Bind the data to the views.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function composeView()
|
|
{
|
|
view()->composer(['admin::layouts.nav-left','admin::layouts.tabs','admin::layouts.mobile-nav'], function ($view) {
|
|
$tree = Tree::create();
|
|
|
|
$permissionType = auth()->guard('admin')->user()->role->permission_type;
|
|
$allowedPermissions = auth()->guard('admin')->user()->role->permissions;
|
|
|
|
foreach (config('menu.admin') as $index => $item) {
|
|
if (! bouncer()->hasPermission($item['key'])) {
|
|
continue;
|
|
}
|
|
|
|
if ($index + 1 < count(config('menu.admin')) && $permissionType != 'all') {
|
|
$permission = config('menu.admin')[$index + 1];
|
|
|
|
if (substr_count($permission['key'], '.') == 2 && substr_count($item['key'], '.') == 1) {
|
|
foreach ($allowedPermissions as $key => $value) {
|
|
if ($item['key'] == $value) {
|
|
$neededItem = $allowedPermissions[$key + 1];
|
|
|
|
foreach (config('menu.admin') as $key1 => $findMatced) {
|
|
if ($findMatced['key'] == $neededItem) {
|
|
$item['route'] = $findMatced['route'];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$tree->add($item, 'menu');
|
|
}
|
|
|
|
$tree->items = core()->sortItems($tree->items);
|
|
|
|
$view->with('menu', $tree);
|
|
});
|
|
|
|
view()->composer(['admin::users.roles.create', 'admin::users.roles.edit'], function ($view) {
|
|
$view->with('acl', $this->createACL());
|
|
});
|
|
|
|
view()->composer(['admin::catalog.products.create'], function ($view) {
|
|
$items = array();
|
|
|
|
foreach (config('product_types') as $item) {
|
|
$item['children'] = [];
|
|
|
|
array_push($items, $item);
|
|
}
|
|
|
|
$types = core()->sortItems($items);
|
|
|
|
$view->with('productTypes', $types);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register ACL to entire application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function registerACL()
|
|
{
|
|
$this->app->singleton('acl', function () {
|
|
return $this->createACL();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Create ACL tree.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
protected function createACL()
|
|
{
|
|
static $tree;
|
|
|
|
if ($tree) {
|
|
return $tree;
|
|
}
|
|
|
|
$tree = Tree::create();
|
|
|
|
foreach (config('acl') as $item) {
|
|
$tree->add($item, 'acl');
|
|
}
|
|
|
|
$tree->items = core()->sortItems($tree->items);
|
|
|
|
return $tree;
|
|
}
|
|
}
|