phpvms/modules/Installer/Providers/InstallerServiceProvider.php

129 lines
3.2 KiB
PHP
Raw Normal View History

2017-12-14 12:28:58 +08:00
<?php
namespace Modules\Installer\Providers;
2018-08-27 02:50:08 +08:00
use App\Services\ModuleService;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
use Modules\Installer\Console\Commands\ImportFromClassicCommand;
2017-12-14 12:28:58 +08:00
class InstallerServiceProvider extends ServiceProvider
{
protected $moduleSvc;
/**
* Boot the application events.
*/
public function boot()
{
2018-08-27 02:50:08 +08:00
$this->moduleSvc = app(ModuleService::class);
2017-12-14 12:28:58 +08:00
$this->registerCommands();
2017-12-14 12:28:58 +08:00
$this->registerRoutes();
$this->registerTranslations();
$this->registerConfig();
$this->registerViews();
$this->loadMigrationsFrom(__DIR__.'/../Database/migrations');
2017-12-14 12:28:58 +08:00
}
protected function registerCommands()
{
$this->commands([
ImportFromClassicCommand::class,
]);
}
2017-12-14 12:28:58 +08:00
/**
* Register the routes
*/
protected function registerRoutes()
{
Route::group([
'as' => 'installer.',
'prefix' => 'install',
2017-12-14 12:28:58 +08:00
'middleware' => ['web'],
'namespace' => 'Modules\Installer\Http\Controllers',
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/install.php');
2017-12-14 12:42:45 +08:00
});
Route::group([
'as' => 'update.',
'prefix' => 'update',
2017-12-14 12:42:45 +08:00
'middleware' => ['web'],
'namespace' => 'Modules\Installer\Http\Controllers',
2017-12-14 12:42:45 +08:00
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/update.php');
});
Route::group([
'as' => 'importer.',
'prefix' => 'importer',
'middleware' => ['web'],
'namespace' => 'Modules\Installer\Http\Controllers',
], function () {
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/importer.php');
});
2017-12-14 12:28:58 +08:00
}
/**
* Register config.
*/
protected function registerConfig()
{
$this->publishes([
__DIR__.'/../Config/config.php' => config_path('installer.php'),
], 'installer');
2017-12-14 12:28:58 +08:00
$this->mergeConfigFrom(
__DIR__.'/../Config/config.php', 'installer'
);
}
/**
* Register views.
*/
public function registerViews()
{
$viewPath = resource_path('views/modules/installer');
$sourcePath = __DIR__.'/../Resources/views';
$this->publishes([
$sourcePath => $viewPath,
], 'views');
2017-12-14 12:28:58 +08:00
2018-08-27 02:50:08 +08:00
$paths = array_map(
function ($path) {
return $path.'/modules/installer';
},
\Config::get('view.paths')
);
$paths[] = $sourcePath;
$this->loadViewsFrom($paths, 'installer');
2017-12-14 12:28:58 +08:00
}
/**
* Register translations.
*/
public function registerTranslations()
{
$langPath = resource_path('lang/modules/installer');
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, 'installer');
} else {
$this->loadTranslationsFrom(__DIR__.'/../Resources/lang', 'installer');
2017-12-14 12:28:58 +08:00
}
}
/**
* Get the services provided by the provider.
*/
2018-08-27 02:50:08 +08:00
public function provides(): array
2017-12-14 12:28:58 +08:00
{
return [];
}
}