2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2016-03-25 19:26:22 -07:00
|
|
|
use App\Models\AssetModel;
|
2016-05-20 17:23:34 -07:00
|
|
|
use Session;
|
2016-06-22 12:27:41 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
class AssetRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [
|
2017-01-12 02:19:36 -08:00
|
|
|
'name' => 'max:255|nullable',
|
2017-01-12 02:41:02 -08:00
|
|
|
'model_id' => 'required|integer|exists:models,id',
|
|
|
|
'status_id' => 'required|integer|exists:status_labels,id',
|
2016-12-29 08:10:52 -08:00
|
|
|
'company_id' => 'integer|nullable',
|
|
|
|
'warranty_months' => 'numeric|nullable',
|
|
|
|
'physical' => 'integer|nullable',
|
|
|
|
'checkout_date' => 'date',
|
|
|
|
'checkin_date' => 'date',
|
|
|
|
'supplier_id' => 'integer|nullable',
|
|
|
|
'status' => 'integer|nullable',
|
|
|
|
'purchase_cost' => 'numeric|nullable',
|
2016-12-29 22:23:36 -08:00
|
|
|
"assigned_user" => 'sometimes:required_without_all:assigned_asset,assigned_location',
|
|
|
|
"assigned_asset" => 'sometimes:required_without_all:assigned_user,assigned_location',
|
|
|
|
"assigned_location" => 'sometimes:required_without_all:assigned_user,assigned_asset',
|
2016-03-25 01:18:05 -07:00
|
|
|
];
|
|
|
|
|
2018-01-03 17:24:32 -08:00
|
|
|
$settings = \App\Models\Setting::getSettings();
|
|
|
|
|
|
|
|
$rules['asset_tag'] = ($settings->auto_increment_assets == '1') ? 'max:255' : 'required';
|
|
|
|
|
2018-07-12 18:24:43 -07:00
|
|
|
if($this->request->get('model_id') != '') {
|
|
|
|
$model = AssetModel::find($this->request->get('model_id'));
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-12 18:24:43 -07:00
|
|
|
if (($model) && ($model->fieldset)) {
|
|
|
|
$rules += $model->fieldset->validation_rules();
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function response(array $errors)
|
|
|
|
{
|
2016-05-20 17:23:34 -07:00
|
|
|
$this->session()->flash('errors', Session::get('errors', new \Illuminate\Support\ViewErrorBag)
|
|
|
|
->put('default', new \Illuminate\Support\MessageBag($errors)));
|
2016-06-09 18:28:49 -07:00
|
|
|
\Input::flash();
|
2016-05-20 17:23:34 -07:00
|
|
|
return parent::response($errors);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
}
|