Files
firefly-iii/app/Models/Account.php

368 lines
10 KiB
PHP
Raw Normal View History

2016-05-20 08:57:45 +02:00
<?php
/**
* Account.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:44:05 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2016-05-20 08:57:45 +02:00
namespace FireflyIII\Models;
2015-02-27 16:48:33 +01:00
use Carbon\Carbon;
2015-03-29 21:27:51 +02:00
use Crypt;
2016-07-02 20:40:23 +02:00
use FireflyIII\Exceptions\FireflyException;
use Illuminate\Contracts\Encryption\DecryptException;
2015-02-27 16:48:33 +01:00
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Eloquent\Model;
2016-04-06 09:27:45 +02:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
2015-02-27 16:48:33 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
2015-04-03 22:54:21 +02:00
use Illuminate\Database\Query\JoinClause;
2016-01-09 15:39:34 +01:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2015-02-27 16:48:33 +01:00
use Watson\Validating\ValidatingTrait;
2016-11-18 20:06:08 +01:00
/**
2017-11-15 12:25:49 +01:00
* Class Account.
2016-11-18 20:06:08 +01:00
*/
2015-02-27 16:48:33 +01:00
class Account extends Model
{
use SoftDeletes, ValidatingTrait;
2016-12-24 17:36:51 +01:00
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts
= [
2017-11-03 16:04:17 +01:00
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
2016-12-24 17:36:51 +01:00
'active' => 'boolean',
'encrypted' => 'boolean',
];
/** @var array */
2015-07-05 09:19:51 +02:00
protected $fillable = ['user_id', 'account_type_id', 'name', 'active', 'virtual_balance', 'iban'];
/** @var array */
2016-12-24 17:36:51 +01:00
protected $hidden = ['encrypted'];
2017-12-17 14:30:53 +01:00
/**
* @var array
*/
2015-02-27 16:48:33 +01:00
protected $rules
= [
2015-02-27 16:48:33 +01:00
'user_id' => 'required|exists:users,id',
'account_type_id' => 'required|exists:account_types,id',
2016-08-11 18:44:11 +02:00
'name' => 'required|between:1,200',
2016-01-15 22:32:21 +01:00
'active' => 'required|boolean',
2016-08-11 18:44:11 +02:00
'iban' => 'between:1,50|iban',
2015-02-27 16:48:33 +01:00
];
2017-11-15 12:25:49 +01:00
/** @var bool */
private $joinedAccountTypes;
2015-02-27 16:48:33 +01:00
2015-04-03 22:54:21 +02:00
/**
* @param array $fields
*
2017-01-02 10:05:02 +01:00
* @return Account
2017-11-15 12:25:49 +01:00
*
2017-01-02 10:05:02 +01:00
* @throws FireflyException
2015-04-03 22:54:21 +02:00
*/
public static function firstOrCreateEncrypted(array $fields)
{
2017-01-02 10:05:02 +01:00
if (!isset($fields['user_id'])) {
throw new FireflyException('Missing required field "user_id".');
}
2015-04-03 22:54:21 +02:00
// everything but the name:
2016-12-15 21:35:33 +01:00
$query = self::orderBy('id');
2015-07-07 09:46:19 +02:00
$search = $fields;
unset($search['name'], $search['iban']);
foreach ($search as $name => $value) {
$query->where($name, $value);
2015-04-03 22:54:21 +02:00
}
$set = $query->get(['accounts.*']);
2017-01-02 10:05:02 +01:00
// account must have a name. If not set, use IBAN.
if (!isset($fields['name'])) {
$fields['name'] = $fields['iban'];
}
2015-04-03 22:54:21 +02:00
/** @var Account $account */
foreach ($set as $account) {
2017-07-15 16:41:07 +02:00
if ($account->name === $fields['name']) {
2015-04-03 22:54:21 +02:00
return $account;
}
}
2015-07-05 14:37:36 +02:00
2015-04-03 22:54:21 +02:00
// create it!
2016-12-15 21:35:33 +01:00
$account = self::create($fields);
2015-04-07 18:26:14 +02:00
return $account;
2015-04-03 22:54:21 +02:00
}
/**
* @param Account $value
*
* @return Account
*/
2017-11-25 08:54:52 +01:00
public static function routeBinder(Account $value)
{
2016-09-16 12:07:45 +02:00
if (auth()->check()) {
if (intval($value->user_id) === auth()->user()->id) {
return $value;
}
}
throw new NotFoundHttpException;
}
2015-03-30 20:08:27 +02:00
/**
2016-04-06 09:27:45 +02:00
* @return HasMany
2015-03-30 20:08:27 +02:00
*/
2016-04-06 09:27:45 +02:00
public function accountMeta(): HasMany
2015-03-30 20:08:27 +02:00
{
return $this->hasMany('FireflyIII\Models\AccountMeta');
}
/**
2016-04-06 09:27:45 +02:00
* @return BelongsTo
2015-03-30 20:08:27 +02:00
*/
2016-04-06 09:27:45 +02:00
public function accountType(): BelongsTo
2015-03-30 20:08:27 +02:00
{
return $this->belongsTo('FireflyIII\Models\AccountType');
}
/**
* @return string
*/
public function getEditNameAttribute(): string
{
$name = $this->name;
2017-11-15 12:25:49 +01:00
if (AccountType::CASH === $this->accountType->type) {
return '';
}
return $name;
}
2015-07-03 12:51:14 +02:00
/**
2017-11-15 12:25:49 +01:00
* FIxxME can return null.
2015-07-03 12:51:14 +02:00
*
* @param $value
*
* @return string
2017-11-15 12:25:49 +01:00
*
* @throws FireflyException
2015-07-03 12:51:14 +02:00
*/
2016-04-06 09:27:45 +02:00
public function getIbanAttribute($value): string
2015-07-03 12:51:14 +02:00
{
2017-11-15 12:25:49 +01:00
if (null === $value || 0 === strlen(strval($value))) {
2016-04-06 09:27:45 +02:00
return '';
}
2016-07-02 20:40:23 +02:00
try {
$result = Crypt::decrypt($value);
} catch (DecryptException $e) {
throw new FireflyException('Cannot decrypt value "' . $value . '" for account #' . $this->id);
}
2017-11-15 12:25:49 +01:00
if (null === $result) {
2016-04-06 09:27:45 +02:00
return '';
2015-07-03 12:51:14 +02:00
}
2016-04-06 09:27:45 +02:00
return $result;
2015-07-03 12:51:14 +02:00
}
2015-02-27 16:48:33 +01:00
/**
* @param string $fieldName
*
2016-02-11 06:30:09 +01:00
* @return string
2015-02-27 16:48:33 +01:00
*/
2016-04-06 09:27:45 +02:00
public function getMeta(string $fieldName): string
2015-02-27 16:48:33 +01:00
{
foreach ($this->accountMeta as $meta) {
2017-07-15 16:41:07 +02:00
if ($meta->name === $fieldName) {
return strval($meta->data);
2015-02-27 16:48:33 +01:00
}
}
2016-02-11 06:30:09 +01:00
return '';
2015-02-27 16:48:33 +01:00
}
2015-04-03 22:54:21 +02:00
/**
* @param $value
*
* @return string
*/
2016-04-06 09:27:45 +02:00
public function getNameAttribute($value): string
2015-04-03 22:54:21 +02:00
{
2016-12-24 17:36:51 +01:00
if ($this->encrypted) {
2015-04-03 22:54:21 +02:00
return Crypt::decrypt($value);
}
2015-03-01 07:50:26 +01:00
2015-04-03 22:54:21 +02:00
return $value;
}
2015-03-01 07:50:26 +01:00
/**
2017-11-15 12:25:49 +01:00
* Returns the opening balance.
*
* @return TransactionJournal
2017-11-15 12:25:49 +01:00
*
*/
public function getOpeningBalance(): TransactionJournal
{
$journal = TransactionJournal::sortCorrectly()
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $this->id)
->transactionTypes([TransactionType::OPENING_BALANCE])
->first(['transaction_journals.*']);
2017-11-15 12:25:49 +01:00
if (null === $journal) {
return new TransactionJournal;
}
return $journal;
}
2016-10-10 06:50:24 +02:00
/**
* Returns the amount of the opening balance for this account.
*
* @return string
2017-11-15 12:25:49 +01:00
*
* @throws FireflyException
*/
public function getOpeningBalanceAmount(): string
{
2016-11-28 20:38:03 +01:00
$journal = TransactionJournal::sortCorrectly()
2016-12-14 18:59:12 +01:00
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $this->id)
->transactionTypes([TransactionType::OPENING_BALANCE])
->first(['transaction_journals.*']);
2017-11-15 12:25:49 +01:00
if (null === $journal) {
return '0';
}
$count = $journal->transactions()->count();
2017-11-15 12:25:49 +01:00
if (2 !== $count) {
throw new FireflyException(sprintf('Cannot use getFirstTransaction on journal #%d', $journal->id));
}
$transaction = $journal->transactions()->where('account_id', $this->id)->first();
2017-11-15 12:25:49 +01:00
if (null === $transaction) {
return '0';
}
return strval($transaction->amount);
}
/**
2017-11-15 12:25:49 +01:00
* Returns the date of the opening balance for this account. If no date, will return 01-01-1900.
*
* @return Carbon
2017-11-15 12:25:49 +01:00
*
2016-10-10 06:50:24 +02:00
*/
public function getOpeningBalanceDate(): Carbon
2016-10-10 06:50:24 +02:00
{
$date = new Carbon('1900-01-01');
2016-11-28 20:38:03 +01:00
$journal = TransactionJournal::sortCorrectly()
2016-12-14 18:59:12 +01:00
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $this->id)
->transactionTypes([TransactionType::OPENING_BALANCE])
->first(['transaction_journals.*']);
2017-11-15 12:25:49 +01:00
if (null === $journal) {
return $date;
2016-10-10 06:50:24 +02:00
}
return $journal->date;
2016-10-10 06:50:24 +02:00
}
2015-02-27 16:48:33 +01:00
/**
2016-04-06 09:27:45 +02:00
* @return HasMany
2015-02-27 16:48:33 +01:00
*/
2016-04-06 09:27:45 +02:00
public function piggyBanks(): HasMany
2015-02-27 16:48:33 +01:00
{
2015-03-30 20:08:27 +02:00
return $this->hasMany('FireflyIII\Models\PiggyBank');
2015-02-27 16:48:33 +01:00
}
/**
2015-03-30 20:08:27 +02:00
* @param EloquentBuilder $query
* @param array $types
2015-02-27 16:48:33 +01:00
*/
2015-03-30 20:08:27 +02:00
public function scopeAccountTypeIn(EloquentBuilder $query, array $types)
2015-02-27 16:48:33 +01:00
{
2017-11-15 12:25:49 +01:00
if (null === $this->joinedAccountTypes) {
2015-03-30 20:08:27 +02:00
$query->leftJoin('account_types', 'account_types.id', '=', 'accounts.account_type_id');
$this->joinedAccountTypes = true;
}
$query->whereIn('account_types.type', $types);
2015-02-27 16:48:33 +01:00
}
/**
2015-04-03 22:54:21 +02:00
* @param EloquentBuilder $query
* @param string $name
* @param string $value
2015-02-27 16:48:33 +01:00
*/
2015-04-03 22:54:21 +02:00
public function scopeHasMetaValue(EloquentBuilder $query, $name, $value)
2015-02-27 16:48:33 +01:00
{
2015-04-03 22:54:21 +02:00
$joinName = str_replace('.', '_', $name);
$query->leftJoin(
2017-11-15 10:52:29 +01:00
'account_meta as ' . $joinName,
function (JoinClause $join) use ($joinName, $name) {
$join->on($joinName . '.account_id', '=', 'accounts.id')->where($joinName . '.name', '=', $name);
}
2015-04-03 22:54:21 +02:00
);
$query->where($joinName . '.data', json_encode($value));
2015-02-27 16:48:33 +01:00
}
2015-07-03 12:51:14 +02:00
/**
* @param $value
*/
public function setIbanAttribute($value)
{
$this->attributes['iban'] = Crypt::encrypt($value);
}
/**
2015-04-03 22:54:21 +02:00
* @param $value
*/
2015-04-03 22:54:21 +02:00
public function setNameAttribute($value)
{
$encrypt = config('firefly.encryption');
$this->attributes['name'] = $encrypt ? Crypt::encrypt($value) : $value;
$this->attributes['encrypted'] = $encrypt;
}
2015-05-23 07:47:36 +02:00
/**
* @param $value
*/
public function setVirtualBalanceAttribute($value)
{
2016-12-30 13:45:02 +01:00
$this->attributes['virtual_balance'] = strval(round($value, 12));
2015-05-23 07:47:36 +02:00
}
2015-02-27 16:48:33 +01:00
/**
2016-04-06 09:27:45 +02:00
* @return HasMany
2015-02-27 16:48:33 +01:00
*/
2016-04-06 09:27:45 +02:00
public function transactions(): HasMany
2015-02-27 16:48:33 +01:00
{
return $this->hasMany('FireflyIII\Models\Transaction');
}
/**
2016-04-06 09:27:45 +02:00
* @return BelongsTo
2015-02-27 16:48:33 +01:00
*/
2016-04-06 09:27:45 +02:00
public function user(): BelongsTo
2015-02-27 16:48:33 +01:00
{
return $this->belongsTo('FireflyIII\User');
}
}