2021-07-26 17:03:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Gateways\Mollie;
|
|
|
|
|
2021-07-29 15:13:38 +02:00
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\ClientGatewayToken;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CompanyGateway;
|
|
|
|
use App\Models\PaymentHash;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-07-26 17:03:15 +02:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class Mollie3dsRequest extends FormRequest
|
|
|
|
{
|
2021-07-29 15:13:38 +02:00
|
|
|
use MakesHash;
|
|
|
|
|
2021-07-26 17:03:15 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2021-07-29 15:13:38 +02:00
|
|
|
return true;
|
2021-07-26 17:03:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
2021-07-29 15:13:38 +02:00
|
|
|
|
|
|
|
public function getCompany(): ?Company
|
|
|
|
{
|
|
|
|
return Company::where('company_key', $this->company_key)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCompanyGateway(): ?CompanyGateway
|
|
|
|
{
|
|
|
|
return CompanyGateway::find($this->decodePrimaryKey($this->company_gateway_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPaymentHash(): ?PaymentHash
|
|
|
|
{
|
|
|
|
return PaymentHash::where('hash', $this->hash)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getClient(): ?Client
|
|
|
|
{
|
|
|
|
return Client::find($this->getPaymentHash()->data->client_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPaymentId(): ?string
|
|
|
|
{
|
|
|
|
return $this->getPaymentHash()->data->payment_id;
|
|
|
|
}
|
2021-07-26 17:03:15 +02:00
|
|
|
}
|