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

50 lines
1.1 KiB
PHP
Raw Normal View History

2016-04-28 14:16:33 +02:00
<?php namespace App\Http\Requests;
use App\Http\Requests\Request;
use Input;
use Utils;
2016-05-01 13:31:10 +02:00
class EntityRequest extends Request {
2016-04-28 14:16:33 +02:00
protected $entityType;
private $entity;
public function entity()
{
if ($this->entity) {
return $this->entity;
}
2016-05-01 13:31:10 +02:00
2016-04-28 14:20:34 +02:00
$paramName = $this->entityType . 's';
$publicId = $this->$paramName ?: (Input::get('public_id') ?: Input::get('id'));
2016-04-28 14:16:33 +02:00
if ( ! $publicId) {
return null;
}
$class = Utils::getEntityClass($this->entityType);
2016-05-01 21:30:39 +02:00
if (method_exists($class, 'withTrashed')) {
$this->entity = $class::scope($publicId)->withTrashed()->firstOrFail();
} else {
$this->entity = $class::scope($publicId)->firstOrFail();
}
2016-04-28 14:16:33 +02:00
return $this->entity;
}
2016-05-01 13:31:10 +02:00
public function authorize()
{
if ($this->entity()) {
return $this->user()->can('view', $this->entity());
} else {
return $this->user()->can('create', $this->entityType);
}
}
public function rules()
{
return [];
}
2016-04-28 14:16:33 +02:00
}