%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps/photos/lib/Controller/ |
Current File : //www/varak.net/nextcloud.varak.net/apps/photos/lib/Controller/ApiController.php |
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Photos\Controller; use OCA\Photos\AppInfo\Application; use OCA\Photos\Service\UserConfigService; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\ContentSecurityPolicy; use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\StreamResponse; use OCP\IConfig; use OCP\IRequest; use OCP\IUserSession; class ApiController extends Controller { private IConfig $config; private IUserSession $userSession; public function __construct( IRequest $request, IConfig $config, IUserSession $userSession ) { parent::__construct(Application::APP_ID, $request); $this->config = $config; $this->userSession = $userSession; } /** * @NoAdminRequired * * update preferences (user setting) * * @param string key the identifier to change * @param string value the value to set * * @return JSONResponse an empty JSONResponse with respective http status code */ public function setUserConfig(string $key, string $value): JSONResponse { $user = $this->userSession->getUser(); if (is_null($user)) { return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED); } if (!in_array($key, array_keys(UserConfigService::DEFAULT_CONFIGS))) { return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED); } $this->config->setUserValue($user->getUid(), Application::APP_ID, $key, $value); return new JSONResponse([], Http::STATUS_OK); } /** * @NoAdminRequired * @NoCSRFRequired */ public function serviceWorker(): StreamResponse { $response = new StreamResponse(__DIR__.'/../../js/photos-service-worker.js'); $response->setHeaders([ 'Content-Type' => 'application/javascript', 'Service-Worker-Allowed' => '/' ]); $policy = new ContentSecurityPolicy(); $policy->addAllowedWorkerSrcDomain("'self'"); $policy->addAllowedScriptDomain("'self'"); $policy->addAllowedConnectDomain("'self'"); $response->setContentSecurityPolicy($policy); return $response; } }