2020-06-05 06:25:39 +02:00
|
|
|
<?php
|
2020-06-30 19:05:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ObjectGroup.php
|
|
|
|
* Copyright (c) 2020 james@firefly-iii.org
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-06-05 06:25:39 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Models;
|
2021-08-28 15:47:09 +02:00
|
|
|
|
2023-12-10 06:51:59 +01:00
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
|
2023-11-05 19:41:37 +01:00
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerUserIdTrait;
|
2020-06-20 16:28:23 +02:00
|
|
|
use FireflyIII\User;
|
2023-11-05 19:41:37 +01:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2020-06-05 06:25:39 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-06-20 16:28:23 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2021-05-24 08:50:17 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
2020-06-20 10:10:55 +02:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2023-12-10 06:51:59 +01:00
|
|
|
|
2020-06-05 06:25:39 +02:00
|
|
|
class ObjectGroup extends Model
|
|
|
|
{
|
2023-11-05 19:41:37 +01:00
|
|
|
use ReturnsIntegerIdTrait;
|
|
|
|
use ReturnsIntegerUserIdTrait;
|
2023-11-05 09:54:53 +01:00
|
|
|
|
2020-06-20 16:28:23 +02:00
|
|
|
protected $casts
|
2021-09-18 10:26:12 +02:00
|
|
|
= [
|
2024-03-18 20:25:30 +01:00
|
|
|
'created_at' => 'datetime',
|
|
|
|
'updated_at' => 'datetime',
|
|
|
|
'user_id' => 'integer',
|
|
|
|
'deleted_at' => 'datetime',
|
|
|
|
];
|
2023-08-11 19:37:28 +02:00
|
|
|
protected $fillable = ['title', 'order', 'user_id', 'user_group_id'];
|
2020-06-20 16:28:23 +02:00
|
|
|
|
2020-06-05 06:25:39 +02:00
|
|
|
/**
|
2021-08-28 15:47:09 +02:00
|
|
|
* Route binder. Converts the key in the URL to the specified object (or throw 404).
|
|
|
|
*
|
|
|
|
* @throws NotFoundHttpException
|
2020-06-05 06:25:39 +02:00
|
|
|
*/
|
2023-11-04 14:18:49 +01:00
|
|
|
public static function routeBinder(string $value): self
|
2020-06-05 06:25:39 +02:00
|
|
|
{
|
2021-08-28 15:47:09 +02:00
|
|
|
if (auth()->check()) {
|
2024-12-22 08:43:12 +01:00
|
|
|
$objectGroupId = (int) $value;
|
2023-12-20 19:35:52 +01:00
|
|
|
|
|
|
|
/** @var null|ObjectGroup $objectGroup */
|
2024-01-01 14:43:56 +01:00
|
|
|
$objectGroup = self::where('object_groups.id', $objectGroupId)
|
2023-12-20 19:35:52 +01:00
|
|
|
->where('object_groups.user_id', auth()->user()->id)->first()
|
|
|
|
;
|
2021-08-28 15:47:09 +02:00
|
|
|
if (null !== $objectGroup) {
|
|
|
|
return $objectGroup;
|
|
|
|
}
|
|
|
|
}
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2022-10-30 14:24:28 +01:00
|
|
|
throw new NotFoundHttpException();
|
2020-06-05 06:25:39 +02:00
|
|
|
}
|
2020-06-20 10:10:55 +02:00
|
|
|
|
2023-06-21 12:34:58 +02:00
|
|
|
public function user(): BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:05:35 +02:00
|
|
|
/**
|
2021-05-24 08:50:17 +02:00
|
|
|
* @return MorphToMany
|
2020-06-30 19:05:35 +02:00
|
|
|
*/
|
2021-08-28 15:47:09 +02:00
|
|
|
public function accounts()
|
2020-06-30 19:05:35 +02:00
|
|
|
{
|
2021-08-28 15:47:09 +02:00
|
|
|
return $this->morphedByMany(Account::class, 'object_groupable');
|
2020-06-30 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
2020-07-24 16:40:42 +02:00
|
|
|
/**
|
2021-05-24 08:50:17 +02:00
|
|
|
* @return MorphToMany
|
2020-07-24 16:40:42 +02:00
|
|
|
*/
|
2021-08-28 15:47:09 +02:00
|
|
|
public function bills()
|
2020-07-24 16:40:42 +02:00
|
|
|
{
|
2021-08-28 15:47:09 +02:00
|
|
|
return $this->morphedByMany(Bill::class, 'object_groupable');
|
2020-07-24 16:40:42 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 10:10:55 +02:00
|
|
|
/**
|
2021-08-28 15:47:09 +02:00
|
|
|
* @return MorphToMany
|
2020-06-20 10:10:55 +02:00
|
|
|
*/
|
2021-08-28 15:47:09 +02:00
|
|
|
public function piggyBanks()
|
2020-06-20 10:10:55 +02:00
|
|
|
{
|
2021-08-28 15:47:09 +02:00
|
|
|
return $this->morphedByMany(PiggyBank::class, 'object_groupable');
|
2020-06-20 10:10:55 +02:00
|
|
|
}
|
2023-11-05 19:41:37 +01:00
|
|
|
|
|
|
|
protected function order(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2024-12-22 08:43:12 +01:00
|
|
|
get: static fn ($value) => (int) $value,
|
2023-11-05 19:41:37 +01:00
|
|
|
);
|
|
|
|
}
|
2020-06-05 06:25:39 +02:00
|
|
|
}
|