snipe-it/app/Models/CustomFieldset.php

93 lines
2.4 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace App\Models;
use Gate;
use Illuminate\Database\Eloquent\Model;
use Watson\Validating\ValidatingTrait;
2016-03-25 01:18:05 -07:00
class CustomFieldset extends Model
{
use ValidatingTrait;
2016-03-25 01:18:05 -07:00
protected $guarded=["id"];
/**
* Validation rules
* @var array
*/
public $rules = [
"name" => "required|unique:custom_fieldsets"
2016-03-25 01:18:05 -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 boolean
*/
protected $injectUniqueIdentifier = true;
/**
* Establishes the fieldset -> field relationship
*
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
* @since [v3.0]
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
2016-03-25 01:18:05 -07:00
public function fields()
{
return $this->belongsToMany('\App\Models\CustomField')->withPivot(["required","order"])->orderBy("pivot_order");
}
/**
* Establishes the fieldset -> models relationship
*
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
* @since [v3.0]
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
2016-03-25 01:18:05 -07:00
public function models()
{
return $this->hasMany('\App\Models\AssetModel', "fieldset_id");
}
/**
* Establishes the fieldset -> admin user relationship
*
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
* @since [v3.0]
* @return \Illuminate\Database\Eloquent\Relations\Relation
*/
2016-03-25 01:18:05 -07:00
public function user()
{
return $this->belongsTo('\App\Models\User'); //WARNING - not all CustomFieldsets have a User!!
}
/**
* Determine the validation rules we should apply based on the
* custom field format
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v3.0]
* @return array
*/
2016-03-25 01:18:05 -07:00
public function validation_rules()
{
$rules=[];
foreach ($this->fields as $field) {
$rule = [];
if (($field->field_encrypted!='1') ||
2016-12-29 14:02:18 -08:00
(($field->field_encrypted =='1') && (Gate::allows('admin')) )) {
2017-09-29 03:44:23 -07:00
$rule[] = ($field->pivot->required=='1') ? "required" : "nullable";
2016-03-25 01:18:05 -07:00
}
2016-03-25 01:18:05 -07:00
array_push($rule, $field->attributes['format']);
$rules[$field->db_column_name()]=$rule;
}
return $rules;
}
}