2015-04-28 01:58:01 -05:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* Tag.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* 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.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
|
|
|
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2015-04-28 01:58:01 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
|
|
|
|
use Crypt;
|
2016-04-26 01:09:10 -05:00
|
|
|
use FireflyIII\Support\Models\TagSupport;
|
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;
|
2015-04-28 01:58:01 -05:00
|
|
|
|
|
|
|
/**
|
2016-01-01 14:49:27 -06:00
|
|
|
* FireflyIII\Models\Tag
|
2015-04-28 01:58:01 -05:00
|
|
|
*
|
2016-01-28 15:06:16 -06:00
|
|
|
* @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
|
2016-03-12 00:36:23 -06:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereTag($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereTagMode($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereDate($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereDescription($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereLatitude($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereLongitude($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Tag whereZoomLevel($value)
|
|
|
|
* @mixin \Eloquent
|
2015-04-28 01:58:01 -05:00
|
|
|
*/
|
2016-04-26 01:09:10 -05:00
|
|
|
class Tag extends TagSupport
|
2015-04-28 01:58:01 -05:00
|
|
|
{
|
2016-01-15 15:32:21 -06:00
|
|
|
protected $dates = ['created_at', 'updated_at', 'date'];
|
2016-01-27 12:35:00 -06:00
|
|
|
protected $fillable = ['user_id', 'tag', 'date', 'description', 'longitude', 'latitude', 'zoomLevel', 'tagMode'];
|
2016-08-11 11:44:11 -05:00
|
|
|
protected $rules = ['tag' => 'required|between:1,200',];
|
|
|
|
|
|
|
|
use ValidatingTrait;
|
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;
|
2015-07-17 10:34:49 -05:00
|
|
|
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';
|
2016-02-05 01:03:26 -06:00
|
|
|
$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;
|
|
|
|
|
|
|
|
}
|
2015-04-28 01:58:01 -05:00
|
|
|
|
2015-06-14 04:52:07 -05:00
|
|
|
/**
|
2016-01-27 12:35:00 -06:00
|
|
|
* @param Tag $value
|
2015-06-14 04:52:07 -05:00
|
|
|
*
|
2016-01-27 12:35:00 -06:00
|
|
|
* @return Tag
|
2015-06-14 04:52:07 -05:00
|
|
|
*/
|
2016-01-27 12:35:00 -06:00
|
|
|
public static function routeBinder(Tag $value)
|
2015-06-14 04:52:07 -05:00
|
|
|
{
|
2016-09-16 05:07:45 -05:00
|
|
|
if (auth()->check()) {
|
2016-09-16 05:15:58 -05:00
|
|
|
if ($value->user_id == auth()->user()->id) {
|
2016-01-27 12:35:00 -06:00
|
|
|
return $value;
|
|
|
|
}
|
2015-06-14 04:52:07 -05:00
|
|
|
}
|
2016-01-27 12:35:00 -06:00
|
|
|
throw new NotFoundHttpException;
|
2015-06-14 04:52:07 -05:00
|
|
|
}
|
|
|
|
|
2016-04-03 06:56:06 -05:00
|
|
|
/**
|
|
|
|
* @param Tag $tag
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function tagSum(Tag $tag): string
|
|
|
|
{
|
|
|
|
$sum = '0';
|
|
|
|
/** @var TransactionJournal $journal */
|
|
|
|
foreach ($tag->transactionjournals as $journal) {
|
|
|
|
bcadd($sum, TransactionJournal::amount($journal));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sum;
|
|
|
|
}
|
|
|
|
|
2015-04-28 01:58:01 -05:00
|
|
|
/**
|
2015-05-14 02:51:54 -05:00
|
|
|
*
|
2015-04-28 01:58:01 -05:00
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getDescriptionAttribute($value)
|
|
|
|
{
|
2015-06-20 15:18:54 -05:00
|
|
|
if (is_null($value)) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2015-04-28 01:58:01 -05:00
|
|
|
return Crypt::decrypt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-14 02:51:54 -05:00
|
|
|
*
|
2015-04-28 01:58:01 -05:00
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTagAttribute($value)
|
|
|
|
{
|
|
|
|
return Crypt::decrypt($value);
|
|
|
|
}
|
|
|
|
|
2016-01-27 12:35:00 -06:00
|
|
|
/**
|
|
|
|
* Save the model to the database.
|
|
|
|
*
|
|
|
|
* @param array $options
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function save(array $options = [])
|
|
|
|
{
|
2016-08-26 02:30:52 -05:00
|
|
|
foreach ($this->transactionJournals()->get() as $journal) {
|
2016-01-27 12:35:00 -06:00
|
|
|
$count = $journal->tags()->count();
|
|
|
|
$journal->tag_count = $count;
|
|
|
|
$journal->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::save($options);
|
|
|
|
}
|
|
|
|
|
2015-04-28 01:58:01 -05:00
|
|
|
/**
|
2015-05-14 02:51:54 -05:00
|
|
|
*
|
2015-04-28 01:58:01 -05:00
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setDescriptionAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['description'] = Crypt::encrypt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-14 02:51:54 -05:00
|
|
|
*
|
2015-04-28 01:58:01 -05:00
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setTagAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['tag'] = Crypt::encrypt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-27 12:35:00 -06:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
2015-04-28 01:58:01 -05:00
|
|
|
*/
|
2016-08-26 02:30:52 -05:00
|
|
|
public function transactionJournals()
|
2015-04-28 01:58:01 -05:00
|
|
|
{
|
2016-01-27 12:35:00 -06:00
|
|
|
return $this->belongsToMany('FireflyIII\Models\TransactionJournal');
|
2015-04-28 01:58:01 -05:00
|
|
|
}
|
2016-01-09 09:09:26 -06:00
|
|
|
|
2016-01-15 10:38:09 -06:00
|
|
|
/**
|
2016-01-27 12:35:00 -06:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2016-01-15 10:38:09 -06:00
|
|
|
*/
|
2016-01-27 12:35:00 -06:00
|
|
|
public function user()
|
2016-01-09 09:09:26 -06:00
|
|
|
{
|
2016-01-27 12:35:00 -06:00
|
|
|
return $this->belongsTo('FireflyIII\User');
|
2016-01-09 09:09:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-05 05:51:57 -05:00
|
|
|
}
|