Files
firefly-iii/app/Http/Controllers/ObjectGroup/EditController.php

105 lines
3.3 KiB
PHP
Raw Normal View History

2020-06-20 10:10:55 +02:00
<?php
2020-06-30 19:05:35 +02:00
/**
* EditController.php
* Copyright (c) 2020 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/>.
*/
2020-06-20 10:10:55 +02:00
declare(strict_types=1);
namespace FireflyIII\Http\Controllers\ObjectGroup;
2021-03-28 11:46:23 +02:00
2020-06-20 10:10:55 +02:00
use FireflyIII\Http\Controllers\Controller;
use FireflyIII\Http\Requests\ObjectGroupFormRequest;
use FireflyIII\Models\ObjectGroup;
use FireflyIII\Repositories\ObjectGroup\ObjectGroupRepositoryInterface;
2021-09-18 10:20:19 +02:00
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Routing\Redirector;
2020-06-20 10:10:55 +02:00
/**
* Class EditController
*/
class EditController extends Controller
{
private ObjectGroupRepositoryInterface $repository;
/**
* PiggyBankController constructor.
*/
public function __construct()
{
parent::__construct();
$this->middleware(
function ($request, $next) {
app('view')->share('mainTitleIcon', 'fa-envelope-o');
2022-12-29 19:42:26 +01:00
app('view')->share('title', (string)trans('firefly.object_groups_page_title'));
2020-06-20 10:10:55 +02:00
$this->repository = app(ObjectGroupRepositoryInterface::class);
return $next($request);
}
);
}
/**
* Edit an object group.
*
2021-09-18 10:20:19 +02:00
* @return Factory|View
2020-06-20 10:10:55 +02:00
*/
public function edit(ObjectGroup $objectGroup)
{
2022-12-29 19:42:26 +01:00
$subTitle = (string)trans('firefly.edit_object_group', ['title' => $objectGroup->title]);
2020-06-20 10:10:55 +02:00
$subTitleIcon = 'fa-pencil';
if (true !== session('object-groups.edit.fromUpdate')) {
2022-04-12 18:19:30 +02:00
$this->rememberPreviousUrl('object-groups.edit.url');
2020-06-20 10:10:55 +02:00
}
session()->forget('object-groups.edit.fromUpdate');
return view('object-groups.edit', compact('subTitle', 'subTitleIcon', 'objectGroup'));
2020-06-20 10:10:55 +02:00
}
2021-03-28 11:46:23 +02:00
2020-06-20 10:10:55 +02:00
/**
* Update a piggy bank.
*
2023-12-20 19:35:52 +01:00
* @return Application|Redirector|RedirectResponse
2020-06-20 10:10:55 +02:00
*/
public function update(ObjectGroupFormRequest $request, ObjectGroup $objectGroup)
{
$data = $request->getObjectGroupData();
$piggyBank = $this->repository->update($objectGroup, $data);
2022-12-29 19:42:26 +01:00
session()->flash('success', (string)trans('firefly.updated_object_group', ['title' => $objectGroup->title]));
2020-06-20 10:10:55 +02:00
app('preferences')->mark();
2022-04-12 18:19:30 +02:00
$redirect = redirect($this->getPreviousUrl('object-groups.edit.url'));
2020-06-20 10:10:55 +02:00
2022-12-29 19:42:26 +01:00
if (1 === (int)$request->get('return_to_edit')) {
2020-06-20 10:10:55 +02:00
session()->put('object-groups.edit.fromUpdate', true);
$redirect = redirect(route('object-groups.edit', [$piggyBank->id]));
}
return $redirect;
}
}