1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/Http/Requests/CreateDocumentRequest.php

49 lines
987 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-05-01 21:30:39 +02:00
use App\Models\Expense;
2017-01-30 20:40:43 +01:00
use App\Models\Invoice;
2016-05-01 21:30:39 +02:00
class CreateDocumentRequest extends DocumentRequest
{
protected $autoload = [
ENTITY_INVOICE,
ENTITY_EXPENSE,
];
2016-05-01 21:30:39 +02:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2017-01-30 17:05:31 +01:00
if (! $this->user()->hasFeature(FEATURE_DOCUMENTS)) {
return false;
}
if ($this->invoice && $this->user()->cannot('edit', $this->invoice)) {
return false;
}
if ($this->expense && $this->user()->cannot('edit', $this->expense)) {
return false;
}
return $this->user()->can('create', ENTITY_DOCUMENT);
2016-05-01 21:30:39 +02:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//'file' => 'mimes:jpg'
2016-05-01 21:30:39 +02:00
];
}
}