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;
|
2018-02-26 01:12:27 +08:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2017-12-14 12:28:58 +08:00
|
|
|
use Route;
|
|
|
|
|
|
|
|
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->registerRoutes();
|
|
|
|
$this->registerTranslations();
|
|
|
|
$this->registerConfig();
|
|
|
|
$this->registerViews();
|
|
|
|
|
2019-08-27 00:32:46 +08:00
|
|
|
$this->loadMigrationsFrom(__DIR__.'/../Database/migrations');
|
2017-12-14 12:28:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the routes
|
|
|
|
*/
|
|
|
|
protected function registerRoutes()
|
|
|
|
{
|
|
|
|
Route::group([
|
2019-08-27 00:32:46 +08:00
|
|
|
'as' => 'installer.',
|
|
|
|
'prefix' => 'install',
|
2017-12-14 12:28:58 +08:00
|
|
|
'middleware' => ['web'],
|
2019-08-27 00:32:46 +08:00
|
|
|
'namespace' => 'Modules\Installer\Http\Controllers',
|
|
|
|
], function () {
|
|
|
|
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/install.php');
|
2017-12-14 12:42:45 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
Route::group([
|
2019-08-27 00:32:46 +08:00
|
|
|
'as' => 'update.',
|
|
|
|
'prefix' => 'update',
|
2017-12-14 12:42:45 +08:00
|
|
|
'middleware' => ['web'],
|
2019-08-27 00:32:46 +08:00
|
|
|
'namespace' => 'Modules\Installer\Http\Controllers',
|
2017-12-14 12:42:45 +08:00
|
|
|
], function () {
|
2019-08-27 00:32:46 +08:00
|
|
|
$this->loadRoutesFrom(__DIR__.'/../Http/Routes/update.php');
|
|
|
|
});
|
2017-12-14 12:28:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register config.
|
|
|
|
*/
|
|
|
|
protected function registerConfig()
|
|
|
|
{
|
|
|
|
$this->publishes([
|
|
|
|
__DIR__.'/../Config/config.php' => config_path('installer.php'),
|
2018-02-26 01:12:27 +08:00
|
|
|
], '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([
|
2019-08-27 00:32:46 +08:00
|
|
|
$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 {
|
2019-08-27 00:32:46 +08:00
|
|
|
$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 [];
|
|
|
|
}
|
|
|
|
}
|