firefly-iii/app/Models/Tag.php

185 lines
4.6 KiB
PHP
Raw Normal View History

<?php
namespace FireflyIII\Models;
2016-01-09 09:09:26 -06:00
use Auth;
2016-01-01 14:49:27 -06:00
use Carbon\Carbon;
use Crypt;
2016-01-01 14:49:27 -06:00
use FireflyIII\User;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
2016-01-09 09:09:26 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2015-04-28 03:36:13 -05:00
use Watson\Validating\ValidatingTrait;
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\Tag
*
2016-01-01 14:49:27 -06:00
* @property integer $id
* @property Carbon $created_at
* @property Carbon $updated_at
* @property string $deleted_at
* @property integer $user_id
* @property string $tag
* @property string $tagMode
* @property Carbon $date
* @property string $description
* @property float $latitude
* @property float $longitude
* @property integer $zoomLevel
* @property-read Collection|TransactionJournal[] $transactionjournals
* @property-read User $user
*/
class Tag extends Model
{
2015-04-28 03:36:13 -05:00
use ValidatingTrait;
2015-04-28 03:36:13 -05:00
protected $fillable = ['user_id', 'tag', 'date', 'description', 'longitude', 'latitude', 'zoomLevel', 'tagMode'];
protected $rules
= [
'tag' => 'required|min:1',
2015-04-28 03:36:13 -05:00
'description' => 'min:1',
'date' => 'date',
'latitude' => 'numeric|min:-90|max:90',
'longitude' => 'numeric|min:-90|max:90',
'tagMode' => 'required|in:nothing,balancingAct,advancePayment'
];
/**
* @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';
2015-04-28 03:36:13 -05:00
$fields['description'] = isset($fields['description']) && !is_null($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;
}
/**
* @codeCoverageIgnore
* @return string[]
*/
public function getDates()
{
return ['created_at', 'updated_at', 'date'];
}
/**
* 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();
}
2015-06-15 12:25:54 -05:00
return parent::save($options);
}
/**
* @codeCoverageIgnore
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function transactionjournals()
{
return $this->belongsToMany('FireflyIII\Models\TransactionJournal');
}
/**
* @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);
}
/**
* @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\BelongsTo
*/
public function user()
{
return $this->belongsTo('FireflyIII\User');
}
2016-01-09 09:09:26 -06:00
public static function routeBinder(Tag $value)
{
if (Auth::check()) {
if ($value->user_id == Auth::user()->id) {
return $value;
}
}
throw new NotFoundHttpException;
}
}