mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
baa3be728d
* Adds the ability to search by dates Adding extra „where“-conditions to the „TextSearch“ queries, allowing the users to search by dates * Adds missing dates to $dates in models * Removes duplicated „where“ conditions * Adds the Searchable trait to models, defining the searchable attributes and relations * Removes the old text search methods * Adds back additional conditions to the search These conditions could not be modeled in the „attributes“ or „relations“, so we include them here * Removes unnecessary check for the deleted_at attribute * Fixes typo in comments * suppresses errors from Codacy We can safely ignore the error codacy is throwing here, since this method is a standin/noop for models who need to implement more advanced searches
163 lines
4 KiB
PHP
Executable file
163 lines
4 KiB
PHP
Executable file
<?php
|
|
namespace App\Models;
|
|
|
|
use App\Http\Traits\UniqueUndeletedTrait;
|
|
use App\Models\SnipeModel;
|
|
use App\Models\Traits\Searchable;
|
|
use App\Presenters\Presentable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Watson\Validating\ValidatingTrait;
|
|
|
|
/**
|
|
* Model for Categories. Categories are a higher-level group
|
|
* than Asset Models, and handle things like whether or not
|
|
* to require acceptance from the user, whether or not to
|
|
* send a EULA to the user, etc.
|
|
*
|
|
* @version v1.0
|
|
*/
|
|
class Category extends SnipeModel
|
|
{
|
|
protected $presenter = 'App\Presenters\CategoryPresenter';
|
|
use Presentable;
|
|
use SoftDeletes;
|
|
protected $dates = ['deleted_at'];
|
|
protected $table = 'categories';
|
|
protected $hidden = ['user_id','deleted_at'];
|
|
|
|
/**
|
|
* Category validation rules
|
|
*/
|
|
public $rules = array(
|
|
'user_id' => 'numeric|nullable',
|
|
'name' => 'required|min:1|max:255|unique_undeleted',
|
|
'require_acceptance' => 'boolean',
|
|
'use_default_eula' => 'boolean',
|
|
'category_type' => 'required|in:asset,accessory,consumable,component,license',
|
|
);
|
|
|
|
/**
|
|
* Whether the model should inject it's identifier to the unique
|
|
* validation rules before attempting validation. If this property
|
|
* is not set in the model it will default to true.
|
|
*
|
|
* @var boolean
|
|
*/
|
|
protected $injectUniqueIdentifier = true;
|
|
use ValidatingTrait;
|
|
use UniqueUndeletedTrait;
|
|
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'category_type',
|
|
'checkin_email',
|
|
'eula_text',
|
|
'name',
|
|
'require_acceptance',
|
|
'use_default_eula',
|
|
'user_id',
|
|
];
|
|
|
|
use Searchable;
|
|
|
|
/**
|
|
* The attributes that should be included when searching the model.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $searchableAttributes = ['name', 'category_type'];
|
|
|
|
/**
|
|
* The relations and their attributes that should be included when searching the model.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $searchableRelations = [];
|
|
|
|
public function has_models()
|
|
{
|
|
return $this->hasMany('\App\Models\AssetModel', 'category_id')->count();
|
|
}
|
|
|
|
public function accessories()
|
|
{
|
|
return $this->hasMany('\App\Models\Accessory');
|
|
}
|
|
|
|
public function licenses()
|
|
{
|
|
return $this->hasMany('\App\Models\License');
|
|
}
|
|
|
|
public function consumables()
|
|
{
|
|
return $this->hasMany('\App\Models\Consumable');
|
|
}
|
|
|
|
public function components()
|
|
{
|
|
return $this->hasMany('\App\Models\Component');
|
|
}
|
|
|
|
public function itemCount()
|
|
{
|
|
switch ($this->category_type) {
|
|
case 'asset':
|
|
return $this->assets()->count();
|
|
case 'accessory':
|
|
return $this->accessories()->count();
|
|
case 'component':
|
|
return $this->components()->count();
|
|
case 'consumable':
|
|
return $this->consumables()->count();
|
|
}
|
|
return '0';
|
|
}
|
|
|
|
public function assets()
|
|
{
|
|
return $this->hasManyThrough('\App\Models\Asset', '\App\Models\AssetModel', 'category_id', 'model_id');
|
|
}
|
|
|
|
public function models()
|
|
{
|
|
return $this->hasMany('\App\Models\AssetModel', 'category_id');
|
|
}
|
|
|
|
public function getEula()
|
|
{
|
|
|
|
$Parsedown = new \Parsedown();
|
|
|
|
if ($this->eula_text) {
|
|
return $Parsedown->text(e($this->eula_text));
|
|
} elseif ((Setting::getSettings()->default_eula_text) && ($this->use_default_eula=='1')) {
|
|
return $Parsedown->text(e(Setting::getSettings()->default_eula_text));
|
|
} else {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* scopeRequiresAcceptance
|
|
*
|
|
* @param $query
|
|
*
|
|
* @return mixed
|
|
* @author Vincent Sposato <vincent.sposato@gmail.com>
|
|
* @version v1.0
|
|
*/
|
|
public function scopeRequiresAcceptance($query)
|
|
{
|
|
|
|
return $query->where('require_acceptance', '=', true);
|
|
}
|
|
}
|