51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Checkout;
|
|
|
|
use App\Models\CheckoutSession;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CheckoutSessionConfirmRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
$session = $this->route('session');
|
|
|
|
if (! $session instanceof CheckoutSession) {
|
|
return false;
|
|
}
|
|
|
|
$user = $this->user();
|
|
|
|
if (! $user) {
|
|
return false;
|
|
}
|
|
|
|
return (int) $session->user_id === (int) $user->id;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'order_id' => ['nullable', 'string', 'required_without:checkout_id'],
|
|
'checkout_id' => ['nullable', 'string', 'required_without:order_id'],
|
|
];
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'order_id.required_without' => 'Order ID oder Checkout ID fehlt.',
|
|
'checkout_id.required_without' => 'Checkout ID oder Order ID fehlt.',
|
|
];
|
|
}
|
|
}
|