. */ declare(strict_types=1); namespace FireflyIII\Models; use Crypt; use FireflyIII\User; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Support\Collection; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; /** * Class Tag. * * @property Collection $transactionJournals * @property string $tag * @property int $id * @property \Carbon\Carbon $date */ class Tag extends Model { use SoftDeletes; /** * The attributes that should be casted to native types. * * @var array */ protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'datetime', 'date' => 'date', 'zoomLevel' => 'int', ]; /** @var array */ protected $dates = ['date']; /** @var array */ protected $fillable = ['user_id', 'tag', 'date', 'description', 'longitude', 'latitude', 'zoomLevel', 'tagMode']; /** * @param array $fields * * @deprecated * @return Tag|null */ public static function firstOrCreateEncrypted(array $fields) { // everything but the tag: unset($fields['tagMode']); $search = $fields; unset($search['tag']); $query = self::orderBy('id'); foreach ($search as $name => $value) { $query->where($name, $value); } $set = $query->get(['tags.*']); /** @var Tag $tag */ foreach ($set as $tag) { if ($tag->tag === $fields['tag']) { return $tag; } } // create it! $fields['tagMode'] = 'nothing'; $fields['description'] = $fields['description'] ?? ''; $tag = self::create($fields); return $tag; } /** * @param string $value * * @return Tag * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ public static function routeBinder(string $value): Tag { if (auth()->check()) { $tagId = (int)$value; $tag = auth()->user()->tags()->find($tagId); if (null !== $tag) { return $tag; } } throw new NotFoundHttpException; } /** * @codeCoverageIgnore * * @param $value * * @return string * @throws \Illuminate\Contracts\Encryption\DecryptException */ public function getDescriptionAttribute($value) { if (null === $value) { return $value; } return Crypt::decrypt($value); } /** * @codeCoverageIgnore * * @param $value * * @return string * @throws \Illuminate\Contracts\Encryption\DecryptException */ public function getTagAttribute($value) { if (null === $value) { return null; } return Crypt::decrypt($value); } /** * @codeCoverageIgnore * * @param $value * * @throws \Illuminate\Contracts\Encryption\EncryptException */ public function setDescriptionAttribute($value) { $this->attributes['description'] = Crypt::encrypt($value); } /** * @codeCoverageIgnore * * @param $value * * @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(TransactionJournal::class); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user() { return $this->belongsTo(User::class); } }