snipe-it/app/Models/PredefinedKit.php

184 lines
5.4 KiB
PHP
Raw Normal View History

2018-10-31 06:06:38 -07:00
<?php
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.
*
* @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';
use Presentable;
protected $table = 'kits';
/**
2019-02-23 11:44:03 -08:00
* Category validation rules
*/
2018-10-31 06:06:38 -07:00
public $rules = array(
2019-02-23 11:44:03 -08:00
'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'
];
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
*/
2019-02-27 14:37:58 -08:00
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
*/
2019-02-27 14:37:58 -08:00
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
*/
2019-02-27 14:37:58 -08:00
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
*/
2019-02-27 14:37:58 -08:00
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'
];
2019-02-23 11:44:03 -08:00
if (!$new) {
$rule['pivot_id'] = "integer|exists:$pivot_table,id";
2019-02-23 11:44:03 -08:00
}
return $rule;
}
2018-10-31 06:06:38 -07:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name'
];
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', 'kits_models', 'kit_id', 'model_id')->withPivot('id', 'quantity');
}
public function assets()
{
return $this->hasManyThrough('\App\Models\Asset', '\App\Models\AssetModel', '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', 'kits_licenses', 'kit_id', 'license_id')->withPivot('id', 'quantity');
}
/**
* Establishes the kits -> licenses relationship
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
public function consumables()
{
return $this->belongsToMany('\App\Models\Consumable', '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', 'kits_accessories', 'kit_id', 'accessory_id')->withPivot('id', 'quantity');
}
2018-10-31 06:06:38 -07:00
/**
* -----------------------------------------------
* BEGIN QUERY SCOPES
* -----------------------------------------------
**/
}