49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Setting;
 | |
| 
 | |
| use App\Setting\Contracts\Indexable;
 | |
| use App\Setting\Contracts\Storeable;
 | |
| use Illuminate\Routing\Router;
 | |
| 
 | |
| class SettingFactory
 | |
| {
 | |
|     /**
 | |
|      * @var array<int, class-string<LocalSettings>>
 | |
|      */
 | |
|     private array $settings = [];
 | |
| 
 | |
|     /**
 | |
|      * @param class-string $setting
 | |
|      */
 | |
|     public function register(string $setting): void
 | |
|     {
 | |
|         $this->settings[] = $setting;
 | |
| 
 | |
|         if (new $setting() instanceof Indexable) {
 | |
|             app(Router::class)->middleware(['web', 'auth:web', SettingMiddleware::class])->get($setting::url(), $setting::indexAction());
 | |
|         }
 | |
| 
 | |
|         if (new $setting() instanceof Storeable) {
 | |
|             app(Router::class)->middleware(['web', 'auth:web', SettingMiddleware::class])->post($setting::url(), $setting::storeAction());
 | |
|         }
 | |
| 
 | |
|         if (1 === count($this->settings)) {
 | |
|             app(Router::class)->redirect('/setting', '/setting/'.$setting::slug());
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return array<int, array{url: string, is_active: bool}>
 | |
|      */
 | |
|     public function getShare(): array
 | |
|     {
 | |
|         return collect($this->settings)->map(fn ($setting) => [
 | |
|             'url' => $setting::url(),
 | |
|             'is_active' => '/'.request()->path() === $setting::url(),
 | |
|             'title' => $setting::title(),
 | |
|         ])
 | |
|         ->toArray();
 | |
|     }
 | |
| }
 |