1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/Payments/PaymentWebhookRequest.php

58 lines
1.2 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;
use App\Models\Company;
use App\Models\CompanyGateway;
use App\Http\Requests\Request;
2020-06-27 15:53:12 +02:00
class PaymentWebhookRequest extends Request
2020-06-27 15:53:12 +02:00
{
public function authorize()
{
return true;
}
public function rules()
{
return [
//
];
}
public function company()
{
if (! $this->company_key) {
2020-06-27 17:39:28 +02:00
return false;
}
2020-06-27 15:53:12 +02:00
return Company::query()
->where('company_key', $this->company_key)
->firstOrFail();
}
public function companyGateway()
{
if (! $this->gateway_key || ! $this->company_key) {
2020-06-27 17:39:28 +02:00
return false;
}
2020-06-27 15:53:12 +02:00
$company = $this->company();
return CompanyGateway::query()
->where('gateway_key', $this->gateway_key)
->where('company_id', $company->id)
->firstOrFail();
}
}