firefly-iii/app/Models/Transaction.php

311 lines
15 KiB
PHP
Raw Normal View History

2016-05-20 01:57:45 -05:00
<?php
/**
* Transaction.php
2020-02-16 06:55:32 -06:00
* 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.
2017-10-21 01:40:00 -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
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -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/>.
*/
declare(strict_types=1);
2016-05-20 01:57:45 -05:00
namespace FireflyIII\Models;
2015-02-27 09:48:33 -06:00
2015-04-07 11:26:14 -05:00
use Carbon\Carbon;
use Eloquent;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
2018-06-10 09:59:41 -05:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
2018-08-04 10:30:06 -05:00
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\SoftDeletes;
2015-04-07 11:26:14 -05:00
2016-11-18 13:06:08 -06:00
/**
2017-11-15 05:25:49 -06:00
* Class Transaction.
2017-08-18 07:45:42 -05:00
*
* @property int $journal_id
* @property Carbon $date
* @property string $transaction_description
* @property string $transaction_amount
* @property string $transaction_foreign_amount
* @property string $transaction_type_type
* @property string $foreign_currency_symbol
* @property int $foreign_currency_dp
* @property int $account_id
* @property string $account_name
* @property string $account_iban
* @property string $account_number
* @property string $account_bic
* @property string $account_type
* @property string $account_currency_code
* @property int $opposing_account_id
* @property string $opposing_account_name
* @property string $opposing_account_iban
* @property string $opposing_account_number
* @property string $opposing_account_bic
* @property string $opposing_account_type
* @property string $opposing_currency_code
* @property int $transaction_budget_id
* @property string $transaction_budget_name
* @property int $transaction_journal_budget_id
* @property string $transaction_journal_budget_name
* @property int $transaction_category_id
* @property string $transaction_category_name
* @property int $transaction_journal_category_id
* @property string $transaction_journal_category_name
* @property int $bill_id
* @property string $bill_name
* @property string $bill_name_encrypted
* @property string $notes
* @property string $tags
* @property string $transaction_currency_name
* @property string $transaction_currency_symbol
* @property int $transaction_currency_dp
* @property string $transaction_currency_code
* @property string $description
* @property bool $is_split
* @property int $attachmentCount
* @property int $transaction_currency_id
* @property int $foreign_currency_id
* @property string $amount
* @property string $foreign_amount
* @property TransactionJournal $transactionJournal
* @property Account $account
* @property int $identifier
* @property int $id
* @property TransactionCurrency $transactionCurrency
* @property int $transaction_journal_id
* @property TransactionCurrency $foreignCurrency
* @property string $before // used in audit reports.
* @property string $after // used in audit reports.
* @property int $opposing_id // ID of the opposing transaction, used in collector
* @property bool $encrypted // is the journal encrypted
* @property bool reconciled
* @property string transaction_category_encrypted
* @property string transaction_journal_category_encrypted
* @property string transaction_budget_encrypted
* @property string transaction_journal_budget_encrypted
* @property string type
* @property string name
* @property Carbon created_at
* @property Carbon updated_at
* @property string foreign_currency_code
2019-03-05 10:26:49 -06:00
* @SuppressWarnings (PHPMD.TooManyPublicMethods)
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read Collection|Budget[] $budgets
* @property-read Collection|Category[] $categories
* @method static Builder|Transaction after(Carbon $date)
* @method static Builder|Transaction before(Carbon $date)
2019-03-05 10:26:49 -06:00
* @method static bool|null forceDelete()
* @method static Builder|Transaction newModelQuery()
* @method static Builder|Transaction newQuery()
* @method static \Illuminate\Database\Query\Builder|Transaction onlyTrashed()
* @method static Builder|Transaction query()
2019-03-05 10:26:49 -06:00
* @method static bool|null restore()
* @method static Builder|Transaction transactionTypes($types)
* @method static Builder|Transaction whereAccountId($value)
* @method static Builder|Transaction whereAmount($value)
* @method static Builder|Transaction whereCreatedAt($value)
* @method static Builder|Transaction whereDeletedAt($value)
* @method static Builder|Transaction whereDescription($value)
* @method static Builder|Transaction whereForeignAmount($value)
* @method static Builder|Transaction whereForeignCurrencyId($value)
* @method static Builder|Transaction whereId($value)
* @method static Builder|Transaction whereIdentifier($value)
* @method static Builder|Transaction whereReconciled($value)
* @method static Builder|Transaction whereTransactionCurrencyId($value)
* @method static Builder|Transaction whereTransactionJournalId($value)
* @method static Builder|Transaction whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|Transaction withTrashed()
* @method static \Illuminate\Database\Query\Builder|Transaction withoutTrashed()
* @mixin Eloquent
2020-03-25 00:58:29 -05:00
* @property-read int|null $budgets_count
* @property-read int|null $categories_count
2020-04-05 00:10:59 -05:00
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property bool $reconciled
2016-11-18 13:06:08 -06:00
*/
2015-02-27 09:48:33 -06:00
class Transaction extends Model
{
2018-08-04 10:30:06 -05:00
use SoftDeletes;
2016-12-24 10:36:51 -06:00
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts
2017-12-22 11:32:43 -06:00
= [
2017-11-03 10:04:17 -05:00
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
'identifier' => 'int',
'encrypted' => 'boolean', // model does not have these fields though
'bill_name_encrypted' => 'boolean',
'reconciled' => 'boolean',
2016-12-24 10:36:51 -06:00
];
2018-08-04 10:30:06 -05:00
/** @var array Fields that can be filled */
2017-06-05 04:12:50 -05:00
protected $fillable
2017-12-22 11:32:43 -06:00
= ['account_id', 'transaction_journal_id', 'description', 'amount', 'identifier', 'transaction_currency_id', 'foreign_currency_id',
2018-03-10 15:38:20 -06:00
'foreign_amount', 'reconciled'];
2018-08-04 10:30:06 -05:00
/** @var array Hidden from view */
2017-06-05 04:12:50 -05:00
protected $hidden = ['encrypted'];
2015-02-27 09:48:33 -06:00
/**
2018-08-04 10:30:06 -05:00
* Check if a table is joined.
*
* @param Builder $query
* @param string $table
*
* @return bool
2018-08-04 10:30:06 -05:00
* @codeCoverageIgnore
*/
2016-12-14 11:59:12 -06:00
public static function isJoined(Builder $query, string $table): bool
{
$joins = $query->getQuery()->joins;
2017-11-15 05:25:49 -06:00
if (null === $joins) {
return false;
}
foreach ($joins as $join) {
if ($join->table === $table) {
return true;
}
}
return false;
}
2015-02-27 09:48:33 -06:00
/**
2018-08-04 10:30:06 -05:00
* Get the account this object belongs to.
*
* @codeCoverageIgnore
2018-08-04 10:30:06 -05:00
* @return BelongsTo
2015-02-27 09:48:33 -06:00
*/
2018-07-22 09:35:46 -05:00
public function account(): BelongsTo
2015-02-27 09:48:33 -06:00
{
2018-04-27 23:23:13 -05:00
return $this->belongsTo(Account::class);
2015-02-27 09:48:33 -06:00
}
/**
2018-08-04 10:30:06 -05:00
* Get the budget(s) this object belongs to.
*
* @codeCoverageIgnore
2018-08-04 10:30:06 -05:00
* @return BelongsToMany
*/
2018-08-04 10:30:06 -05:00
public function budgets(): BelongsToMany
{
2018-04-27 23:23:13 -05:00
return $this->belongsToMany(Budget::class);
}
/**
2018-08-04 10:30:06 -05:00
* Get the category(ies) this object belongs to.
*
* @codeCoverageIgnore
2018-08-04 10:30:06 -05:00
* @return BelongsToMany
*/
2018-08-04 10:30:06 -05:00
public function categories(): BelongsToMany
{
2018-04-27 23:23:13 -05:00
return $this->belongsToMany(Category::class);
}
2017-06-05 04:12:50 -05:00
/**
2018-08-04 10:30:06 -05:00
* Get the currency this object belongs to.
*
* @codeCoverageIgnore
2018-08-04 10:30:06 -05:00
* @return BelongsTo
2017-06-05 04:12:50 -05:00
*/
2018-07-22 09:35:46 -05:00
public function foreignCurrency(): BelongsTo
2017-06-05 04:12:50 -05:00
{
2018-04-27 23:23:13 -05:00
return $this->belongsTo(TransactionCurrency::class, 'foreign_currency_id');
2017-06-05 04:12:50 -05:00
}
2015-04-03 15:54:21 -05:00
/**
2018-08-04 10:30:06 -05:00
* Check for transactions AFTER a specified date.
*
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param Builder $query
* @param Carbon $date
2015-04-03 15:54:21 -05:00
*/
2018-07-22 09:35:46 -05:00
public function scopeAfter(Builder $query, Carbon $date): void
2015-04-03 15:54:21 -05:00
{
if (!self::isJoined($query, 'transaction_journals')) {
$query->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id');
}
$query->where('transaction_journals.date', '>=', $date->format('Y-m-d 00:00:00'));
2015-04-03 15:54:21 -05:00
}
/**
2018-08-04 10:30:06 -05:00
* Check for transactions BEFORE the specified date.
2018-08-06 12:14:30 -05:00
*
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param Builder $query
2016-05-15 11:36:40 -05:00
* @param Carbon $date
2015-04-03 15:54:21 -05:00
*/
2018-07-22 09:35:46 -05:00
public function scopeBefore(Builder $query, Carbon $date): void
2015-04-03 15:54:21 -05:00
{
if (!self::isJoined($query, 'transaction_journals')) {
$query->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id');
}
$query->where('transaction_journals.date', '<=', $date->format('Y-m-d 23:59:59'));
2015-04-03 15:54:21 -05:00
}
2015-02-27 09:48:33 -06:00
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param Builder $query
* @param array $types
2015-02-27 09:48:33 -06:00
*/
2018-07-22 09:35:46 -05:00
public function scopeTransactionTypes(Builder $query, array $types): void
2015-02-27 09:48:33 -06:00
{
if (!self::isJoined($query, 'transaction_journals')) {
$query->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id');
}
2015-02-27 09:48:33 -06:00
if (!self::isJoined($query, 'transaction_types')) {
$query->leftJoin('transaction_types', 'transaction_types.id', '=', 'transaction_journals.transaction_type_id');
}
$query->whereIn('transaction_types.type', $types);
2015-02-27 09:48:33 -06:00
}
/**
* @codeCoverageIgnore
2017-12-29 02:05:35 -06:00
*
* @param $value
*/
2018-07-22 09:35:46 -05:00
public function setAmountAttribute($value): void
{
$this->attributes['amount'] = (string) $value;
}
/**
* @codeCoverageIgnore
2018-06-10 09:59:41 -05:00
* @return BelongsTo
*/
2018-06-10 09:59:41 -05:00
public function transactionCurrency(): BelongsTo
{
2018-04-27 23:23:13 -05:00
return $this->belongsTo(TransactionCurrency::class);
}
/**
* @codeCoverageIgnore
2018-06-10 09:59:41 -05:00
* @return BelongsTo
*/
2018-06-10 09:59:41 -05:00
public function transactionJournal(): BelongsTo
{
2018-04-27 23:23:13 -05:00
return $this->belongsTo(TransactionJournal::class);
}
2015-02-27 09:48:33 -06:00
}