mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
# Conflicts: # app/Api/V1/Controllers/Models/AvailableBudget/DestroyController.php # config/firefly.php # frontend/package.json # frontend/src/i18n/fr_FR/index.js # frontend/src/i18n/pt_BR/index.js # frontend/src/i18n/ru_RU/index.js # frontend/src/i18n/sl_SI/index.js # frontend/src/i18n/zh_CN/index.js # frontend/yarn.lock # public/v3/index.html # public/v3/js/1473.9b55dc17.js # public/v3/js/150.35592a2c.js # public/v3/js/1501.3980515e.js # public/v3/js/1543.010ec22e.js # public/v3/js/1730.207e6e59.js # public/v3/js/1864.d9ea853e.js # public/v3/js/1951.a5d70097.js # public/v3/js/2106.33b7eabd.js # public/v3/js/2124.bfc4091d.js # public/v3/js/2194.4baebc21.js # public/v3/js/2372.f07615ae.js # public/v3/js/2407.747d87e4.js # public/v3/js/2476.8af9976c.js # public/v3/js/2686.5e278d64.js # public/v3/js/2700.1251f369.js # public/v3/js/3232.0964e736.js # public/v3/js/3903.4e461032.js # public/v3/js/4640.601878ff.js # public/v3/js/4782.e1382ab6.js # public/v3/js/4851.3c27e6c7.js # public/v3/js/5221.fded0f96.js # public/v3/js/5266.e820dd38.js # public/v3/js/5348.109b8049.js # public/v3/js/5439.d75e5cb4.js # public/v3/js/5724.8b5fcafb.js # public/v3/js/576.e26ddde9.js # public/v3/js/6072.21c05085.js # public/v3/js/6323.69d55ffd.js # public/v3/js/6676.60b155c0.js # public/v3/js/6691.80040366.js # public/v3/js/6719.f9d4744f.js # public/v3/js/6826.74ed4602.js # public/v3/js/6882.c5970da7.js # public/v3/js/6919.cc55656e.js # public/v3/js/7044.96c481ac.js # public/v3/js/7083.c223af4f.js # public/v3/js/7222.86a095eb.js # public/v3/js/7480.b9bd8fed.js # public/v3/js/7499.c362f695.js # public/v3/js/7544.47af6552.js # public/v3/js/7552.ebdf1aef.js # public/v3/js/7586.29cf8776.js # public/v3/js/7697.4338f28d.js # public/v3/js/773.ff7cb3ef.js # public/v3/js/7919.910d5ebb.js # public/v3/js/7956.3e1c81cf.js # public/v3/js/8044.169b21f8.js # public/v3/js/8218.966b669d.js # public/v3/js/8344.119567b0.js # public/v3/js/8376.477a5508.js # public/v3/js/8387.a4c1d7d6.js # public/v3/js/8405.62235b41.js # public/v3/js/8493.48ada210.js # public/v3/js/8611.3ab24e6d.js # public/v3/js/8907.233f4719.js # public/v3/js/8928.8127fcdf.js # public/v3/js/9009.d0e97de6.js # public/v3/js/9038.06ad98ab.js # public/v3/js/9069.e81f039c.js # public/v3/js/9287.bc57ab91.js # public/v3/js/9597.0c124ce8.js # public/v3/js/9606.ce293dd2.js # public/v3/js/app.13f6ce91.js # public/v3/js/chunk-common.98b27fd7.js # public/v3/js/vendor.92714ea3.js # resources/assets/js/locales/fr.json # resources/assets/js/locales/ru.json # resources/assets/js/locales/sl.json # resources/assets/js/locales/zh-cn.json # resources/lang/de_DE/firefly.php # resources/lang/nl_NL/firefly.php # resources/lang/pt_BR/firefly.php # resources/lang/sl_SI/firefly.php # resources/lang/zh_CN/firefly.php
298 lines
9.7 KiB
PHP
298 lines
9.7 KiB
PHP
<?php
|
|
/*
|
|
* DestroyController.php
|
|
* Copyright (c) 2021 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\Api\V1\Controllers\Data;
|
|
|
|
use FireflyIII\Api\V1\Controllers\Controller;
|
|
use FireflyIII\Api\V1\Requests\Data\DestroyRequest;
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use FireflyIII\Models\Account;
|
|
use FireflyIII\Models\AccountType;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use FireflyIII\Models\TransactionType;
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
|
use FireflyIII\Repositories\Budget\AvailableBudgetRepositoryInterface;
|
|
use FireflyIII\Repositories\Budget\BudgetLimitRepositoryInterface;
|
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|
use FireflyIII\Repositories\ObjectGroup\ObjectGroupRepositoryInterface;
|
|
use FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface;
|
|
use FireflyIII\Repositories\Recurring\RecurringRepositoryInterface;
|
|
use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface;
|
|
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
|
use FireflyIII\Services\Internal\Destroy\AccountDestroyService;
|
|
use FireflyIII\Services\Internal\Destroy\JournalDestroyService;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Class DestroyController
|
|
*/
|
|
class DestroyController extends Controller
|
|
{
|
|
private bool $unused;
|
|
|
|
/**
|
|
* This endpoint is documented at:
|
|
* https://api-docs.firefly-iii.org/#/data/destroyData
|
|
*
|
|
* @param DestroyRequest $request
|
|
*
|
|
* @return JsonResponse
|
|
* @throws FireflyException
|
|
*/
|
|
public function destroy(DestroyRequest $request): JsonResponse
|
|
{
|
|
$objects = $request->getObjects();
|
|
$this->unused = $request->boolean('unused', false);
|
|
switch ($objects) {
|
|
default:
|
|
throw new FireflyException(sprintf('This endpoint can\'t handle object "%s"', $objects));
|
|
case 'budgets':
|
|
$this->destroyBudgets();
|
|
break;
|
|
case 'bills':
|
|
$this->destroyBills();
|
|
break;
|
|
case 'piggy_banks':
|
|
$this->destroyPiggyBanks();
|
|
break;
|
|
case 'rules':
|
|
$this->destroyRules();
|
|
break;
|
|
case 'recurring':
|
|
$this->destroyRecurringTransactions();
|
|
break;
|
|
case 'categories':
|
|
$this->destroyCategories();
|
|
break;
|
|
case 'tags':
|
|
$this->destroyTags();
|
|
break;
|
|
case 'object_groups':
|
|
$this->destroyObjectGroups();
|
|
break;
|
|
case 'accounts':
|
|
$this->destroyAccounts(
|
|
[
|
|
AccountType::ASSET, AccountType::DEFAULT,
|
|
AccountType::BENEFICIARY, AccountType::EXPENSE,
|
|
AccountType::REVENUE, AccountType::INITIAL_BALANCE,
|
|
AccountType::DEBT, AccountType::LOAN, AccountType::MORTGAGE, AccountType::CREDITCARD,
|
|
]
|
|
);
|
|
break;
|
|
case 'asset_accounts':
|
|
$this->destroyAccounts(
|
|
[
|
|
AccountType::ASSET, AccountType::DEFAULT,
|
|
]
|
|
);
|
|
break;
|
|
case 'expense_accounts':
|
|
$this->destroyAccounts(
|
|
[
|
|
AccountType::BENEFICIARY, AccountType::EXPENSE,
|
|
]
|
|
);
|
|
break;
|
|
case 'revenue_accounts':
|
|
$this->destroyAccounts(
|
|
[
|
|
AccountType::REVENUE,
|
|
]
|
|
);
|
|
break;
|
|
case 'liabilities':
|
|
$this->destroyAccounts(
|
|
[
|
|
AccountType::DEBT, AccountType::LOAN, AccountType::MORTGAGE, AccountType::CREDITCARD,
|
|
]
|
|
);
|
|
break;
|
|
case 'transactions':
|
|
$this->destroyTransactions(
|
|
[
|
|
TransactionType::WITHDRAWAL,
|
|
TransactionType::DEPOSIT,
|
|
TransactionType::TRANSFER,
|
|
TransactionType::RECONCILIATION,
|
|
TransactionType::OPENING_BALANCE,
|
|
]
|
|
);
|
|
break;
|
|
case 'withdrawals':
|
|
$this->destroyTransactions(
|
|
[
|
|
TransactionType::WITHDRAWAL,
|
|
]
|
|
);
|
|
break;
|
|
case 'deposits':
|
|
$this->destroyTransactions(
|
|
[
|
|
TransactionType::DEPOSIT,
|
|
]
|
|
);
|
|
break;
|
|
case 'transfers':
|
|
$this->destroyTransactions(
|
|
[
|
|
TransactionType::TRANSFER,
|
|
]
|
|
);
|
|
break;
|
|
}
|
|
app('preferences')->mark();
|
|
|
|
return response()->json([], 204);
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyBudgets(): void
|
|
{
|
|
/** @var AvailableBudgetRepositoryInterface $abRepository */
|
|
$abRepository = app(AvailableBudgetRepositoryInterface::class);
|
|
$abRepository->destroyAll();
|
|
|
|
/** @var BudgetLimitRepositoryInterface $blRepository */
|
|
$blRepository = app(BudgetLimitRepositoryInterface::class);
|
|
$blRepository->destroyAll();
|
|
|
|
/** @var BudgetRepositoryInterface $budgetRepository */
|
|
$budgetRepository = app(BudgetRepositoryInterface::class);
|
|
$budgetRepository->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyBills(): void
|
|
{
|
|
/** @var BillRepositoryInterface $repository */
|
|
$repository = app(BillRepositoryInterface::class);
|
|
$repository->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyPiggyBanks(): void
|
|
{
|
|
/** @var PiggyBankRepositoryInterface $repository */
|
|
$repository = app(PiggyBankRepositoryInterface::class);
|
|
$repository->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyRules(): void
|
|
{
|
|
/** @var RuleGroupRepositoryInterface $repository */
|
|
$repository = app(RuleGroupRepositoryInterface::class);
|
|
$repository->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyRecurringTransactions(): void
|
|
{
|
|
/** @var RecurringRepositoryInterface $repository */
|
|
$repository = app(RecurringRepositoryInterface::class);
|
|
$repository->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyCategories(): void
|
|
{
|
|
/** @var CategoryRepositoryInterface $categoryRepos */
|
|
$categoryRepos = app(CategoryRepositoryInterface::class);
|
|
$categoryRepos->destroyAll();
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function destroyTags(): void
|
|
{
|
|
/** @var TagRepositoryInterface $tagRepository */
|
|
$tagRepository = app(TagRepositoryInterface::class);
|
|
$tagRepository->destroyAll();
|
|
}
|
|
|
|
private function destroyObjectGroups(): void
|
|
{
|
|
/** @var ObjectGroupRepositoryInterface $repository */
|
|
$repository = app(ObjectGroupRepositoryInterface::class);
|
|
$repository->deleteAll();
|
|
}
|
|
|
|
/**
|
|
* @param array $types
|
|
*/
|
|
private function destroyAccounts(array $types): void
|
|
{
|
|
/** @var AccountRepositoryInterface $repository */
|
|
$repository = app(AccountRepositoryInterface::class);
|
|
$collection = $repository->getAccountsByType($types);
|
|
$service = app(AccountDestroyService::class);
|
|
|
|
/** @var Account $account */
|
|
foreach ($collection as $account) {
|
|
$count = $account->transactions()->count();
|
|
if (true === $this->unused && 0 === $count) {
|
|
Log::info(sprintf('Deleted unused account #%d "%s"', $account->id, $account->name));
|
|
$service->destroy($account, null);
|
|
continue;
|
|
}
|
|
if (false === $this->unused) {
|
|
Log::info(sprintf('Deleting account #%d "%s"', $account->id, $account->name));
|
|
$service->destroy($account, null);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array $types
|
|
*/
|
|
private function destroyTransactions(array $types): void
|
|
{
|
|
/** @var JournalRepositoryInterface $repository */
|
|
$repository = app(JournalRepositoryInterface::class);
|
|
$journals = $repository->findByType($types);
|
|
$service = app(JournalDestroyService::class);
|
|
/** @var TransactionJournal $journal */
|
|
foreach ($journals as $journal) {
|
|
$service->destroy($journal);
|
|
}
|
|
}
|
|
}
|