mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
147 lines
4.7 KiB
PHP
147 lines
4.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PiggyBankRepetition.php
|
|
* Copyright (c) 2019 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/>.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
|
|
/**
|
|
* FireflyIII\Models\PiggyBankRepetition
|
|
*
|
|
* @property int $id
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @property int $piggy_bank_id
|
|
* @property Carbon|null $startdate
|
|
* @property Carbon|null $targetdate
|
|
* @property string $currentamount
|
|
* @property-read PiggyBank $piggyBank
|
|
* @method static EloquentBuilder|PiggyBankRepetition newModelQuery()
|
|
* @method static EloquentBuilder|PiggyBankRepetition newQuery()
|
|
* @method static EloquentBuilder|PiggyBankRepetition onDates(Carbon $start, Carbon $target)
|
|
* @method static EloquentBuilder|PiggyBankRepetition query()
|
|
* @method static EloquentBuilder|PiggyBankRepetition relevantOnDate(Carbon $date)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereCreatedAt($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereCurrentamount($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereId($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition wherePiggyBankId($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereStartdate($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereTargetdate($value)
|
|
* @method static EloquentBuilder|PiggyBankRepetition whereUpdatedAt($value)
|
|
* @mixin Eloquent
|
|
*/
|
|
class PiggyBankRepetition extends Model
|
|
{
|
|
use ReturnsIntegerIdTrait;
|
|
|
|
protected $casts
|
|
= [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
'startdate' => 'date',
|
|
'targetdate' => 'date',
|
|
];
|
|
|
|
protected $fillable = ['piggy_bank_id', 'startdate', 'targetdate', 'currentamount'];
|
|
|
|
/**
|
|
* @return BelongsTo
|
|
*/
|
|
public function piggyBank(): BelongsTo
|
|
{
|
|
return $this->belongsTo(PiggyBank::class);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param EloquentBuilder $query
|
|
* @param Carbon $start
|
|
* @param Carbon $target
|
|
*
|
|
* @return EloquentBuilder
|
|
*/
|
|
public function scopeOnDates(EloquentBuilder $query, Carbon $start, Carbon $target): EloquentBuilder
|
|
{
|
|
return $query->where('startdate', $start->format('Y-m-d'))->where('targetdate', $target->format('Y-m-d'));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param EloquentBuilder $query
|
|
* @param Carbon $date
|
|
*
|
|
* @return EloquentBuilder
|
|
*/
|
|
public function scopeRelevantOnDate(EloquentBuilder $query, Carbon $date)
|
|
{
|
|
return $query->where(
|
|
static function (EloquentBuilder $q) use ($date) {
|
|
$q->where('startdate', '<=', $date->format('Y-m-d 00:00:00'));
|
|
$q->orWhereNull('startdate');
|
|
}
|
|
)
|
|
->where(
|
|
static function (EloquentBuilder $q) use ($date) {
|
|
$q->where('targetdate', '>=', $date->format('Y-m-d 00:00:00'));
|
|
$q->orWhereNull('targetdate');
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function setCurrentamountAttribute($value): void
|
|
{
|
|
$this->attributes['currentamount'] = (string)$value;
|
|
}
|
|
|
|
/**
|
|
* Get the amount
|
|
*
|
|
* @return Attribute
|
|
*/
|
|
protected function currentamount(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: static fn ($value) => (string)$value,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return Attribute
|
|
*/
|
|
protected function piggyBankId(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: static fn($value) => (int)$value,
|
|
);
|
|
}
|
|
}
|