2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
namespace App\Models;
|
|
|
|
|
2018-07-16 14:13:07 -07:00
|
|
|
use App\Models\Traits\Searchable;
|
2016-12-23 17:52:00 -08:00
|
|
|
use App\Presenters\Presentable;
|
2021-06-10 13:19:27 -07:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2016-03-25 01:18:05 -07:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-09-29 21:33:52 -07:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2019-03-13 20:12:03 -07:00
|
|
|
use Watson\Validating\ValidatingTrait;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-04-07 13:21:09 -07:00
|
|
|
/**
|
|
|
|
* Model for Asset Models. Asset Models contain higher level
|
|
|
|
* attributes that are common among the same type of asset.
|
|
|
|
*
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
class AssetModel extends SnipeModel
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2021-06-10 13:17:44 -07:00
|
|
|
use HasFactory;
|
2016-03-25 01:18:05 -07:00
|
|
|
use SoftDeletes;
|
2021-06-10 13:16:56 -07:00
|
|
|
protected $presenter = \App\Presenters\AssetModelPresenter::class;
|
2022-06-28 15:50:07 -07:00
|
|
|
use Loggable, Requestable, Presentable;
|
2021-06-10 13:17:18 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
protected $table = 'models';
|
2021-06-10 13:15:52 -07:00
|
|
|
protected $hidden = ['user_id', 'deleted_at'];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
// Declare the rules for the model validation
|
2021-06-10 13:15:52 -07:00
|
|
|
protected $rules = [
|
2020-04-22 06:37:40 -07:00
|
|
|
'name' => 'required|min:1|max:255',
|
2017-09-22 04:43:28 -07:00
|
|
|
'model_number' => 'max:255|nullable',
|
2017-01-13 07:14:32 -08:00
|
|
|
'category_id' => 'required|integer|exists:categories,id',
|
2021-12-02 13:40:16 -08:00
|
|
|
'manufacturer_id' => 'integer|exists:manufacturers,id|nullable',
|
2020-04-22 06:37:40 -07:00
|
|
|
'eol' => 'integer:min:0|max:240|nullable',
|
2021-06-10 13:15:52 -07:00
|
|
|
];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
/**
|
2021-06-10 13:15:52 -07:00
|
|
|
* 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 bool
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
protected $injectUniqueIdentifier = true;
|
|
|
|
use ValidatingTrait;
|
|
|
|
|
2016-12-29 14:02:18 -08:00
|
|
|
public function setEolAttribute($value)
|
|
|
|
{
|
2016-12-26 15:17:46 -08:00
|
|
|
if ($value == '') {
|
|
|
|
$value = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->attributes['eol'] = $value;
|
|
|
|
}
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-02-25 12:10:02 -08:00
|
|
|
protected $fillable = [
|
|
|
|
'category_id',
|
|
|
|
'depreciation_id',
|
|
|
|
'eol',
|
|
|
|
'fieldset_id',
|
|
|
|
'image',
|
|
|
|
'manufacturer_id',
|
|
|
|
'model_number',
|
|
|
|
'name',
|
|
|
|
'notes',
|
|
|
|
'user_id',
|
|
|
|
];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-16 14:13:07 -07:00
|
|
|
use Searchable;
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2018-07-16 14:13:07 -07:00
|
|
|
/**
|
|
|
|
* The attributes that should be included when searching the model.
|
2021-06-10 13:15:52 -07:00
|
|
|
*
|
2018-07-16 14:13:07 -07:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $searchableAttributes = ['name', 'model_number', 'notes', 'eol'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The relations and their attributes that should be included when searching the model.
|
2021-06-10 13:15:52 -07:00
|
|
|
*
|
2018-07-16 14:13:07 -07:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $searchableRelations = [
|
|
|
|
'depreciation' => ['name'],
|
|
|
|
'category' => ['name'],
|
|
|
|
'manufacturer' => ['name'],
|
2018-08-01 00:06:41 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Establishes the model -> assets relationship
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function assets()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->hasMany(\App\Models\Asset::class, 'model_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Establishes the model -> category relationship
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function category()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->belongsTo(\App\Models\Category::class, 'category_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Establishes the model -> depreciation relationship
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function depreciation()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->belongsTo(\App\Models\Depreciation::class, 'depreciation_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Establishes the model -> manufacturer relationship
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function manufacturer()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->belongsTo(\App\Models\Manufacturer::class, 'manufacturer_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Establishes the model -> fieldset relationship
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v2.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function fieldset()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->belongsTo(\App\Models\CustomFieldset::class, 'fieldset_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Establishes the model -> custom field default values relationship
|
|
|
|
*
|
|
|
|
* @author hannah tinkler
|
|
|
|
* @since [v4.3]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2018-04-23 21:16:55 -07:00
|
|
|
public function defaultValues()
|
|
|
|
{
|
2021-06-10 13:16:56 -07:00
|
|
|
return $this->belongsToMany(\App\Models\CustomField::class, 'models_custom_fields')->withPivot('default_value');
|
2018-04-23 21:16:55 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
/**
|
|
|
|
* Gets the full url for the image
|
|
|
|
*
|
|
|
|
* @todo this should probably be moved
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v2.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
2021-06-10 13:15:52 -07:00
|
|
|
public function getImageUrl()
|
|
|
|
{
|
2018-04-04 17:33:02 -07:00
|
|
|
if ($this->image) {
|
2018-09-29 21:33:52 -07:00
|
|
|
return Storage::disk('public')->url(app('models_upload_path').$this->image);
|
2018-04-04 17:33:02 -07:00
|
|
|
}
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2018-04-04 17:33:02 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-06-28 15:50:07 -07:00
|
|
|
/**
|
|
|
|
* Get uploads for this model
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
|
|
|
*/
|
|
|
|
public function uploads()
|
|
|
|
{
|
|
|
|
return $this->hasMany('\App\Models\Actionlog', 'item_id')
|
|
|
|
->where('item_type', '=', AssetModel::class)
|
|
|
|
->where('action_type', '=', 'uploaded')
|
|
|
|
->whereNotNull('filename')
|
|
|
|
->orderBy('created_at', 'desc');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
2021-06-10 13:15:52 -07:00
|
|
|
* -----------------------------------------------
|
|
|
|
* BEGIN QUERY SCOPES
|
|
|
|
* -----------------------------------------------
|
|
|
|
**/
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* scopeInCategory
|
|
|
|
* Get all models that are in the array of category ids
|
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
* @param array $categoryIdListing
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @author Vincent Sposato <vincent.sposato@gmail.com>
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
|
|
|
public function scopeInCategory($query, array $categoryIdListing)
|
|
|
|
{
|
|
|
|
return $query->whereIn('category_id', $categoryIdListing);
|
|
|
|
}
|
|
|
|
|
2016-09-15 19:58:27 -07:00
|
|
|
/**
|
|
|
|
* scopeRequestable
|
|
|
|
* Get all models that are requestable by a user.
|
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
*
|
|
|
|
* @return $query
|
2018-06-20 01:59:59 -07:00
|
|
|
* @author Daniel Meltzer <dmeltzer.devel@gmail.com>
|
2016-09-15 19:58:27 -07:00
|
|
|
* @version v3.5
|
|
|
|
*/
|
|
|
|
public function scopeRequestableModels($query)
|
|
|
|
{
|
|
|
|
return $query->where('requestable', '1');
|
2021-06-10 13:15:52 -07:00
|
|
|
}
|
2017-02-03 20:20:03 -08:00
|
|
|
|
2017-12-04 20:19:30 -08:00
|
|
|
/**
|
|
|
|
* Query builder scope to search on text, including catgeory and manufacturer name
|
|
|
|
*
|
|
|
|
* @param Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param text $search Search term
|
|
|
|
*
|
|
|
|
* @return Illuminate\Database\Query\Builder Modified query builder
|
|
|
|
*/
|
|
|
|
public function scopeSearchByManufacturerOrCat($query, $search)
|
|
|
|
{
|
|
|
|
return $query->where('models.name', 'LIKE', "%$search%")
|
|
|
|
->orWhere('model_number', 'LIKE', "%$search%")
|
|
|
|
->orWhere(function ($query) use ($search) {
|
|
|
|
$query->whereHas('category', function ($query) use ($search) {
|
|
|
|
$query->where('categories.name', 'LIKE', '%'.$search.'%');
|
|
|
|
});
|
|
|
|
})
|
|
|
|
->orWhere(function ($query) use ($search) {
|
|
|
|
$query->whereHas('manufacturer', function ($query) use ($search) {
|
|
|
|
$query->where('manufacturers.name', 'LIKE', '%'.$search.'%');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-02-03 20:20:03 -08:00
|
|
|
/**
|
|
|
|
* Query builder scope to order on manufacturer
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param text $order Order
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Query\Builder Modified query builder
|
|
|
|
*/
|
|
|
|
public function scopeOrderManufacturer($query, $order)
|
|
|
|
{
|
|
|
|
return $query->leftJoin('manufacturers', 'models.manufacturer_id', '=', 'manufacturers.id')->orderBy('manufacturers.name', $order);
|
|
|
|
}
|
|
|
|
|
2017-12-04 20:19:30 -08:00
|
|
|
/**
|
|
|
|
* Query builder scope to order on category name
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param text $order Order
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Query\Builder Modified query builder
|
|
|
|
*/
|
|
|
|
public function scopeOrderCategory($query, $order)
|
|
|
|
{
|
|
|
|
return $query->leftJoin('categories', 'models.category_id', '=', 'categories.id')->orderBy('categories.name', $order);
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|