adrema/app/Payment/Actions/PaymentUpdateAction.php

57 lines
1.5 KiB
PHP
Raw Normal View History

2023-10-16 16:21:23 +02:00
<?php
namespace App\Payment\Actions;
2023-10-16 16:36:02 +02:00
use App\Lib\JobMiddleware\JobChannels;
use App\Lib\JobMiddleware\WithJobState;
use App\Lib\Queue\TracksJob;
use App\Payment\Payment;
2023-10-16 16:21:23 +02:00
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\Rules\In;
2023-10-16 16:36:02 +02:00
use Lorisleiva\Actions\ActionRequest;
2023-10-16 16:21:23 +02:00
use Lorisleiva\Actions\Concerns\AsAction;
class PaymentUpdateAction
{
use AsAction;
2023-10-16 16:36:02 +02:00
use TracksJob;
2023-10-16 16:21:23 +02:00
2023-10-16 16:36:02 +02:00
public function handle(Payment $payment, array $attributes): void
2023-10-16 16:21:23 +02:00
{
2023-10-16 16:36:02 +02:00
$payment->update($attributes);
2023-10-16 16:21:23 +02:00
}
/**
* @return array<string, array<int, string|In>>
*/
public function rules(): array
{
2023-10-16 16:36:02 +02:00
return [
'nr' => 'required',
'subscription_id' => 'required|exists:subscriptions,id',
'status_id' => 'required|exists:statuses,id',
];
2023-10-16 16:21:23 +02:00
}
2023-10-16 16:36:02 +02:00
public function asController(Payment $payment, ActionRequest $request): JsonResponse
2023-10-16 16:21:23 +02:00
{
2023-10-16 16:36:02 +02:00
$this->startJob($payment, $request->validated());
return response()->json([]);
2023-10-16 16:21:23 +02:00
}
2023-10-16 16:36:02 +02:00
/**
* @param mixed $parameters
*/
public function jobState(WithJobState $jobState, ...$parameters): WithJobState
2023-10-16 16:21:23 +02:00
{
2023-10-16 16:36:02 +02:00
$member = $parameters[0]->member;
return $jobState
->before('Zahlung für ' . $member->fullname . ' wird aktualisiert')
->after('Zahlung für ' . $member->fullname . ' aktualisiert')
->failed('Fehler beim Aktualisieren der Zahlung für ' . $member->fullname)
->shouldReload(JobChannels::make()->add('member')->add('payment'));
2023-10-16 16:21:23 +02:00
}
}