56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Maildispatcher\Actions;
 | |
| 
 | |
| use App\Maildispatcher\Models\Maildispatcher;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| use Lorisleiva\Actions\ActionRequest;
 | |
| use Lorisleiva\Actions\Concerns\AsAction;
 | |
| 
 | |
| class StoreAction
 | |
| {
 | |
|     use AsAction;
 | |
| 
 | |
|     /**
 | |
|      * @param array<string, mixed> $input
 | |
|      */
 | |
|     public function handle(array $input): void
 | |
|     {
 | |
|         $dispatcher = Maildispatcher::create([
 | |
|             ...$input,
 | |
|             'filter' => (object) $input['filter'],
 | |
|         ]);
 | |
|         $dispatcher->gateway->type->createList($dispatcher->name, $dispatcher->gateway->domain);
 | |
|         ResyncAction::dispatch();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return array<string, string>
 | |
|      */
 | |
|     public function getValidationAttributes(): array
 | |
|     {
 | |
|         return [
 | |
|             'gateway_id' => 'Verbindung',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return array<string, string>
 | |
|      */
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             'gateway_id' => 'required|exists:mailgateways,id',
 | |
|             'name' => 'required|max:50',
 | |
|             'filter' => 'present|array',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function asController(ActionRequest $request): JsonResponse
 | |
|     {
 | |
|         $this->handle($request->validated());
 | |
| 
 | |
|         return response()->json('', 201);
 | |
|     }
 | |
| }
 |