mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-15 19:22:08 -06:00
128 lines
4.1 KiB
PHP
128 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* ConfigurationController.php
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* 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
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Api\V1\Controllers;
|
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use FireflyIII\Models\Configuration;
|
|
use FireflyIII\Repositories\User\UserRepositoryInterface;
|
|
use FireflyIII\User;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* Class ConfigurationController
|
|
*/
|
|
class ConfigurationController extends Controller
|
|
{
|
|
|
|
|
|
/** @var UserRepositoryInterface */
|
|
private $repository;
|
|
|
|
/**
|
|
* BudgetController constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->middleware(
|
|
function ($request, $next) {
|
|
$this->repository = app(UserRepositoryInterface::class);
|
|
/** @var User $admin */
|
|
$admin = auth()->user();
|
|
|
|
if (!$this->repository->hasRole($admin, 'owner')) {
|
|
throw new FireflyException('No access to method.'); // @codeCoverageIgnore
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws FireflyException
|
|
*/
|
|
public function index()
|
|
{
|
|
$configData = $this->getConfigData();
|
|
|
|
return response()->json(['data' => $configData], 200)->header('Content-Type', 'application/vnd.api+json');
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
*
|
|
* @return JsonResponse
|
|
* @throws FireflyException
|
|
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
|
*/
|
|
public function update(Request $request): JsonResponse
|
|
{
|
|
$name = $request->get('name');
|
|
$value = $request->get('value');
|
|
$valid = ['is_demo_site', 'permission_update_check', 'single_user_mode'];
|
|
if (!\in_array($name, $valid, true)) {
|
|
throw new FireflyException('You cannot edit this configuration value.');
|
|
}
|
|
$configValue = '';
|
|
switch ($name) {
|
|
case 'is_demo_site':
|
|
case 'single_user_mode':
|
|
$configValue = $value === 'true';
|
|
break;
|
|
case 'permission_update_check':
|
|
$configValue = (int)$value >= -1 && (int)$value <= 1 ? (int)$value : -1;
|
|
break;
|
|
}
|
|
app('fireflyconfig')->set($name, $configValue);
|
|
$configData = $this->getConfigData();
|
|
|
|
return response()->json(['data' => $configData], 200)->header('Content-Type', 'application/vnd.api+json');
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
|
*/
|
|
private function getConfigData(): array
|
|
{
|
|
/** @var Configuration $isDemoSite */
|
|
$isDemoSite = app('fireflyconfig')->get('is_demo_site');
|
|
/** @var Configuration $updateCheck */
|
|
$updateCheck = app('fireflyconfig')->get('permission_update_check');
|
|
/** @var Configuration $lastCheck */
|
|
$lastCheck = app('fireflyconfig')->get('last_update_check');
|
|
/** @var Configuration $singleUser */
|
|
$singleUser = app('fireflyconfig')->get('single_user_mode');
|
|
$data = [
|
|
'is_demo_site' => null === $isDemoSite ? null : $isDemoSite->data,
|
|
'permission_update_check' => null === $updateCheck ? null : (int)$updateCheck->data,
|
|
'last_update_check' => null === $lastCheck ? null : (int)$lastCheck->data,
|
|
'single_user_mode' => null === $singleUser ? null : $singleUser->data,
|
|
];
|
|
|
|
return $data;
|
|
}
|
|
} |