firefly-iii/app/Models/Tag.php

167 lines
4.5 KiB
PHP
Raw Normal View History

<?php
namespace FireflyIII\Models;
2016-01-09 09:09:26 -06:00
use Auth;
use Crypt;
use Illuminate\Database\Eloquent\Model;
2016-01-09 09:09:26 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\Tag
*
* @property integer $id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property string $deleted_at
* @property integer $user_id
* @property string $tag
* @property string $tagMode
* @property \Carbon\Carbon $date
* @property string $description
* @property float $latitude
* @property float $longitude
* @property integer $zoomLevel
* @property-read \Illuminate\Database\Eloquent\Collection|TransactionJournal[] $transactionjournals
* @property-read \FireflyIII\User $user
* @property int $account_id
*/
class Tag extends Model
{
2016-01-15 15:32:21 -06:00
protected $dates = ['created_at', 'updated_at', 'date'];
protected $fillable = ['user_id', 'tag', 'date', 'description', 'longitude', 'latitude', 'zoomLevel', 'tagMode'];
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
2015-04-28 03:36:13 -05:00
$query = Tag::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) {
if ($tag->tag == $fields['tag']) {
return $tag;
}
}
// create it!
2015-05-03 05:58:55 -05:00
$fields['tagMode'] = 'nothing';
$fields['description'] = $fields['description'] ?? '';
2015-05-03 05:58:55 -05:00
$tag = Tag::create($fields);
2015-04-28 03:36:13 -05:00
return $tag;
}
/**
* @param Tag $value
*
* @return Tag
*/
public static function routeBinder(Tag $value)
{
if (Auth::check()) {
if ($value->user_id == Auth::user()->id) {
return $value;
}
}
throw new NotFoundHttpException;
}
/**
* @codeCoverageIgnore
2015-05-14 02:51:54 -05:00
*
* @param $value
*
* @return string
*/
public function getDescriptionAttribute($value)
{
if (is_null($value)) {
return $value;
}
return Crypt::decrypt($value);
}
/**
* @codeCoverageIgnore
2015-05-14 02:51:54 -05:00
*
* @param $value
*
* @return string
*/
public function getTagAttribute($value)
{
return Crypt::decrypt($value);
}
/**
* Save the model to the database.
*
* @param array $options
*
* @return bool
*/
public function save(array $options = [])
{
foreach ($this->transactionjournals()->get() as $journal) {
$count = $journal->tags()->count();
$journal->tag_count = $count;
$journal->save();
}
return parent::save($options);
}
/**
* @codeCoverageIgnore
2015-05-14 02:51:54 -05:00
*
* @param $value
*/
public function setDescriptionAttribute($value)
{
$this->attributes['description'] = Crypt::encrypt($value);
}
/**
* @codeCoverageIgnore
2015-05-14 02:51:54 -05:00
*
* @param $value
*/
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
}
}