1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-16 16:13:20 +01:00
invoiceninja/app/Http/Requests/CreatePaymentAPIRequest.php

60 lines
1.2 KiB
PHP
Raw Normal View History

2016-05-02 10:38:01 +02:00
<?php namespace App\Http\Requests;
use App\Models\Invoice;
2016-05-02 10:38:01 +02:00
class CreatePaymentAPIRequest extends PaymentRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2016-05-02 10:38:01 +02:00
public function authorize()
{
return $this->user()->can('create', ENTITY_PAYMENT);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
if ( ! $this->invoice_id || ! $this->amount) {
return [
2016-09-27 16:13:42 +02:00
'invoice_id' => 'required|numeric|min:1',
'amount' => 'required|numeric|min:0.01',
2016-05-02 10:38:01 +02:00
];
}
$invoice = Invoice::scope($this->invoice_id)
->invoices()
->whereIsPublic(true)
->firstOrFail();
2016-05-02 10:38:01 +02:00
$this->merge([
'invoice_id' => $invoice->id,
2016-05-02 10:38:01 +02:00
'client_id' => $invoice->client->id,
]);
$rules = [
2016-08-28 16:19:33 +02:00
'amount' => "required|numeric|between:0.01,{$invoice->balance}",
];
2016-05-02 10:38:01 +02:00
if ($this->payment_type_id == PAYMENT_TYPE_CREDIT) {
$rules['payment_type_id'] = 'has_credit:' . $invoice->client->public_id . ',' . $this->amount;
}
return $rules;
}
2016-05-02 10:38:01 +02:00
}