Repository URL to install this package:
|
Version:
0.1.0 ▾
|
<?php
/**
* Created by PhpStorm.
* User: danilo
* Date: 18/12/15
* Time: 10:58
*/
namespace Modules\Core\Providers;
use Illuminate\Contracts\Bus\Dispatcher;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;
use Maatwebsite\Sidebar\SidebarManager;
use Modules\Core\Console\InstallCommand;
use Modules\Core\Console\PublishModuleAssetsCommand;
use Modules\Core\Console\PublishThemeAssetsCommand;
use Modules\Core\Sidebar\AdminSidebar;
use Pingpong\Modules\Module;
class CoreServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* @var string
*/
protected $prefix = 'webbing';
/**
* The filters base class name.
*
* @var array
*/
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'localize' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRoutes::class,
'localizationRedirect' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRedirectFilter::class,
'localeSessionRedirect' => \Mcamara\LaravelLocalization\Middleware\LocaleSessionRedirect::class,
];
public function boot(Dispatcher $dispatcher, SidebarManager $manager)
{
$dispatcher->mapUsing(function ($command) {
$command = str_replace('Commands\\', 'Commands\\Handlers\\', get_class($command));
return trim($command, '\\') . 'Handler@handle';
});
$manager->register(AdminSidebar::class);
/*$this->app->booting(function()
{
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
$loader->alias('Datatables', \Yajra\Datatables\Datatables::class);
});*/
$this->registerMiddleware($this->app['router']);
$this->registerModuleResourceNamespaces();
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->registerCommands();
$this->registerServices();
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array();
}
/**
* Register the filters.
*
* @param Router $router
* @return void
*/
public function registerMiddleware(Router $router)
{
foreach ($this->routeMiddleware as $name => $class) {
$router->middleware($name, $class);
}
}
/**
* Register the console commands
*/
private function registerCommands()
{
$this->commands([
InstallCommand::class,
PublishThemeAssetsCommand::class,
PublishModuleAssetsCommand::class,
]);
}
private function registerServices()
{
/*$this->app->bindShared(ThemeManager::class, function ($app) {
$path = $app['config']->get('asgard.core.core.themes_path');
return new ThemeManager($app, $path);
});*/
if ($this->app->environment() == 'local') {
$this->app->register('Barryvdh\Debugbar\ServiceProvider');
$this->app->register('Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider');
$this->app->register('Laracasts\Generators\GeneratorsServiceProvider');
}
}
/**
* Register the modules aliases
*/
private function registerModuleResourceNamespaces()
{
foreach ($this->app['modules']->getOrdered() as $module) {
$this->registerViewNamespace($module);
$this->registerLanguageNamespace($module);
$this->registerConfigNamespace($module);
}
}
/**
* Register the view namespaces for the modules
* @param Module $module
*/
protected function registerViewNamespace(Module $module)
{
if ($module->getName() == 'user') {
return;
}
$this->app['view']->addNamespace(
$module->getName(),
$module->getPath() . '/Resources/views'
);
}
/**
* Register the language namespaces for the modules
* @param Module $module
*/
protected function registerLanguageNamespace(Module $module)
{
$moduleName = $module->getName();
$langPath = base_path("resources/lang/$moduleName");
$secondPath = base_path("resources/lang/translation/$moduleName");
if ($moduleName !== 'translation' && $this->hasPublishedTranslations($langPath)) {
return $this->loadTranslationsFrom($langPath, $moduleName);
}
if ($this->hasPublishedTranslations($secondPath)) {
if ($moduleName === 'translation') {
return $this->loadTranslationsFrom($secondPath, $moduleName);
}
return $this->loadTranslationsFrom($secondPath, $moduleName);
}
if ($this->moduleHasCentralisedTranslations($module)) {
return $this->loadTranslationsFrom($this->getCentralisedTranslationPath($module), $moduleName);
}
return $this->loadTranslationsFrom($module->getPath() . '/Resources/lang', $moduleName);
}
/**
* Register the config namespace
* @param Module $module
*/
private function registerConfigNamespace(Module $module)
{
$files = $this->app['files']->files($module->getPath() . '/Config');
$package = $module->getName();
foreach ($files as $file) {
$filename = $this->getConfigFilename($file, $package);
$this->mergeConfigFrom($file, $filename);
$this->publishes([$file => config_path($filename . '.php'), ], 'config');
}
}
/**
* @param $file
* @param $package
* @return string
*/
private function getConfigFilename($file, $package)
{
$name = preg_replace('/\\.[^.\\s]{3,4}$/', '', basename($file));
$filename = $this->prefix . '.' . $package . '.' . $name;
return $filename;
}
/**
* @param string $path
* @return bool
*/
private function hasPublishedTranslations($path)
{
return is_dir($path);
}
/**
* Does a Module have it's Translations centralised in the Translation module?
* @param Module $module
* @return bool
*/
private function moduleHasCentralisedTranslations(Module $module)
{
if (! array_has($this->app['modules']->enabled(), 'Translation')) {
return false;
}
return is_dir($this->getCentralisedTranslationPath($module));
}
/**
* Get the absolute path to the Centralised Translations for a Module (via the Translations module)
* @param Module $module
* @return string
*/
private function getCentralisedTranslationPath(Module $module)
{
return $this->app['modules']->find('Translation')->getPath() . "/Resources/lang/{$module->getName()}";
}
}