firefly-iii/app/Models/Tag.php

182 lines
4.6 KiB
PHP
Raw Normal View History

<?php
/**
* Tag.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
2017-10-21 01:40:00 -05:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:44:05 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
2017-03-24 09:01:53 -05:00
declare(strict_types=1);
namespace FireflyIII\Models;
use Crypt;
use Illuminate\Database\Eloquent\Model;
2016-12-24 10:36:51 -06:00
use Illuminate\Database\Eloquent\SoftDeletes;
2016-01-09 09:09:26 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2016-08-11 11:44:11 -05:00
use Watson\Validating\ValidatingTrait;
2016-11-18 13:06:08 -06:00
/**
2017-11-15 05:25:49 -06:00
* Class Tag.
2016-11-18 13:06:08 -06:00
*/
class Tag extends Model
{
2017-03-24 09:01:53 -05:00
use ValidatingTrait, SoftDeletes;
2016-12-24 10:36:51 -06:00
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts
2017-11-03 10:04:17 -05:00
= [
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
2016-12-24 10:36:51 -06:00
'date' => 'date',
'zoomLevel' => 'int',
];
2017-11-03 10:04:17 -05:00
/** @var array */
protected $dates = ['date'];
/** @var array */
protected $fillable = ['user_id', 'tag', 'date', 'description', 'longitude', 'latitude', 'zoomLevel', 'tagMode'];
2017-11-03 10:04:17 -05:00
/** @var array */
2017-11-15 05:25:49 -06:00
protected $rules = ['tag' => 'required|between:1,200'];
2015-04-28 03:36:13 -05:00
/**
* @param array $fields
*
* @return Tag|null
*/
public static function firstOrCreateEncrypted(array $fields)
{
// everything but the tag:
2015-07-07 02:46:19 -05:00
unset($fields['tagMode']);
$search = $fields;
unset($search['tag']);
2015-07-07 02:46:19 -05:00
2016-12-15 14:35:33 -06:00
$query = self::orderBy('id');
2015-07-07 02:46:19 -05:00
foreach ($search as $name => $value) {
$query->where($name, $value);
2015-04-28 03:36:13 -05:00
}
$set = $query->get(['tags.*']);
/** @var Tag $tag */
foreach ($set as $tag) {
2017-07-15 09:41:07 -05:00
if ($tag->tag === $fields['tag']) {
2015-04-28 03:36:13 -05:00
return $tag;
}
}
// create it!
2015-05-03 05:58:55 -05:00
$fields['tagMode'] = 'nothing';
$fields['description'] = $fields['description'] ?? '';
2016-12-15 14:35:33 -06:00
$tag = self::create($fields);
2015-04-28 03:36:13 -05:00
return $tag;
}
/**
* @param string $value
*
* @return Tag
2018-03-29 12:01:47 -05:00
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
2018-02-09 12:24:15 -06:00
public static function routeBinder(string $value): Tag
{
if (auth()->check()) {
$tagId = intval($value);
$tag = auth()->user()->tags()->find($tagId);
if (!is_null($tag)) {
return $tag;
}
}
throw new NotFoundHttpException;
}
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param $value
*
* @return string
2018-03-29 12:01:47 -05:00
* @throws \Illuminate\Contracts\Encryption\DecryptException
*/
public function getDescriptionAttribute($value)
{
2017-11-15 05:25:49 -06:00
if (null === $value) {
return $value;
}
return Crypt::decrypt($value);
}
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param $value
*
* @return string
2018-03-29 12:01:47 -05:00
* @throws \Illuminate\Contracts\Encryption\DecryptException
*/
public function getTagAttribute($value)
{
2017-11-15 05:25:49 -06:00
if (null === $value) {
2017-06-22 14:50:10 -05:00
return null;
}
2017-07-07 01:09:42 -05:00
return Crypt::decrypt($value);
}
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param $value
2018-03-29 12:01:47 -05:00
*
* @throws \Illuminate\Contracts\Encryption\EncryptException
*/
public function setDescriptionAttribute($value)
{
$this->attributes['description'] = Crypt::encrypt($value);
}
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param $value
2018-03-29 12:01:47 -05:00
* @throws \Illuminate\Contracts\Encryption\EncryptException
*/
public function setTagAttribute($value)
{
$this->attributes['tag'] = Crypt::encrypt($value);
}
/**
* @codeCoverageIgnore
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function transactionJournals()
{
return $this->belongsToMany('FireflyIII\Models\TransactionJournal');
}
2016-01-09 09:09:26 -06:00
/**
* @codeCoverageIgnore
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function user()
2016-01-09 09:09:26 -06:00
{
return $this->belongsTo('FireflyIII\User');
2016-01-09 09:09:26 -06:00
}
}