1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-10-01 21:57:11 +02:00
invoiceninja/app/Http/Requests/Payments/PaymentWebhookRequest.php

105 lines
2.3 KiB
PHP
Raw Normal View History

2020-06-27 15:53:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2020-06-27 15:53:12 +02:00
namespace App\Http\Requests\Payments;
2020-11-25 15:19:52 +01:00
use App\Http\Requests\Request;
use App\Models\Client;
2020-06-27 15:53:12 +02:00
use App\Models\Company;
use App\Models\CompanyGateway;
use App\Models\Payment;
use App\Models\PaymentHash;
use App\Utils\Traits\MakesHash;
2020-06-27 15:53:12 +02:00
class PaymentWebhookRequest extends Request
2020-06-27 15:53:12 +02:00
{
use MakesHash;
2020-06-27 15:53:12 +02:00
public function authorize()
{
return true;
}
public function rules()
{
return [
//
];
}
/**
* Resolve company gateway.
2020-12-07 14:56:23 +01:00
*
* @param mixed $id
* @return null|\App\Models\CompanyGateway
*/
public function getCompanyGateway(): ?CompanyGateway
{
return CompanyGateway::find($this->decodePrimaryKey($this->company_gateway_id))->firstOrFail();
}
/**
* Resolve payment hash.
2020-12-07 14:56:23 +01:00
*
* @param string $hash
2020-12-16 15:25:42 +01:00
* @return null|\App\Models\PaymentHash
*/
public function getPaymentHash(): ?PaymentHash
2020-06-27 15:53:12 +02:00
{
if ($this->query('hash')) {
return PaymentHash::where('hash', $this->query('hash'))->firstOrFail();
2020-06-27 17:39:28 +02:00
}
return null;
}
2020-06-27 17:39:28 +02:00
/**
* Resolve possible payment in the request.
2020-12-07 14:56:23 +01:00
*
* @return null|\App\Models\Payment
*/
public function getPayment(): ?Payment
{
2020-12-16 15:25:42 +01:00
/**
* Some gateways, like Checkout, we can dynamically pass payment hash,
* which we will resolve here and get payment information from it.
*/
if ($this->getPaymentHash()) {
return $this->getPaymentHash()->payment;
}
abort(404);
2020-06-27 15:53:12 +02:00
}
/**
* Resolve client from payment hash.
2020-12-07 14:56:23 +01:00
*
* @return null|\App\Models\Client
*/
public function getClient(): ?Client
2020-06-27 15:53:12 +02:00
{
$hash = $this->getPaymentHash();
2020-06-27 17:39:28 +02:00
return Client::find($hash->data->client_id)->firstOrFail();
}
2020-06-27 15:53:12 +02:00
/**
* Resolve company from company_key parameter.
2020-12-07 14:56:23 +01:00
*
* @return null|\App\Models\Company
*/
public function getCompany(): ?Company
{
return Company::where('company_key', $this->company_key)->firstOrFail();
2020-06-27 15:53:12 +02:00
}
}