mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 18:30:55 -06:00
148 lines
3.5 KiB
PHP
148 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Category.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
use Crypt;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
use Watson\Validating\ValidatingTrait;
|
|
|
|
/**
|
|
* Class Category
|
|
*
|
|
* @package FireflyIII\Models
|
|
*/
|
|
class Category extends Model
|
|
{
|
|
use SoftDeletes, ValidatingTrait;
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts
|
|
= [
|
|
'created_at' => 'date',
|
|
'updated_at' => 'date',
|
|
'deleted_at' => 'date',
|
|
'encrypted' => 'boolean',
|
|
];
|
|
/** @var array */
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
/** @var array */
|
|
protected $fillable = ['user_id', 'name'];
|
|
/** @var array */
|
|
protected $hidden = ['encrypted'];
|
|
/** @var array */
|
|
protected $rules = ['name' => 'required|between:1,200',];
|
|
|
|
/**
|
|
* @param array $fields
|
|
*
|
|
* @return Category
|
|
*/
|
|
public static function firstOrCreateEncrypted(array $fields)
|
|
{
|
|
// everything but the name:
|
|
$query = self::orderBy('id');
|
|
$search = $fields;
|
|
unset($search['name']);
|
|
foreach ($search as $name => $value) {
|
|
$query->where($name, $value);
|
|
}
|
|
$set = $query->get(['categories.*']);
|
|
/** @var Category $category */
|
|
foreach ($set as $category) {
|
|
if ($category->name == $fields['name']) {
|
|
return $category;
|
|
}
|
|
}
|
|
// create it!
|
|
$category = self::create($fields);
|
|
|
|
return $category;
|
|
|
|
}
|
|
|
|
/**
|
|
* @param Category $value
|
|
*
|
|
* @return Category
|
|
*/
|
|
public static function routeBinder(Category $value)
|
|
{
|
|
if (auth()->check()) {
|
|
if ($value->user_id == auth()->user()->id) {
|
|
return $value;
|
|
}
|
|
}
|
|
throw new NotFoundHttpException;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param $value
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNameAttribute($value)
|
|
{
|
|
|
|
if ($this->encrypted) {
|
|
return Crypt::decrypt($value);
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function setNameAttribute($value)
|
|
{
|
|
$encrypt = config('firefly.encryption');
|
|
$this->attributes['name'] = $encrypt ? Crypt::encrypt($value) : $value;
|
|
$this->attributes['encrypted'] = $encrypt;
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
*/
|
|
public function transactionJournals()
|
|
{
|
|
return $this->belongsToMany('FireflyIII\Models\TransactionJournal', 'category_transaction_journal', 'category_id');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
*/
|
|
public function transactions()
|
|
{
|
|
return $this->belongsToMany('FireflyIII\Models\Transaction', 'category_transaction', 'category_id');
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo('FireflyIII\User');
|
|
}
|
|
|
|
}
|