2015-02-09 00:23:39 -06:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* JournalRepository.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
|
|
|
|
2017-03-24 09:01:53 -05:00
|
|
|
declare(strict_types=1);
|
2015-02-09 00:23:39 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Journal;
|
|
|
|
|
2015-02-24 15:53:38 -06:00
|
|
|
use FireflyIII\Models\Account;
|
|
|
|
use FireflyIII\Models\TransactionJournal;
|
|
|
|
use FireflyIII\Models\TransactionType;
|
2016-03-03 01:55:43 -06:00
|
|
|
use FireflyIII\User;
|
2016-10-21 14:41:31 -05:00
|
|
|
use Illuminate\Support\Collection;
|
2016-10-30 00:14:07 -05:00
|
|
|
use Illuminate\Support\MessageBag;
|
2015-04-03 15:54:21 -05:00
|
|
|
use Log;
|
2016-10-30 00:14:07 -05:00
|
|
|
use Preferences;
|
2015-02-24 15:53:38 -06:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
/**
|
|
|
|
* Class JournalRepository
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Journal
|
|
|
|
*/
|
|
|
|
class JournalRepository implements JournalRepositoryInterface
|
|
|
|
{
|
2017-06-07 01:18:42 -05:00
|
|
|
use CreateJournalsTrait, UpdateJournalsTrait, SupportJournalsTrait;
|
|
|
|
|
2016-03-03 01:55:43 -06:00
|
|
|
/** @var User */
|
|
|
|
private $user;
|
2016-09-09 04:19:40 -05:00
|
|
|
/** @var array */
|
2017-10-03 03:30:56 -05:00
|
|
|
private $validMetaFields = ['interest_date', 'book_date', 'process_date', 'due_date', 'payment_date', 'invoice_date', 'internal_reference'];
|
2016-09-09 04:19:40 -05:00
|
|
|
|
2016-10-30 00:14:07 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
* @param TransactionType $type
|
|
|
|
* @param Account $source
|
|
|
|
* @param Account $destination
|
|
|
|
*
|
|
|
|
* @return MessageBag
|
|
|
|
*/
|
|
|
|
public function convert(TransactionJournal $journal, TransactionType $type, Account $source, Account $destination): MessageBag
|
|
|
|
{
|
|
|
|
// default message bag that shows errors for everything.
|
|
|
|
$messages = new MessageBag;
|
|
|
|
$messages->add('source_account_revenue', trans('firefly.invalid_convert_selection'));
|
|
|
|
$messages->add('destination_account_asset', trans('firefly.invalid_convert_selection'));
|
|
|
|
$messages->add('destination_account_expense', trans('firefly.invalid_convert_selection'));
|
|
|
|
$messages->add('source_account_asset', trans('firefly.invalid_convert_selection'));
|
|
|
|
|
|
|
|
if ($source->id === $destination->id || is_null($source->id) || is_null($destination->id)) {
|
|
|
|
return $messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sourceTransaction = $journal->transactions()->where('amount', '<', 0)->first();
|
|
|
|
$destinationTransaction = $journal->transactions()->where('amount', '>', 0)->first();
|
|
|
|
$sourceTransaction->account_id = $source->id;
|
|
|
|
$sourceTransaction->save();
|
|
|
|
$destinationTransaction->account_id = $destination->id;
|
|
|
|
$destinationTransaction->save();
|
|
|
|
$journal->transaction_type_id = $type->id;
|
|
|
|
$journal->save();
|
2016-12-18 03:37:59 -06:00
|
|
|
|
|
|
|
// if journal is a transfer now, remove budget:
|
|
|
|
if ($type->type === TransactionType::TRANSFER) {
|
|
|
|
$journal->budgets()->detach();
|
|
|
|
}
|
|
|
|
|
2016-10-30 00:14:07 -05:00
|
|
|
Preferences::mark();
|
|
|
|
|
2016-12-18 03:37:59 -06:00
|
|
|
return new MessageBag;
|
2016-10-30 00:14:07 -05:00
|
|
|
}
|
|
|
|
|
2017-07-04 09:31:16 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function countTransactions(TransactionJournal $journal): int
|
|
|
|
{
|
|
|
|
return $journal->transactions()->count();
|
|
|
|
}
|
|
|
|
|
2015-05-04 16:46:14 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function delete(TransactionJournal $journal): bool
|
2015-05-04 16:46:14 -05:00
|
|
|
{
|
|
|
|
$journal->delete();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-23 02:33:54 -05:00
|
|
|
/**
|
|
|
|
* @param int $journalId
|
|
|
|
*
|
|
|
|
* @return TransactionJournal
|
|
|
|
*/
|
2016-12-04 11:02:19 -06:00
|
|
|
public function find(int $journalId): TransactionJournal
|
2016-04-23 02:33:54 -05:00
|
|
|
{
|
2016-08-26 02:30:52 -05:00
|
|
|
$journal = $this->user->transactionJournals()->where('id', $journalId)->first();
|
2016-04-23 02:33:54 -05:00
|
|
|
if (is_null($journal)) {
|
|
|
|
return new TransactionJournal;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $journal;
|
|
|
|
}
|
|
|
|
|
2015-04-03 15:54:21 -05:00
|
|
|
/**
|
|
|
|
* Get users first transaction journal
|
|
|
|
*
|
|
|
|
* @return TransactionJournal
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function first(): TransactionJournal
|
2015-04-03 15:54:21 -05:00
|
|
|
{
|
2016-08-26 02:30:52 -05:00
|
|
|
$entry = $this->user->transactionJournals()->orderBy('date', 'ASC')->first(['transaction_journals.*']);
|
2016-05-05 14:25:20 -05:00
|
|
|
|
2016-04-10 14:31:00 -05:00
|
|
|
if (is_null($entry)) {
|
2016-05-05 14:25:20 -05:00
|
|
|
|
2016-04-10 14:31:00 -05:00
|
|
|
return new TransactionJournal;
|
|
|
|
}
|
2015-12-25 10:11:55 -06:00
|
|
|
|
|
|
|
return $entry;
|
2015-04-03 15:54:21 -05:00
|
|
|
}
|
|
|
|
|
2017-01-20 12:50:22 -06:00
|
|
|
/**
|
|
|
|
* @return Collection
|
|
|
|
*/
|
|
|
|
public function getTransactionTypes(): Collection
|
|
|
|
{
|
|
|
|
return TransactionType::orderBy('type', 'ASC')->get();
|
|
|
|
}
|
|
|
|
|
2017-04-28 00:51:09 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isTransfer(TransactionJournal $journal): bool
|
|
|
|
{
|
|
|
|
return $journal->transactionType->type === TransactionType::TRANSFER;
|
|
|
|
}
|
|
|
|
|
2017-03-24 09:01:53 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
* @param int $order
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setOrder(TransactionJournal $journal, int $order): bool
|
|
|
|
{
|
|
|
|
$journal->order = $order;
|
|
|
|
$journal->save();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-02-16 23:42:36 -06:00
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function setUser(User $user)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
}
|
|
|
|
|
2015-02-24 15:53:38 -06:00
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return TransactionJournal
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function store(array $data): TransactionJournal
|
2015-02-24 15:53:38 -06:00
|
|
|
{
|
|
|
|
// find transaction type.
|
2017-04-14 04:19:09 -05:00
|
|
|
/** @var TransactionType $transactionType */
|
2015-02-24 15:53:38 -06:00
|
|
|
$transactionType = TransactionType::where('type', ucfirst($data['what']))->first();
|
2017-06-07 01:18:42 -05:00
|
|
|
$accounts = $this->storeAccounts($this->user, $transactionType, $data);
|
|
|
|
$data = $this->verifyNativeAmount($data, $accounts);
|
2017-04-14 04:19:09 -05:00
|
|
|
$amount = strval($data['amount']);
|
2017-04-14 08:42:54 -05:00
|
|
|
$journal = new TransactionJournal(
|
2015-02-24 15:53:38 -06:00
|
|
|
[
|
2016-10-23 05:19:32 -05:00
|
|
|
'user_id' => $this->user->id,
|
2015-12-28 09:52:21 -06:00
|
|
|
'transaction_type_id' => $transactionType->id,
|
2017-06-04 06:39:16 -05:00
|
|
|
'transaction_currency_id' => $data['currency_id'], // no longer used.
|
2015-12-28 09:52:21 -06:00
|
|
|
'description' => $data['description'],
|
|
|
|
'completed' => 0,
|
|
|
|
'date' => $data['date'],
|
2015-02-24 15:53:38 -06:00
|
|
|
]
|
|
|
|
);
|
|
|
|
$journal->save();
|
|
|
|
|
2016-10-21 12:06:22 -05:00
|
|
|
// store stuff:
|
2017-09-20 01:35:20 -05:00
|
|
|
$this->storeCategoryWithJournal($journal, strval($data['category']));
|
2017-06-07 01:18:42 -05:00
|
|
|
$this->storeBudgetWithJournal($journal, $data['budget_id']);
|
2017-04-14 04:19:09 -05:00
|
|
|
|
2016-10-21 12:06:22 -05:00
|
|
|
// store two transactions:
|
|
|
|
$one = [
|
2017-06-04 06:39:16 -05:00
|
|
|
'journal' => $journal,
|
|
|
|
'account' => $accounts['source'],
|
|
|
|
'amount' => bcmul($amount, '-1'),
|
|
|
|
'transaction_currency_id' => $data['currency_id'],
|
|
|
|
'foreign_amount' => is_null($data['foreign_amount']) ? null : bcmul(strval($data['foreign_amount']), '-1'),
|
|
|
|
'foreign_currency_id' => $data['foreign_currency_id'],
|
|
|
|
'description' => null,
|
|
|
|
'category' => null,
|
|
|
|
'budget' => null,
|
|
|
|
'identifier' => 0,
|
2016-10-21 12:06:22 -05:00
|
|
|
];
|
2017-06-07 01:18:42 -05:00
|
|
|
$this->storeTransaction($one);
|
2016-10-21 12:06:22 -05:00
|
|
|
|
|
|
|
$two = [
|
2017-06-04 06:39:16 -05:00
|
|
|
'journal' => $journal,
|
|
|
|
'account' => $accounts['destination'],
|
|
|
|
'amount' => $amount,
|
|
|
|
'transaction_currency_id' => $data['currency_id'],
|
|
|
|
'foreign_amount' => $data['foreign_amount'],
|
|
|
|
'foreign_currency_id' => $data['foreign_currency_id'],
|
|
|
|
'description' => null,
|
|
|
|
'category' => null,
|
|
|
|
'budget' => null,
|
|
|
|
'identifier' => 0,
|
2016-10-21 12:06:22 -05:00
|
|
|
];
|
|
|
|
|
2017-06-07 01:18:42 -05:00
|
|
|
$this->storeTransaction($two);
|
2015-02-24 15:53:38 -06:00
|
|
|
|
|
|
|
|
2015-04-28 07:08:58 -05:00
|
|
|
// store tags
|
|
|
|
if (isset($data['tags']) && is_array($data['tags'])) {
|
|
|
|
$this->saveTags($journal, $data['tags']);
|
|
|
|
}
|
|
|
|
|
2017-10-03 03:30:56 -05:00
|
|
|
// update note:
|
2017-10-05 23:36:00 -05:00
|
|
|
if (isset($data['notes'])) {
|
|
|
|
$this->updateNote($journal, $data['notes']);
|
|
|
|
}
|
2017-10-03 03:30:56 -05:00
|
|
|
|
2016-09-09 04:19:40 -05:00
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if (in_array($key, $this->validMetaFields)) {
|
|
|
|
$journal->setMeta($key, $value);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Log::debug(sprintf('Could not store meta field "%s" with value "%s" for journal #%d', json_encode($key), json_encode($value), $journal->id));
|
|
|
|
}
|
2015-02-24 15:53:38 -06:00
|
|
|
|
2016-10-21 12:06:22 -05:00
|
|
|
$journal->completed = 1;
|
|
|
|
$journal->save();
|
|
|
|
|
2016-09-09 04:19:40 -05:00
|
|
|
return $journal;
|
2015-02-24 15:53:38 -06:00
|
|
|
|
|
|
|
}
|
2015-02-27 07:27:04 -06:00
|
|
|
|
2015-04-28 03:36:13 -05:00
|
|
|
/**
|
2017-06-07 01:18:42 -05:00
|
|
|
* @param TransactionJournal $journal
|
|
|
|
* @param array $data
|
2016-05-01 02:42:08 -05:00
|
|
|
*
|
2017-06-07 01:18:42 -05:00
|
|
|
* @return TransactionJournal
|
|
|
|
*/
|
|
|
|
public function update(TransactionJournal $journal, array $data): TransactionJournal
|
|
|
|
{
|
|
|
|
|
|
|
|
// update actual journal:
|
|
|
|
$journal->description = $data['description'];
|
|
|
|
$journal->date = $data['date'];
|
|
|
|
$accounts = $this->storeAccounts($this->user, $journal->transactionType, $data);
|
|
|
|
$data = $this->verifyNativeAmount($data, $accounts);
|
|
|
|
$data['amount'] = strval($data['amount']);
|
|
|
|
$data['foreign_amount'] = is_null($data['foreign_amount']) ? null : strval($data['foreign_amount']);
|
|
|
|
|
|
|
|
// unlink all categories, recreate them:
|
|
|
|
$journal->categories()->detach();
|
|
|
|
$journal->budgets()->detach();
|
|
|
|
|
2017-09-20 01:35:20 -05:00
|
|
|
$this->storeCategoryWithJournal($journal, strval($data['category']));
|
2017-06-07 01:18:42 -05:00
|
|
|
$this->storeBudgetWithJournal($journal, $data['budget_id']);
|
|
|
|
|
|
|
|
// negative because source loses money.
|
|
|
|
$this->updateSourceTransaction($journal, $accounts['source'], $data);
|
|
|
|
|
|
|
|
// positive because destination gets money.
|
|
|
|
$this->updateDestinationTransaction($journal, $accounts['destination'], $data);
|
|
|
|
|
|
|
|
$journal->save();
|
|
|
|
|
|
|
|
// update tags:
|
|
|
|
if (isset($data['tags']) && is_array($data['tags'])) {
|
|
|
|
$this->updateTags($journal, $data['tags']);
|
|
|
|
}
|
|
|
|
|
2017-10-03 03:30:56 -05:00
|
|
|
// update note:
|
2017-10-20 00:51:53 -05:00
|
|
|
if (isset($data['notes']) && !is_null($data['notes']) ) {
|
|
|
|
$this->updateNote($journal, strval($data['notes']));
|
2017-10-05 23:36:00 -05:00
|
|
|
}
|
2017-10-03 03:30:56 -05:00
|
|
|
|
2017-06-07 01:18:42 -05:00
|
|
|
// update meta fields:
|
|
|
|
$result = $journal->save();
|
|
|
|
if ($result) {
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if (in_array($key, $this->validMetaFields)) {
|
|
|
|
$journal->setMeta($key, $value);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Log::debug(sprintf('Could not store meta field "%s" with value "%s" for journal #%d', json_encode($key), json_encode($value), $journal->id));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $journal;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $journal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Same as above but for transaction journal with multiple transactions.
|
2016-05-01 02:42:08 -05:00
|
|
|
*
|
2015-04-28 03:36:13 -05:00
|
|
|
* @param TransactionJournal $journal
|
2017-06-07 01:18:42 -05:00
|
|
|
* @param array $data
|
2015-04-28 03:36:13 -05:00
|
|
|
*
|
2017-06-07 01:18:42 -05:00
|
|
|
* @return TransactionJournal
|
2015-04-28 03:36:13 -05:00
|
|
|
*/
|
2017-06-07 01:18:42 -05:00
|
|
|
public function updateSplitJournal(TransactionJournal $journal, array $data): TransactionJournal
|
2015-04-28 03:36:13 -05:00
|
|
|
{
|
2017-06-07 01:18:42 -05:00
|
|
|
// update actual journal:
|
|
|
|
$journal->description = $data['journal_description'];
|
|
|
|
$journal->date = $data['date'];
|
|
|
|
$journal->save();
|
|
|
|
Log::debug(sprintf('Updated split journal #%d', $journal->id));
|
|
|
|
|
|
|
|
// unlink all categories:
|
|
|
|
$journal->categories()->detach();
|
|
|
|
$journal->budgets()->detach();
|
|
|
|
|
2017-10-03 03:30:56 -05:00
|
|
|
// update note:
|
2017-10-20 00:51:53 -05:00
|
|
|
if (isset($data['notes']) && !is_null($data['notes']) ) {
|
|
|
|
$this->updateNote($journal, strval($data['notes']));
|
|
|
|
}
|
|
|
|
|
2017-10-03 03:30:56 -05:00
|
|
|
|
2017-06-07 01:18:42 -05:00
|
|
|
// update meta fields:
|
|
|
|
$result = $journal->save();
|
|
|
|
if ($result) {
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if (in_array($key, $this->validMetaFields)) {
|
|
|
|
$journal->setMeta($key, $value);
|
|
|
|
continue;
|
2016-05-01 02:42:08 -05:00
|
|
|
}
|
2017-06-07 01:18:42 -05:00
|
|
|
Log::debug(sprintf('Could not store meta field "%s" with value "%s" for journal #%d', json_encode($key), json_encode($value), $journal->id));
|
2015-04-28 14:01:54 -05:00
|
|
|
}
|
2015-04-28 03:36:13 -05:00
|
|
|
}
|
|
|
|
|
2017-06-07 01:18:42 -05:00
|
|
|
// update tags:
|
|
|
|
if (isset($data['tags']) && is_array($data['tags'])) {
|
|
|
|
$this->updateTags($journal, $data['tags']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete original transactions, and recreate them.
|
|
|
|
$journal->transactions()->delete();
|
|
|
|
|
|
|
|
// store each transaction.
|
|
|
|
$identifier = 0;
|
|
|
|
Log::debug(sprintf('Count %d transactions in updateSplitJournal()', count($data['transactions'])));
|
|
|
|
|
|
|
|
foreach ($data['transactions'] as $transaction) {
|
|
|
|
Log::debug(sprintf('Split journal update split transaction %d', $identifier));
|
|
|
|
$transaction = $this->appendTransactionData($transaction, $data);
|
|
|
|
$this->storeSplitTransaction($journal, $transaction, $identifier);
|
|
|
|
$identifier++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$journal->save();
|
|
|
|
|
|
|
|
return $journal;
|
2015-04-28 03:36:13 -05:00
|
|
|
}
|
2015-04-03 02:30:44 -05:00
|
|
|
}
|