2016-05-20 01:57:45 -05:00
|
|
|
<?php
|
2022-12-29 12:42:26 -06:00
|
|
|
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* Bill.php
|
2020-02-16 06:55:32 -06:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2016-05-20 05:41:23 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* 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.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2017-10-21 01:40:00 -05:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-01 23:37:26 -05:00
|
|
|
* GNU Affero General Public License for more details.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* 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/>.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
2017-04-09 00:44:22 -05:00
|
|
|
declare(strict_types=1);
|
2016-05-20 01:57:45 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Models;
|
2015-02-27 09:48:33 -06:00
|
|
|
|
2023-11-27 21:45:07 -06:00
|
|
|
use Carbon\Carbon;
|
2020-03-17 10:46:00 -05:00
|
|
|
use Eloquent;
|
2023-11-05 12:41:37 -06:00
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
|
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerUserIdTrait;
|
2018-04-08 09:27:52 -05:00
|
|
|
use FireflyIII\User;
|
2022-07-23 22:44:35 -05:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2021-03-28 04:46:23 -05:00
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2015-02-27 09:48:33 -06:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2016-04-06 02:27:45 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2018-07-25 23:10:17 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
2023-11-04 05:31:14 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
2017-09-01 14:22:55 -05:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-03-17 10:46:00 -05:00
|
|
|
use Illuminate\Database\Query\Builder;
|
2016-01-09 09:09:26 -06:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2018-02-09 12:11:55 -06:00
|
|
|
|
2016-11-18 13:06:08 -06:00
|
|
|
/**
|
2020-12-03 23:20:44 -06:00
|
|
|
* FireflyIII\Models\Bill
|
2018-05-26 00:53:32 -05:00
|
|
|
*
|
2023-12-20 12:35:52 -06:00
|
|
|
* @property int $id
|
|
|
|
* @property null|Carbon $created_at
|
|
|
|
* @property null|Carbon $updated_at
|
|
|
|
* @property null|Carbon $deleted_at
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int $transaction_currency_id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $match
|
|
|
|
* @property string $amount_min
|
|
|
|
* @property string $amount_max
|
|
|
|
* @property Carbon $date
|
|
|
|
* @property null|Carbon $end_date
|
|
|
|
* @property null|Carbon $extension_date
|
|
|
|
* @property string $repeat_freq
|
|
|
|
* @property int $skip
|
|
|
|
* @property bool $automatch
|
|
|
|
* @property bool $active
|
|
|
|
* @property bool $name_encrypted
|
|
|
|
* @property bool $match_encrypted
|
|
|
|
* @property int $order
|
|
|
|
* @property Attachment[]|Collection $attachments
|
|
|
|
* @property null|int $attachments_count
|
|
|
|
* @property Collection|Note[] $notes
|
|
|
|
* @property null|int $notes_count
|
|
|
|
* @property Collection|ObjectGroup[] $objectGroups
|
|
|
|
* @property null|int $object_groups_count
|
|
|
|
* @property null|TransactionCurrency $transactionCurrency
|
|
|
|
* @property Collection|TransactionJournal[] $transactionJournals
|
|
|
|
* @property null|int $transaction_journals_count
|
|
|
|
* @property User $user
|
|
|
|
*
|
2020-03-17 10:46:00 -05:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill newQuery()
|
2023-12-20 12:35:52 -06:00
|
|
|
* @method static Builder|Bill onlyTrashed()
|
2020-03-17 10:46:00 -05:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereActive($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereAmountMax($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereAmountMin($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereAutomatch($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereDeletedAt($value)
|
2020-12-03 23:20:44 -06:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereEndDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereExtensionDate($value)
|
2020-03-17 10:46:00 -05:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereMatch($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereMatchEncrypted($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereNameEncrypted($value)
|
2020-12-03 23:20:44 -06:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereOrder($value)
|
2020-03-17 10:46:00 -05:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereRepeatFreq($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereSkip($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereTransactionCurrencyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereUserId($value)
|
2023-12-20 12:35:52 -06:00
|
|
|
* @method static Builder|Bill withTrashed()
|
|
|
|
* @method static Builder|Bill withoutTrashed()
|
|
|
|
*
|
|
|
|
* @property int $user_group_id
|
|
|
|
*
|
2021-09-18 03:08:10 -05:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Bill whereUserGroupId($value)
|
2023-12-20 12:35:52 -06:00
|
|
|
*
|
2023-03-08 23:33:23 -06:00
|
|
|
* @mixin Eloquent
|
2016-11-18 13:06:08 -06:00
|
|
|
*/
|
2015-02-27 09:48:33 -06:00
|
|
|
class Bill extends Model
|
|
|
|
{
|
2023-11-05 12:41:37 -06:00
|
|
|
use ReturnsIntegerIdTrait;
|
|
|
|
use ReturnsIntegerUserIdTrait;
|
2023-11-05 13:18:16 -06:00
|
|
|
use SoftDeletes;
|
2023-11-05 02:54:53 -06:00
|
|
|
|
2016-12-24 10:36:51 -06:00
|
|
|
protected $casts
|
2024-01-01 07:43:56 -06:00
|
|
|
= [
|
2024-03-18 14:25:30 -05:00
|
|
|
'created_at' => 'datetime',
|
|
|
|
'updated_at' => 'datetime',
|
|
|
|
'deleted_at' => 'datetime',
|
|
|
|
'date' => 'date',
|
|
|
|
'end_date' => 'date',
|
|
|
|
'extension_date' => 'date',
|
|
|
|
'skip' => 'int',
|
|
|
|
'automatch' => 'boolean',
|
|
|
|
'active' => 'boolean',
|
|
|
|
'name_encrypted' => 'boolean',
|
|
|
|
'match_encrypted' => 'boolean',
|
|
|
|
];
|
2018-08-04 10:30:06 -05:00
|
|
|
|
2015-03-30 13:08:27 -05:00
|
|
|
protected $fillable
|
2024-01-01 07:43:56 -06:00
|
|
|
= [
|
2024-03-18 14:25:30 -05:00
|
|
|
'name',
|
|
|
|
'match',
|
|
|
|
'amount_min',
|
|
|
|
'user_id',
|
|
|
|
'user_group_id',
|
|
|
|
'amount_max',
|
|
|
|
'date',
|
|
|
|
'repeat_freq',
|
|
|
|
'skip',
|
|
|
|
'automatch',
|
|
|
|
'active',
|
|
|
|
'transaction_currency_id',
|
|
|
|
'end_date',
|
|
|
|
'extension_date',
|
|
|
|
];
|
2023-11-05 02:54:53 -06:00
|
|
|
|
2015-05-23 10:11:16 -05:00
|
|
|
protected $hidden = ['amount_min_encrypted', 'amount_max_encrypted', 'name_encrypted', 'match_encrypted'];
|
2016-03-29 08:55:14 -05:00
|
|
|
|
|
|
|
/**
|
2018-08-04 10:30:06 -05:00
|
|
|
* Route binder. Converts the key in the URL to the specified object (or throw 404).
|
|
|
|
*
|
2021-03-21 03:15:40 -05:00
|
|
|
* @throws NotFoundHttpException
|
2016-03-29 08:55:14 -05:00
|
|
|
*/
|
2023-11-04 08:18:49 -05:00
|
|
|
public static function routeBinder(string $value): self
|
2016-03-29 08:55:14 -05:00
|
|
|
{
|
2018-02-09 12:24:15 -06:00
|
|
|
if (auth()->check()) {
|
2022-12-29 12:42:26 -06:00
|
|
|
$billId = (int)$value;
|
2023-12-20 12:35:52 -06:00
|
|
|
|
2018-07-22 09:35:46 -05:00
|
|
|
/** @var User $user */
|
2024-01-01 07:43:56 -06:00
|
|
|
$user = auth()->user();
|
2023-12-20 12:35:52 -06:00
|
|
|
|
|
|
|
/** @var null|Bill $bill */
|
2024-01-01 07:43:56 -06:00
|
|
|
$bill = $user->bills()->find($billId);
|
2018-04-02 08:10:40 -05:00
|
|
|
if (null !== $bill) {
|
2017-12-25 01:45:23 -06:00
|
|
|
return $bill;
|
2016-03-29 08:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
2023-12-20 12:35:52 -06:00
|
|
|
|
2022-10-30 08:24:28 -05:00
|
|
|
throw new NotFoundHttpException();
|
2016-03-29 08:55:14 -05:00
|
|
|
}
|
2015-02-27 09:48:33 -06:00
|
|
|
|
2023-06-21 05:34:58 -05:00
|
|
|
public function user(): BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
2018-08-06 12:14:30 -05:00
|
|
|
public function attachments(): MorphMany
|
2017-11-25 13:54:42 -06:00
|
|
|
{
|
2018-04-27 23:23:13 -05:00
|
|
|
return $this->morphMany(Attachment::class, 'attachable');
|
2017-11-25 13:54:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all of the notes.
|
|
|
|
*/
|
2018-07-25 23:10:17 -05:00
|
|
|
public function notes(): MorphMany
|
2017-11-25 13:54:42 -06:00
|
|
|
{
|
2017-12-30 14:04:04 -06:00
|
|
|
return $this->morphMany(Note::class, 'noteable');
|
2017-11-25 13:54:42 -06:00
|
|
|
}
|
|
|
|
|
2020-06-30 12:06:05 -05:00
|
|
|
/**
|
2023-11-04 05:31:14 -05:00
|
|
|
* Get all the tags for the post.
|
2020-06-30 12:06:05 -05:00
|
|
|
*/
|
2023-11-04 05:31:14 -05:00
|
|
|
public function objectGroups(): MorphToMany
|
2020-06-30 12:06:05 -05:00
|
|
|
{
|
|
|
|
return $this->morphToMany(ObjectGroup::class, 'object_groupable');
|
|
|
|
}
|
|
|
|
|
2015-05-23 00:47:36 -05:00
|
|
|
/**
|
2023-06-21 05:34:58 -05:00
|
|
|
* @param mixed $value
|
2015-05-23 00:47:36 -05:00
|
|
|
*/
|
2018-07-22 09:35:46 -05:00
|
|
|
public function setAmountMaxAttribute($value): void
|
2015-05-23 00:47:36 -05:00
|
|
|
{
|
2022-12-29 12:42:26 -06:00
|
|
|
$this->attributes['amount_max'] = (string)$value;
|
2015-05-23 00:47:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-06-21 05:34:58 -05:00
|
|
|
* @param mixed $value
|
2015-05-23 00:47:36 -05:00
|
|
|
*/
|
2018-07-22 09:35:46 -05:00
|
|
|
public function setAmountMinAttribute($value): void
|
2015-05-23 00:47:36 -05:00
|
|
|
{
|
2022-12-29 12:42:26 -06:00
|
|
|
$this->attributes['amount_min'] = (string)$value;
|
2015-05-23 00:47:36 -05:00
|
|
|
}
|
|
|
|
|
2018-04-08 09:27:52 -05:00
|
|
|
public function transactionCurrency(): BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(TransactionCurrency::class);
|
|
|
|
}
|
|
|
|
|
2016-08-26 02:30:52 -05:00
|
|
|
public function transactionJournals(): HasMany
|
2015-02-27 09:48:33 -06:00
|
|
|
{
|
2018-04-08 09:27:52 -05:00
|
|
|
return $this->hasMany(TransactionJournal::class);
|
2015-02-27 09:48:33 -06:00
|
|
|
}
|
|
|
|
|
2022-07-23 22:44:35 -05:00
|
|
|
/**
|
|
|
|
* Get the max amount
|
|
|
|
*/
|
|
|
|
protected function amountMax(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-12-20 12:35:52 -06:00
|
|
|
get: static fn ($value) => (string)$value,
|
2022-07-23 22:44:35 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-11-27 21:45:07 -06:00
|
|
|
/**
|
2023-12-09 23:51:59 -06:00
|
|
|
* Get the min amount
|
2023-11-27 21:45:07 -06:00
|
|
|
*/
|
2023-12-09 23:51:59 -06:00
|
|
|
protected function amountMin(): Attribute
|
2023-11-27 21:45:07 -06:00
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-12-20 12:35:52 -06:00
|
|
|
get: static fn ($value) => (string)$value,
|
2023-11-27 21:45:07 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-12-09 23:51:59 -06:00
|
|
|
protected function order(): Attribute
|
2022-07-23 22:44:35 -05:00
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-12-20 12:35:52 -06:00
|
|
|
get: static fn ($value) => (int)$value,
|
2022-07-23 22:44:35 -05:00
|
|
|
);
|
|
|
|
}
|
2023-11-05 12:41:37 -06:00
|
|
|
|
|
|
|
/**
|
2023-12-09 23:51:59 -06:00
|
|
|
* Get the skip
|
2023-11-05 12:41:37 -06:00
|
|
|
*/
|
2023-12-09 23:51:59 -06:00
|
|
|
protected function skip(): Attribute
|
2023-11-05 12:41:37 -06:00
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-12-20 12:35:52 -06:00
|
|
|
get: static fn ($value) => (int)$value,
|
2023-11-05 12:41:37 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-12-09 23:51:59 -06:00
|
|
|
protected function transactionCurrencyId(): Attribute
|
2023-11-05 12:55:39 -06:00
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-12-20 12:35:52 -06:00
|
|
|
get: static fn ($value) => (int)$value,
|
2023-11-05 12:55:39 -06:00
|
|
|
);
|
|
|
|
}
|
2015-02-27 09:48:33 -06:00
|
|
|
}
|