1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Payments/PaymentWebhookRequest.php
Benjamin Beganović ae88d5e08e php-cs-fixer format
2020-11-25 15:19:52 +01:00

58 lines
1.2 KiB
PHP

<?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
*/
namespace App\Http\Requests\Payments;
use App\Http\Requests\Request;
use App\Models\Company;
use App\Models\CompanyGateway;
class PaymentWebhookRequest extends Request
{
public function authorize()
{
return true;
}
public function rules()
{
return [
//
];
}
public function company()
{
if (! $this->company_key) {
return false;
}
return Company::query()
->where('company_key', $this->company_key)
->firstOrFail();
}
public function companyGateway()
{
if (! $this->gateway_key || ! $this->company_key) {
return false;
}
$company = $this->company();
return CompanyGateway::query()
->where('gateway_key', $this->gateway_key)
->where('company_id', $company->id)
->firstOrFail();
}
}