This commit is contained in:
shanec 2024-03-30 22:15:19 -04:00
parent dd896aa5a4
commit a382cc8194
2 changed files with 259 additions and 0 deletions

View file

@ -0,0 +1,86 @@
<?php
namespace App\Services\VirtfusionService\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* The module namespace to assume when generating URLs to actions.
*
* @var string
*/
protected $moduleNamespace = 'App\Services\VirtfusionService\Http\Controllers';
/**
* Called before routes are registered.
*
* Register any model bindings or pattern based filters.
*
* @return void
*/
public function boot()
{
parent::boot();
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
$this->mapAdminRoutes();
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->moduleNamespace)
->group(module_path('virtfusionservice', '/Routes/web.php'));
}
/**
* Define the "admin" routes for the application.
*
* These routes all receive admin level permission status
*
* @return void
*/
protected function mapAdminRoutes()
{
Route::middleware('web', 'admin', 'permission')
->namespace($this->moduleNamespace)
->prefix('admin/virtfusionservice')
->group(module_path('virtfusionservice', '/Routes/admin.php'));
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->moduleNamespace)
->group(module_path('virtfusionservice', '/Routes/api.php'));
}
}

View file

@ -0,0 +1,173 @@
<?php
namespace App\Services\VirtfusionService\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Factory;
class VirtfusionServiceServiceProvider extends ServiceProvider
{
/**
* @var string $moduleName
*/
protected $moduleName = 'VirtfusionService';
/**
* @var string $moduleNameLower
*/
protected $moduleNameLower = 'virtfusionservice';
/**
* Register config (Config/config.php)
*
* @return bool
*/
protected $config = false;
/**
* Register commands (Console/)
*
* @return bool
*/
protected $commands = false;
/**
* Register migrations (Database/Migrations)
*
* @return bool
*/
protected $migrations = true;
/**
* Register routes (Routes)
*
* @return bool
*/
protected $routes = false;
/**
* Register views (Resources/views)
*
* @return bool
*/
protected $views = false;
/**
* Register language (Resources/lang)
*
* @return bool
*/
protected $languages = false;
/**
* Boot the application events.
*
* @return void
*/
public function boot()
{
if ($this->config) {
$this->registerConfig();
}
if ($this->views) {
$this->registerViews();
}
if ($this->migrations) {
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
}
$this->registerTranslations();
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
if ($this->routes) {
$this->app->register(RouteServiceProvider::class);
}
}
/**
* Register config.
*
* @return void
*/
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
);
}
/**
* Register views.
*
* @return void
*/
protected 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);
}
/**
* Register translations.
*
* @return void
*/
protected function registerTranslations()
{
$langPath = resource_path('lang/modules/' . $this->moduleNameLower);
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
$this->loadJsonTranslationsFrom($langPath, $this->moduleNameLower);
} else {
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
$this->loadJsonTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
}
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
/**
* Retrieve paths where views are published.
*
* @return array
*/
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;
}
}