Files
nextcloud-app-api/lib/Controller/PreferencesController.php
2025-05-29 17:07:06 +03:00

89 lines
2.7 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\AppAPI\Controller;
use OCA\AppAPI\AppInfo\Application;
use OCA\AppAPI\Attribute\AppAPIAuth;
use OCA\AppAPI\Db\ExAppPreference;
use OCA\AppAPI\Service\ExAppPreferenceService;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
use OCP\AppFramework\Http\Attribute\PublicPage;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCS\OCSBadRequestException;
use OCP\AppFramework\OCS\OCSNotFoundException;
use OCP\AppFramework\OCSController;
use OCP\IRequest;
use OCP\IUserSession;
class PreferencesController extends OCSController {
protected $request;
public function __construct(
IRequest $request,
private readonly IUserSession $userSession,
private readonly ExAppPreferenceService $exAppPreferenceService,
) {
parent::__construct(Application::APP_ID, $request);
$this->request = $request;
}
/**
* @throws OCSBadRequestException
*/
#[AppAPIAuth]
#[PublicPage]
#[NoCSRFRequired]
public function setUserConfigValue(string $configKey, mixed $configValue, ?int $sensitive = null): DataResponse {
if ($configKey === '') {
throw new OCSBadRequestException('Config key cannot be empty');
}
$userId = $this->userSession->getUser()->getUID();
$appId = $this->request->getHeader('EX-APP-ID');
$result = $this->exAppPreferenceService->setUserConfigValue($userId, $appId, $configKey, $configValue, $sensitive);
if ($result instanceof ExAppPreference) {
return new DataResponse($result, Http::STATUS_OK);
}
throw new OCSBadRequestException('Failed to set user config value');
}
#[AppAPIAuth]
#[PublicPage]
#[NoCSRFRequired]
public function getUserConfigValues(array $configKeys): DataResponse {
$userId = $this->userSession->getUser()->getUID();
$appId = $this->request->getHeader('EX-APP-ID');
$result = $this->exAppPreferenceService->getUserConfigValues($userId, $appId, $configKeys);
return new DataResponse($result, Http::STATUS_OK);
}
/**
* @throws OCSBadRequestException
* @throws OCSNotFoundException
*/
#[AppAPIAuth]
#[PublicPage]
#[NoCSRFRequired]
public function deleteUserConfigValues(array $configKeys): DataResponse {
$userId = $this->userSession->getUser()->getUID();
$appId = $this->request->getHeader('EX-APP-ID');
$result = $this->exAppPreferenceService->deleteUserConfigValues($configKeys, $userId, $appId);
if ($result === -1) {
throw new OCSBadRequestException('Failed to delete user config values');
}
if ($result === 0) {
throw new OCSNotFoundException('No preferences_ex values deleted');
}
return new DataResponse($result, Http::STATUS_OK);
}
}