firefly-iii/app/Http/Controllers/RuleGroupController.php

296 lines
9.9 KiB
PHP
Raw Normal View History

<?php
/**
* RuleGroupController.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
2017-10-21 01:40:00 -05: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 07:41:58 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
2017-03-24 05:07:38 -05:00
declare(strict_types=1);
namespace FireflyIII\Http\Controllers;
use Carbon\Carbon;
2016-01-15 06:06:17 -06:00
use FireflyIII\Http\Requests\RuleGroupFormRequest;
use FireflyIII\Http\Requests\SelectTransactionsRequest;
use FireflyIII\Jobs\ExecuteRuleGroupOnExistingTransactions;
2016-01-15 06:06:17 -06:00
use FireflyIII\Models\RuleGroup;
2016-10-10 00:25:27 -05:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2016-02-23 08:54:13 -06:00
use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface;
2018-07-09 12:24:08 -05:00
use FireflyIII\User;
2018-07-08 05:28:42 -05:00
use Illuminate\Http\RedirectResponse;
2016-12-28 06:02:56 -06:00
use Illuminate\Http\Request;
2016-01-15 06:06:17 -06:00
/**
2017-11-15 05:25:49 -06:00
* Class RuleGroupController.
2018-07-20 07:34:56 -05:00
*
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
*/
class RuleGroupController extends Controller
{
2016-01-15 06:06:17 -06:00
/**
* RuleGroupController constructor.
*/
public function __construct()
{
parent::__construct();
2016-10-29 00:44:46 -05:00
$this->middleware(
function ($request, $next) {
2018-07-15 02:38:49 -05:00
app('view')->share('title', (string)trans('firefly.rules'));
2017-12-16 12:46:36 -06:00
app('view')->share('mainTitleIcon', 'fa-random');
2016-10-29 00:44:46 -05:00
return $next($request);
}
);
}
2016-01-15 06:06:17 -06:00
/**
2018-07-22 01:10:16 -05:00
* Create a new rule group.
*
2018-07-08 05:08:53 -05:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2016-01-15 06:06:17 -06:00
*/
2016-01-15 06:09:27 -06:00
public function create()
2016-01-15 06:06:17 -06:00
{
$subTitleIcon = 'fa-clone';
2018-07-15 02:38:49 -05:00
$subTitle = (string)trans('firefly.make_new_rule_group');
2016-01-15 06:06:17 -06:00
// put previous url in session if not redirect from store (not "create another").
2017-11-15 05:25:49 -06:00
if (true !== session('rule-groups.create.fromStore')) {
2017-02-05 01:26:54 -06:00
$this->rememberPreviousUri('rule-groups.create.uri');
2016-01-15 06:06:17 -06:00
}
2018-04-22 10:12:22 -05:00
session()->forget('rule-groups.create.fromStore');
2016-01-15 06:06:17 -06:00
return view('rules.rule-group.create', compact('subTitleIcon', 'subTitle'));
2016-01-15 06:06:17 -06:00
}
2016-01-24 08:58:16 -06:00
/**
2018-07-22 01:10:16 -05:00
* Delege a rule group.
*
2018-04-29 02:48:53 -05:00
* @param RuleGroup $ruleGroup
2016-01-24 08:58:16 -06:00
*
2018-07-08 05:08:53 -05:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2016-01-24 08:58:16 -06:00
*/
2018-04-29 02:48:53 -05:00
public function delete(RuleGroup $ruleGroup)
2016-01-24 08:58:16 -06:00
{
2018-07-15 02:38:49 -05:00
$subTitle = (string)trans('firefly.delete_rule_group', ['title' => $ruleGroup->title]);
2016-01-24 08:58:16 -06:00
// put previous url in session
2017-02-05 01:26:54 -06:00
$this->rememberPreviousUri('rule-groups.delete.uri');
2016-01-24 08:58:16 -06:00
2018-04-29 02:48:53 -05:00
return view('rules.rule-group.delete', compact('ruleGroup', 'subTitle'));
2016-01-24 08:58:16 -06:00
}
2016-01-15 06:06:17 -06:00
/**
2018-07-22 01:10:16 -05:00
* Actually destroy the rule group.
*
2016-12-28 06:02:56 -06:00
* @param Request $request
2016-01-15 06:08:25 -06:00
* @param RuleGroupRepositoryInterface $repository
2016-01-24 08:58:16 -06:00
* @param RuleGroup $ruleGroup
*
2016-12-28 06:02:56 -06:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2016-01-15 06:06:17 -06:00
*/
2016-12-28 06:02:56 -06:00
public function destroy(Request $request, RuleGroupRepositoryInterface $repository, RuleGroup $ruleGroup)
2016-01-15 06:06:17 -06:00
{
2018-07-09 12:24:08 -05:00
/** @var User $user */
2018-07-13 08:50:42 -05:00
$user = auth()->user();
$title = $ruleGroup->title;
2018-07-09 12:24:08 -05:00
/** @var RuleGroup $moveTo */
$moveTo = $user->ruleGroups()->find((int)$request->get('move_rules_before_delete'));
2016-01-15 06:06:17 -06:00
2016-01-24 08:58:16 -06:00
$repository->destroy($ruleGroup, $moveTo);
2018-04-22 10:10:11 -05:00
session()->flash('success', (string)trans('firefly.deleted_rule_group', ['title' => $title]));
2018-07-08 05:08:53 -05:00
app('preferences')->mark();
2016-01-15 06:06:17 -06:00
2017-02-05 01:26:54 -06:00
return redirect($this->getPreviousUri('rule-groups.delete.uri'));
2016-01-24 08:58:16 -06:00
}
/**
2018-07-22 01:10:16 -05:00
* Move a rule group down.
*
2016-01-24 08:58:16 -06:00
* @param RuleGroupRepositoryInterface $repository
* @param RuleGroup $ruleGroup
*
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
*/
public function down(RuleGroupRepositoryInterface $repository, RuleGroup $ruleGroup)
{
$repository->moveDown($ruleGroup);
return redirect(route('rules.index'));
2016-01-15 06:06:17 -06:00
}
/**
2018-07-22 01:10:16 -05:00
* Edit a rule group.
*
2018-06-18 14:07:09 -05:00
* @param Request $request
2016-01-15 06:06:17 -06:00
* @param RuleGroup $ruleGroup
*
2018-06-18 14:07:09 -05:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2016-01-15 06:06:17 -06:00
*/
2018-06-18 14:07:09 -05:00
public function edit(Request $request, RuleGroup $ruleGroup)
2016-01-15 06:06:17 -06:00
{
2018-07-15 02:38:49 -05:00
$subTitle = (string)trans('firefly.edit_rule_group', ['title' => $ruleGroup->title]);
2016-01-15 06:06:17 -06:00
2018-06-18 14:07:09 -05:00
$hasOldInput = null !== $request->old('_token');
$preFilled = [
'active' => $hasOldInput ? (bool)$request->old('active') : $ruleGroup->active,
2018-05-31 13:34:49 -05:00
];
2016-01-15 06:06:17 -06:00
// put previous url in session if not redirect from store (not "return_to_edit").
2017-11-15 05:25:49 -06:00
if (true !== session('rule-groups.edit.fromUpdate')) {
2017-02-05 01:26:54 -06:00
$this->rememberPreviousUri('rule-groups.edit.uri');
2016-01-15 06:06:17 -06:00
}
2018-04-22 10:12:22 -05:00
session()->forget('rule-groups.edit.fromUpdate');
2018-05-31 13:34:49 -05:00
session()->flash('preFilled', $preFilled);
2016-01-15 06:06:17 -06:00
return view('rules.rule-group.edit', compact('ruleGroup', 'subTitle'));
}
2016-02-23 08:54:13 -06:00
/**
2017-11-15 05:25:49 -06:00
* Execute the given rulegroup on a set of existing transactions.
2016-02-23 08:54:13 -06:00
*
2016-10-10 00:25:27 -05:00
* @param SelectTransactionsRequest $request
* @param AccountRepositoryInterface $repository
* @param RuleGroup $ruleGroup
2016-02-23 08:54:13 -06:00
*
2018-07-08 05:28:42 -05:00
* @return RedirectResponse
2016-02-23 08:54:13 -06:00
*/
2018-07-08 05:28:42 -05:00
public function execute(SelectTransactionsRequest $request, AccountRepositoryInterface $repository, RuleGroup $ruleGroup): RedirectResponse
2016-02-23 08:54:13 -06:00
{
// Get parameters specified by the user
2018-07-09 12:24:08 -05:00
/** @var User $user */
$user = auth()->user();
2016-10-10 00:25:27 -05:00
$accounts = $repository->getAccountsById($request->get('accounts'));
2016-02-23 08:54:13 -06:00
$startDate = new Carbon($request->get('start_date'));
$endDate = new Carbon($request->get('end_date'));
// Create a job to do the work asynchronously
$job = new ExecuteRuleGroupOnExistingTransactions($ruleGroup);
// Apply parameters to the job
2018-07-09 12:24:08 -05:00
$job->setUser($user);
2016-02-23 08:54:13 -06:00
$job->setAccounts($accounts);
$job->setStartDate($startDate);
$job->setEndDate($endDate);
// Dispatch a new job to execute it in a queue
$this->dispatch($job);
// Tell the user that the job is queued
2018-04-22 10:10:11 -05:00
session()->flash('success', (string)trans('firefly.applied_rule_group_selection', ['title' => $ruleGroup->title]));
2016-02-23 08:54:13 -06:00
return redirect()->route('rules.index');
}
/**
2018-07-22 01:10:16 -05:00
* Select transactions to apply the group on.
*
2018-04-29 02:48:53 -05:00
* @param RuleGroup $ruleGroup
2016-02-23 08:54:13 -06:00
*
2018-07-08 05:08:53 -05:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2016-02-23 08:54:13 -06:00
*/
2018-04-29 00:45:54 -05:00
public function selectTransactions(RuleGroup $ruleGroup)
2016-02-23 08:54:13 -06:00
{
2018-04-29 02:48:53 -05:00
$first = session('first')->format('Y-m-d');
$today = Carbon::create()->format('Y-m-d');
$subTitle = (string)trans('firefly.apply_rule_group_selection', ['title' => $ruleGroup->title]);
2016-02-23 08:54:13 -06:00
2018-04-29 02:48:53 -05:00
return view('rules.rule-group.select-transactions', compact('first', 'today', 'ruleGroup', 'subTitle'));
2016-02-23 08:54:13 -06:00
}
2016-01-15 06:06:17 -06:00
/**
2018-07-22 01:10:16 -05:00
* Store the rule group.
*
2016-01-15 06:08:25 -06:00
* @param RuleGroupFormRequest $request
* @param RuleGroupRepositoryInterface $repository
2016-01-15 06:06:17 -06:00
*
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2016-01-15 06:06:17 -06:00
*/
2016-01-24 08:58:16 -06:00
public function store(RuleGroupFormRequest $request, RuleGroupRepositoryInterface $repository)
2016-01-15 06:06:17 -06:00
{
2016-10-29 00:44:46 -05:00
$data = $request->getRuleGroupData();
$ruleGroup = $repository->store($data);
2016-01-15 06:06:17 -06:00
2018-04-22 10:10:11 -05:00
session()->flash('success', (string)trans('firefly.created_new_rule_group', ['title' => $ruleGroup->title]));
2018-07-08 05:08:53 -05:00
app('preferences')->mark();
2016-01-15 06:06:17 -06:00
2018-07-08 05:08:53 -05:00
$redirect = redirect($this->getPreviousUri('rule-groups.create.uri'));
2018-04-02 08:10:40 -05:00
if (1 === (int)$request->get('create_another')) {
2017-03-24 05:07:38 -05:00
// @codeCoverageIgnoreStart
2018-04-22 10:12:22 -05:00
session()->put('rule-groups.create.fromStore', true);
2016-01-15 06:06:17 -06:00
2018-07-08 05:08:53 -05:00
$redirect = redirect(route('rule-groups.create'))->withInput();
2017-03-24 05:07:38 -05:00
// @codeCoverageIgnoreEnd
2016-01-15 06:06:17 -06:00
}
2018-07-08 05:08:53 -05:00
return $redirect;
2016-01-15 06:06:17 -06:00
}
/**
2018-07-22 01:10:16 -05:00
* Move the rule group up.
*
2016-01-15 06:08:25 -06:00
* @param RuleGroupRepositoryInterface $repository
* @param RuleGroup $ruleGroup
2016-01-15 06:06:17 -06:00
*
2016-01-24 08:58:16 -06:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2018-07-20 07:34:56 -05:00
*
* @SuppressWarnings(PHPMD.ShortMethodName)
2016-01-15 06:06:17 -06:00
*/
2016-01-24 08:58:16 -06:00
public function up(RuleGroupRepositoryInterface $repository, RuleGroup $ruleGroup)
2016-01-15 06:06:17 -06:00
{
2016-01-24 08:58:16 -06:00
$repository->moveUp($ruleGroup);
2016-01-15 06:06:17 -06:00
2016-01-24 08:58:16 -06:00
return redirect(route('rules.index'));
2016-01-15 06:06:17 -06:00
}
/**
2018-07-22 01:10:16 -05:00
* Update the rule group.
*
2016-01-24 08:58:16 -06:00
* @param RuleGroupFormRequest $request
2016-01-15 06:08:25 -06:00
* @param RuleGroupRepositoryInterface $repository
* @param RuleGroup $ruleGroup
2016-01-15 06:06:17 -06:00
*
2017-07-23 01:16:11 -05:00
* @return $this|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2016-01-15 06:06:17 -06:00
*/
2016-01-24 08:58:16 -06:00
public function update(RuleGroupFormRequest $request, RuleGroupRepositoryInterface $repository, RuleGroup $ruleGroup)
2016-01-15 06:06:17 -06:00
{
2016-01-24 08:58:16 -06:00
$data = [
'title' => $request->input('title'),
'description' => $request->input('description'),
2018-04-02 08:10:40 -05:00
'active' => 1 === (int)$request->input('active'),
2016-01-24 08:58:16 -06:00
];
2016-01-15 06:06:17 -06:00
2016-01-24 08:58:16 -06:00
$repository->update($ruleGroup, $data);
2016-01-15 06:06:17 -06:00
2018-04-22 10:10:11 -05:00
session()->flash('success', (string)trans('firefly.updated_rule_group', ['title' => $ruleGroup->title]));
2018-07-08 05:08:53 -05:00
app('preferences')->mark();
$redirect = redirect($this->getPreviousUri('rule-groups.edit.uri'));
2018-04-02 08:10:40 -05:00
if (1 === (int)$request->get('return_to_edit')) {
2017-03-24 05:07:38 -05:00
// @codeCoverageIgnoreStart
2018-04-22 10:12:22 -05:00
session()->put('rule-groups.edit.fromUpdate', true);
2016-01-15 06:06:17 -06:00
2018-07-08 05:08:53 -05:00
$redirect = redirect(route('rule-groups.edit', [$ruleGroup->id]))->withInput(['return_to_edit' => 1]);
2017-03-24 05:07:38 -05:00
// @codeCoverageIgnoreEnd
2016-01-24 08:58:16 -06:00
}
2016-01-15 06:06:17 -06:00
2016-01-24 08:58:16 -06:00
// redirect to previous URL.
2018-07-08 05:08:53 -05:00
return $redirect;
2016-01-15 06:06:17 -06:00
}
}