adrema/app/Form/Actions/FormStoreAction.php

67 lines
1.7 KiB
PHP
Raw Normal View History

2023-12-27 22:54:58 +01:00
<?php
namespace App\Form\Actions;
use App\Form\Models\Form;
use App\Lib\Events\Succeeded;
use Illuminate\Http\JsonResponse;
use Lorisleiva\Actions\Concerns\AsAction;
use Lorisleiva\Actions\ActionRequest;
class FormStoreAction
{
use AsAction;
use HasValidation;
/**
* @return array<string, mixed>
*/
public function rules(): array
{
return [
...$this->globalRules(),
'description' => 'required|string',
2024-01-01 18:29:33 +01:00
'excerpt' => 'required|string|max:130',
2023-12-31 21:46:52 +01:00
'from' => 'required|date',
'to' => 'required|date',
'registration_from' => 'present|nullable|date',
'registration_until' => 'present|nullable|date',
'mail_top' => 'nullable|string',
'mail_bottom' => 'nullable|string',
2024-01-12 23:29:18 +01:00
'header_image' => 'required|exclude',
2023-12-27 22:54:58 +01:00
];
}
/**
* @param array<string, mixed> $attributes
*/
public function handle(array $attributes): Form
{
2024-01-12 23:29:18 +01:00
return tap(
Form::create($attributes),
fn ($form) => $form->setDeferredUploads(request()->input('header_image'))
);
2023-12-27 22:54:58 +01:00
}
2023-12-31 21:46:52 +01:00
/**
* @return array<string, mixed>
*/
public function getValidationAttributes(): array
{
return [
...$this->globalValidationAttributes(),
'from' => 'Start',
'to' => 'Ende',
2024-01-12 23:29:18 +01:00
'header_image' => 'Bild',
2023-12-31 21:46:52 +01:00
];
}
2023-12-27 22:54:58 +01:00
public function asController(ActionRequest $request): JsonResponse
{
$this->handle($request->validated());
2024-01-01 18:29:33 +01:00
Succeeded::message('Veranstaltung gespeichert.')->dispatch();
2023-12-27 22:54:58 +01:00
return response()->json([]);
}
}