73 lines
1.7 KiB
PHP
73 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Recommendations\Controller;
|
|
|
|
use Exception;
|
|
use OCA\Recommendations\AppInfo\Application;
|
|
use OCP\AppFramework\Controller;
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
use OCP\IConfig;
|
|
use OCP\IRequest;
|
|
use OCP\IUser;
|
|
use OCP\IUserSession;
|
|
|
|
class SettingsController extends Controller {
|
|
private IConfig $config;
|
|
private IUserSession $userSession;
|
|
|
|
public function __construct($appName,
|
|
IRequest $request,
|
|
IConfig $config,
|
|
IUserSession $userSession) {
|
|
parent::__construct($appName, $request);
|
|
$this->config = $config;
|
|
$this->userSession = $userSession;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function getSettings(): JSONResponse {
|
|
$user = $this->userSession->getUser();
|
|
if (!$user instanceof IUser) {
|
|
throw new Exception("Not logged in");
|
|
}
|
|
return new JSONResponse([
|
|
'enabled' => $this->config->getUserValue($user->getUID(), Application::APP_ID, 'enabled', 'true') === 'true',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function setSetting(string $key, string $value): JSONResponse {
|
|
$user = $this->userSession->getUser();
|
|
if (!$user instanceof IUser) {
|
|
throw new Exception("Not logged in");
|
|
}
|
|
$availableSettings = ['enabled'];
|
|
if (!in_array($key, $availableSettings)) {
|
|
return new JSONResponse([
|
|
'message' => 'parameter does not exist',
|
|
], Http::STATUS_UNPROCESSABLE_ENTITY);
|
|
}
|
|
$this->config->setUserValue($user->getUID(), Application::APP_ID, $key, $value);
|
|
return new JSONResponse([
|
|
'key' => $key,
|
|
'value' => $value,
|
|
]);
|
|
}
|
|
}
|