snipe-it/app/Models/PredefinedKit.php

183 lines
5.5 KiB
PHP
Raw Normal View History

2018-10-31 06:06:38 -07:00
<?php
2018-10-31 06:06:38 -07:00
namespace App\Models;
use App\Models\Traits\Searchable;
use App\Presenters\Presentable;
use Illuminate\Validation\Rule;
use Watson\Validating\ValidatingTrait;
2018-10-31 06:06:38 -07:00
/**
2019-02-23 11:44:03 -08:00
* Model for predefined kits.
*
2019-02-23 11:44:03 -08:00
* @author [D. Minaev.] [<dmitriy.minaev.v@gmail.com>]
2018-10-31 06:06:38 -07:00
* @version v1.0
*/
class PredefinedKit extends SnipeModel
{
protected $presenter = \App\Presenters\PredefinedKitPresenter::class;
2018-10-31 06:06:38 -07:00
use Presentable;
protected $table = 'kits';
/**
2019-02-23 11:44:03 -08:00
* Category validation rules
*/
public $rules = [
'name' => 'required|min:1|max:255|unique',
];
2018-10-31 06:06:38 -07:00
use ValidatingTrait;
public $modelRules = [
'model_id' => 'required|exists:models,id',
'quantity' => 'required|integer|min:1',
'pivot_id' => 'integer|exists:kits_models,id',
2018-10-31 06:06:38 -07:00
];
2019-02-23 11:44:03 -08:00
/**
* this rules use in edit an attached asset model form
* see PredefinedKit::_makeRuleHelper function for details
* @param int $model_id
* @param bool $new = true if append a new element to kit
*/
public function makeModelRules($model_id, $new = false)
2019-02-23 11:44:03 -08:00
{
return $this->_makeRuleHelper('models', 'kits_models', 'model_id', $model_id, $new);
}
2019-02-23 11:44:03 -08:00
/**
* this rules use in edit an attached license form
* see PredefinedKit::_makeRuleHelper function for details
* @param int $license_id
* @param bool $new = true if append a new element to kit
*/
public function makeLicenseRules($license_id, $new = false)
2019-02-23 11:44:03 -08:00
{
return $this->_makeRuleHelper('licenses', 'kits_licenses', 'license_id', $license_id, $new);
}
2019-02-23 11:44:03 -08:00
/**
* this rules use in edit an attached accessory form
* see PredefinedKit::_makeRuleHelper function for details
* @param int $accessoriy_id
* @param bool $new = true if append a new element to kit
*/
public function makeAccessoryRules($accessory_id, $new = false)
2019-02-23 11:44:03 -08:00
{
return $this->_makeRuleHelper('accessories', 'kits_accessories', 'accessory_id', $accessory_id, $new);
}
2019-02-23 11:44:03 -08:00
/**
* this rules use in edit an attached consumable form
* see PredefinedKit::_makeRuleHelper function for details
* @param int $consumable_id
* @param bool $new = true if append a new element to kit
*/
public function makeConsumableRules($consumable_id, $new = false)
2019-02-23 11:44:03 -08:00
{
return $this->_makeRuleHelper('consumables', 'kits_consumables', 'consumable_id', $consumable_id, $new);
}
2019-02-23 11:44:03 -08:00
/**
* Make rules for validation kit attached elements via Illuminate\Validation\Rule
* checks:
* uniqueness of the record in table for this kit
* existence of record in table
* and simple types check
* @param string $table element table name
* @param string $pivot_table kit+element table name
* @param string $pivot_elem_key element key name inside pivot table
* @param int $element_id
* @param bool $new = true if append a new element to kit
* @return array
*/
protected function _makeRuleHelper($table, $pivot_table, $pivot_elem_key, $element_id, $new)
{
$rule = [
$pivot_elem_key => [
'required',
"exists:$table,id",
Rule::unique($pivot_table)->whereNot($pivot_elem_key, $element_id)->where('kit_id', $this->id),
],
'quantity' => 'required|integer|min:1',
];
if (! $new) {
$rule['pivot_id'] = "integer|exists:$pivot_table,id";
}
return $rule;
}
2018-10-31 06:06:38 -07:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
2018-10-31 06:06:38 -07:00
];
use Searchable;
2019-02-23 11:44:03 -08:00
2018-10-31 06:06:38 -07:00
/**
2019-02-23 11:44:03 -08:00
* The attributes that should be included when searching the kit.
*
2018-10-31 06:06:38 -07:00
* @var array
*/
protected $searchableAttributes = ['name'];
/**
2019-02-23 11:44:03 -08:00
* The relations and their attributes that should be included when searching the kit.
*
2018-10-31 06:06:38 -07:00
* @var array
*/
protected $searchableRelations = [];
/**
* Establishes the kits -> models relationship
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
public function models()
{
return $this->belongsToMany(\App\Models\AssetModel::class, 'kits_models', 'kit_id', 'model_id')->withPivot('id', 'quantity');
2018-10-31 06:06:38 -07:00
}
public function assets()
{
return $this->hasManyThrough(\App\Models\Asset::class, \App\Models\AssetModel::class, 'country_id', 'user_id');
}
2018-10-31 06:06:38 -07:00
/**
* Establishes the kits -> licenses relationship
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
public function licenses()
{
return $this->belongsToMany(\App\Models\License::class, 'kits_licenses', 'kit_id', 'license_id')->withPivot('id', 'quantity');
2018-10-31 06:06:38 -07:00
}
/**
* Establishes the kits -> licenses relationship
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
public function consumables()
{
return $this->belongsToMany(\App\Models\Consumable::class, 'kits_consumables', 'kit_id', 'consumable_id')->withPivot('id', 'quantity');
}
/**
2019-02-23 11:44:03 -08:00
* Establishes the kits -> licenses relationship
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
public function accessories()
{
return $this->belongsToMany(\App\Models\Accessory::class, 'kits_accessories', 'kit_id', 'accessory_id')->withPivot('id', 'quantity');
}
2018-10-31 06:06:38 -07:00
/**
* -----------------------------------------------
* BEGIN QUERY SCOPES
* -----------------------------------------------
**/
}