2025-09-25 19:07:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
2026-08-12 06:49:20 +02:00
|
|
|
/*
|
|
|
|
|
* PeriodStatistic.php
|
|
|
|
|
* Copyright (c) 2026 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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-09-25 19:11:11 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2025-09-25 19:07:02 +02:00
|
|
|
namespace FireflyIII\Models;
|
|
|
|
|
|
2026-03-06 13:52:11 +01:00
|
|
|
use Carbon\Carbon;
|
2025-09-25 19:07:02 +02:00
|
|
|
use FireflyIII\Casts\SeparateTimezoneCaster;
|
|
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerUserIdTrait;
|
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2025-09-27 16:07:03 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2025-09-25 19:07:02 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
|
|
2026-03-06 13:52:11 +01:00
|
|
|
/**
|
|
|
|
|
* @property Carbon $start
|
|
|
|
|
* @property Carbon $end
|
2026-03-09 20:56:09 +01:00
|
|
|
* @property string $amount
|
2026-03-06 13:52:11 +01:00
|
|
|
*/
|
2025-09-25 19:07:02 +02:00
|
|
|
class PeriodStatistic extends Model
|
|
|
|
|
{
|
|
|
|
|
use ReturnsIntegerUserIdTrait;
|
|
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
public function primaryStatable(): MorphTo
|
2025-09-25 19:07:02 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return $this->morphTo();
|
2025-09-25 19:07:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
public function secondaryStatable(): MorphTo
|
2025-09-27 16:07:03 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return $this->morphTo();
|
2025-09-27 16:07:03 +02:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
public function tertiaryStatable(): MorphTo
|
2025-09-25 19:07:02 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return $this->morphTo();
|
2025-09-25 19:07:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
public function userGroup(): BelongsTo
|
2025-09-25 19:07:02 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return $this->belongsTo(UserGroup::class);
|
2025-09-25 19:07:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
protected function casts(): array
|
2025-09-25 19:07:02 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return [
|
|
|
|
|
'created_at' => 'datetime',
|
|
|
|
|
'updated_at' => 'datetime',
|
|
|
|
|
'start' => SeparateTimezoneCaster::class,
|
|
|
|
|
'end' => SeparateTimezoneCaster::class,
|
|
|
|
|
];
|
2025-09-25 19:07:02 +02:00
|
|
|
}
|
2025-09-25 19:11:11 +02:00
|
|
|
|
2026-02-06 13:55:17 +01:00
|
|
|
protected function count(): Attribute
|
2025-09-25 19:07:02 +02:00
|
|
|
{
|
2026-02-06 13:55:17 +01:00
|
|
|
return Attribute::make(get: static fn ($value): int => (int) $value);
|
2025-09-25 19:07:02 +02:00
|
|
|
}
|
|
|
|
|
}
|