adrema/app/Providers/AppServiceProvider.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
namespace App\Providers;
2021-11-23 01:02:18 +01:00
use App\Setting\GeneralSettings;
use Illuminate\Http\RedirectResponse;
2020-04-10 20:32:12 +02:00
use Illuminate\Http\Resources\Json\JsonResource;
2021-11-23 01:02:18 +01:00
use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;
2022-02-12 00:41:52 +01:00
use Laravel\Telescope\Telescope;
2021-11-23 01:02:18 +01:00
use Zoomyboy\LaravelNami\Authentication\NamiGuard;
2020-04-10 20:32:12 +02:00
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
JsonResource::withoutWrapping();
2022-02-12 00:41:52 +01:00
Telescope::ignoreMigrations();
2020-06-02 23:45:25 +02:00
\Inertia::share('search', request()->query('search', ''));
RedirectResponse::macro('success', function($flash) {
session()->flash('flash', ['success' => $flash]);
return $this;
});
2020-04-10 20:32:12 +02:00
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
2021-11-23 01:02:18 +01:00
NamiGuard::beforeLogin(function(array $credentials) {
return in_array($credentials['mglnr'], app(GeneralSettings::class)->allowed_nami_accounts)
? null
: false;
});
2020-04-10 20:32:12 +02:00
}
}