mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Device Cache also some additional device related models * attribs from cache * replace common attribute functions * remove legacy cache usage tidy up some collection manipulation remove some unused or single use functions * cleanup some items * always return a device, to prevent bugs * clear device cache when testing after each test * fix double assignment * Clean up function to take advantage of null object
126 lines
4.0 KiB
PHP
126 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use LibreNMS\Config;
|
|
use LibreNMS\Permissions;
|
|
use LibreNMS\Util\IP;
|
|
use LibreNMS\Util\Validate;
|
|
use Validator;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->registerFacades();
|
|
$this->registerGeocoder();
|
|
|
|
$this->app->singleton('permissions', function ($app) {
|
|
return new Permissions();
|
|
});
|
|
$this->app->singleton('device-cache', function ($app) {
|
|
return new \LibreNMS\Cache\Device();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->app->booted('\LibreNMS\DB\Eloquent::initLegacyListeners');
|
|
$this->app->booted('\LibreNMS\Config::load');
|
|
|
|
$this->bootCustomBladeDirectives();
|
|
$this->bootCustomValidators();
|
|
$this->configureMorphAliases();
|
|
}
|
|
|
|
private function bootCustomBladeDirectives()
|
|
{
|
|
Blade::if('config', function ($key) {
|
|
return \LibreNMS\Config::get($key);
|
|
});
|
|
Blade::if('notconfig', function ($key) {
|
|
return !\LibreNMS\Config::get($key);
|
|
});
|
|
Blade::if('admin', function () {
|
|
return auth()->check() && auth()->user()->isAdmin();
|
|
});
|
|
}
|
|
|
|
private function configureMorphAliases()
|
|
{
|
|
Relation::morphMap([
|
|
'interface' => \App\Models\Port::class,
|
|
'sensor' => \App\Models\Sensor::class,
|
|
'device' => \App\Models\Device::class,
|
|
'device_group' => \App\Models\DeviceGroup::class,
|
|
]);
|
|
}
|
|
|
|
private function registerFacades()
|
|
{
|
|
// replace log manager so we can add the event function
|
|
$this->app->bind('log', function ($app) {
|
|
return new \App\Facades\LogManager($app);
|
|
});
|
|
}
|
|
|
|
private function registerGeocoder()
|
|
{
|
|
$this->app->alias(\LibreNMS\Interfaces\Geocoder::class, 'geocoder');
|
|
$this->app->bind(\LibreNMS\Interfaces\Geocoder::class, function ($app) {
|
|
$engine = Config::get('geoloc.engine');
|
|
|
|
switch ($engine) {
|
|
case 'mapquest':
|
|
Log::debug('MapQuest geocode engine');
|
|
return $app->make(\App\ApiClients\MapquestApi::class);
|
|
case 'bing':
|
|
Log::debug('Bing geocode engine');
|
|
return $app->make(\App\ApiClients\BingApi::class);
|
|
case 'openstreetmap':
|
|
Log::debug('OpenStreetMap geocode engine');
|
|
return $app->make(\App\ApiClients\NominatimApi::class);
|
|
default:
|
|
case 'google':
|
|
Log::debug('Google Maps geocode engine');
|
|
return $app->make(\App\ApiClients\GoogleMapsApi::class);
|
|
}
|
|
});
|
|
}
|
|
|
|
private function bootCustomValidators()
|
|
{
|
|
Validator::extend('alpha_space', function ($attribute, $value) {
|
|
return preg_match('/^[\w\s]+$/u', $value);
|
|
});
|
|
|
|
Validator::extend('ip_or_hostname', function ($attribute, $value, $parameters, $validator) {
|
|
$ip = substr($value, 0, strpos($value, '/') ?: strlen($value)); // allow prefixes too
|
|
return IP::isValid($ip) || Validate::hostname($value);
|
|
}, __('The :attribute must a valid IP address/network or hostname.'));
|
|
|
|
Validator::extend('zero_or_exists', function ($attribute, $value, $parameters, $validator) {
|
|
if ($value === 0) {
|
|
return true;
|
|
}
|
|
|
|
$validator = Validator::make([$attribute => $value], [$attribute => 'exists:' . implode(',', $parameters)]);
|
|
return $validator->passes();
|
|
}, __('validation.exists'));
|
|
}
|
|
}
|