. */ declare(strict_types=1); namespace FireflyIII\Models; use FireflyIII\Casts\SeparateTimezoneCaster; use FireflyIII\Handlers\Observer\DeletedTagObserver; use FireflyIII\Support\Models\ReturnsIntegerIdTrait; use FireflyIII\Support\Models\ReturnsIntegerUserIdTrait; use FireflyIII\User; use Illuminate\Database\Eloquent\Attributes\ObservedBy; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use Illuminate\Database\Eloquent\Relations\MorphMany; use Illuminate\Database\Eloquent\SoftDeletes; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; #[ObservedBy([DeletedTagObserver::class])] class Tag extends Model { use ReturnsIntegerIdTrait; use ReturnsIntegerUserIdTrait; use SoftDeletes; protected $fillable = ['user_id', 'user_group_id', 'tag', 'date', 'date_tz', 'description', 'tag_mode']; protected $hidden = ['zoomLevel', 'zoom_level', 'latitude', 'longitude']; /** * Route binder. Converts the key in the URL to the specified object (or throw 404). * * @throws NotFoundHttpException */ public static function routeBinder(self|string $value): self { if ($value instanceof self) { $value = (int) $value->id; } if (auth()->check()) { $tagId = (int) $value; /** @var User $user */ $user = auth()->user(); /** @var null|Tag $tag */ $tag = $user->tags()->find($tagId); if (null !== $tag) { return $tag; } } throw new NotFoundHttpException(); } public function attachments(): MorphMany { return $this->morphMany(Attachment::class, 'attachable'); } public function locations(): MorphMany { return $this->morphMany(Location::class, 'locatable'); } public function primaryPeriodStatistics(): MorphMany { return $this->morphMany(PeriodStatistic::class, 'primary_statable'); } public function transactionJournals(): BelongsToMany { return $this->belongsToMany(TransactionJournal::class); } public function user(): BelongsTo { return $this->belongsTo(User::class); } protected function casts(): array { return [ 'created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'datetime', 'date' => SeparateTimezoneCaster::class, 'zoomLevel' => 'int', 'latitude' => 'float', 'longitude' => 'float', 'user_id' => 'integer', 'user_group_id' => 'integer', ]; } }