mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
f786e07179
* Allow auto incrementing asset_id from the API when the setting is enabled * Cleaned up the if else statement * Added prefix to the orWhereRaw which causes a database error if the configuration uses a prefix * Auto incrementing through the API
68 lines
2 KiB
PHP
68 lines
2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\AssetModel;
|
|
use Session;
|
|
|
|
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 = [
|
|
'name' => 'max:255|nullable',
|
|
'model_id' => 'required|integer|exists:models,id',
|
|
'status_id' => 'required|integer|exists:status_labels,id',
|
|
'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',
|
|
"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',
|
|
];
|
|
|
|
$settings = \App\Models\Setting::getSettings();
|
|
|
|
$rules['asset_tag'] = ($settings->auto_increment_assets == '1') ? 'max:255' : 'required';
|
|
|
|
$model = AssetModel::find($this->request->get('model_id'));
|
|
|
|
if (($model) && ($model->fieldset)) {
|
|
$rules += $model->fieldset->validation_rules();
|
|
}
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
public function response(array $errors)
|
|
{
|
|
$this->session()->flash('errors', Session::get('errors', new \Illuminate\Support\ViewErrorBag)
|
|
->put('default', new \Illuminate\Support\MessageBag($errors)));
|
|
\Input::flash();
|
|
return parent::response($errors);
|
|
}
|
|
}
|