104 lines
3.2 KiB
PHP
104 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Modules\Maintenance\Providers;
|
|
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\Facades\View;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Modules\Maintenance\Utils\MaintenanceUtil;
|
|
|
|
class MaintenanceServiceProvider extends ServiceProvider
|
|
{
|
|
protected $moduleName = 'Maintenance';
|
|
|
|
protected $moduleNameLower = 'maintenance';
|
|
|
|
public function boot()
|
|
{
|
|
$this->registerTranslations();
|
|
$this->registerConfig();
|
|
$this->registerViews();
|
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
|
|
$this->registerCommands();
|
|
$this->registerScheduleCommands();
|
|
|
|
View::composer('maintenance::*', function ($view) {
|
|
$view->with('maintenanceUtil', app(MaintenanceUtil::class));
|
|
});
|
|
}
|
|
|
|
public function register()
|
|
{
|
|
$this->app->register(RouteServiceProvider::class);
|
|
$this->app->singleton(\Modules\Maintenance\Services\IotIngestionService::class);
|
|
}
|
|
|
|
protected function registerCommands(): void
|
|
{
|
|
$this->commands([
|
|
\Modules\Maintenance\Console\ProcessPreventiveMaintenance::class,
|
|
]);
|
|
}
|
|
|
|
public function registerScheduleCommands(): void
|
|
{
|
|
$env = config('app.env');
|
|
$module_util = new \App\Utils\ModuleUtil();
|
|
$is_installed = $module_util->isModuleInstalled('Maintenance');
|
|
|
|
if ($is_installed) {
|
|
$this->app->booted(function () use ($env) {
|
|
$schedule = $this->app->make(\Illuminate\Console\Scheduling\Schedule::class);
|
|
$frequency = $env === 'live' ? 'hourly' : 'daily';
|
|
$schedule->command('pos:maintenanceProcessPreventive')->{$frequency}();
|
|
});
|
|
}
|
|
}
|
|
|
|
protected function registerConfig()
|
|
{
|
|
$this->publishes([
|
|
module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower.'.php'),
|
|
], 'config');
|
|
$this->mergeConfigFrom(
|
|
module_path($this->moduleName, 'Config/config.php'),
|
|
$this->moduleNameLower
|
|
);
|
|
}
|
|
|
|
public function registerViews()
|
|
{
|
|
$viewPath = resource_path('views/modules/'.$this->moduleNameLower);
|
|
$sourcePath = module_path($this->moduleName, 'Resources/views');
|
|
|
|
$this->publishes([
|
|
$sourcePath => $viewPath,
|
|
], ['views', $this->moduleNameLower.'-module-views']);
|
|
|
|
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
|
|
}
|
|
|
|
public function registerTranslations()
|
|
{
|
|
$langPath = resource_path('lang/modules/'.$this->moduleNameLower);
|
|
|
|
if (is_dir($langPath)) {
|
|
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
|
|
} else {
|
|
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
|
|
}
|
|
}
|
|
|
|
private function getPublishableViewPaths(): array
|
|
{
|
|
$paths = [];
|
|
foreach (\Config::get('view.paths') as $path) {
|
|
if (is_dir($path.'/modules/'.$this->moduleNameLower)) {
|
|
$paths[] = $path.'/modules/'.$this->moduleNameLower;
|
|
}
|
|
}
|
|
|
|
return $paths;
|
|
}
|
|
}
|