82 lines
2.3 KiB
PHP
82 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Beike\Admin\Providers;
|
|
|
|
use Beike\Console\Commands\MakeRootAdminUser;
|
|
use Beike\Models\AdminUser;
|
|
use Beike\Models\Setting;
|
|
use Beike\Admin\View\Components\Filter;
|
|
use Beike\Admin\View\Components\Header;
|
|
use Beike\Admin\View\Components\Sidebar;
|
|
use Beike\Admin\View\Components\Form\Input;
|
|
use Beike\Admin\View\Components\Form\InputLocale;
|
|
use Beike\Admin\View\Components\Form\SwitchRadio;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Str;
|
|
|
|
class AdminServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot()
|
|
{
|
|
$uri = request()->getRequestUri();
|
|
|
|
if (! Str::startsWith($uri, '/admin')) {
|
|
return;
|
|
}
|
|
|
|
// $this->loadRoutesFrom(__DIR__ . '/../Routes/shop.php');
|
|
$this->loadRoutesFrom(__DIR__ . '/../Routes/admin.php');
|
|
|
|
$this->mergeConfigFrom(__DIR__ . '/../../Config/beike.php', 'beike');
|
|
|
|
$this->loadViewsFrom(__DIR__ . '/../Resources/views', 'admin');
|
|
|
|
$this->loadViewComponentsAs('admin', [
|
|
'header' => Header::class,
|
|
'sidebar' => Sidebar::class,
|
|
'filter' => Filter::class,
|
|
'form-input-locale' => InputLocale::class,
|
|
'form-switch' => SwitchRadio::class,
|
|
'form-input' => Input::class,
|
|
]);
|
|
|
|
$this->loadSettings();
|
|
$this->registerGuard();
|
|
|
|
if ($this->app->runningInConsole()) {
|
|
$this->commands([
|
|
MakeRootAdminUser::class,
|
|
]);
|
|
}
|
|
}
|
|
|
|
protected function loadSettings()
|
|
{
|
|
$settings = Setting::all(['name', 'value', 'json'])
|
|
->keyBy('name')
|
|
->transform(function ($setting) {
|
|
if ($setting->json) {
|
|
return \json_decode($setting->value, true);
|
|
}
|
|
return $setting->value;
|
|
})
|
|
->toArray();
|
|
config(['global' => $settings]);
|
|
}
|
|
|
|
protected function registerGuard()
|
|
{
|
|
Config::set('auth.guards.'.AdminUser::AUTH_GUARD, [
|
|
'driver' => 'session',
|
|
'provider' => 'admin_users',
|
|
]);
|
|
|
|
Config::set('auth.providers.admin_users', [
|
|
'driver' => 'eloquent',
|
|
'model' => AdminUser::class,
|
|
]);
|
|
}
|
|
|
|
}
|