* @throws NotLoggedInException Not logged in or not an admin user * @throws NotAdminException Not logged in or not an admin user * @throws OCSBadRequestException Invalid arguments to save value * * 200: Value set successfully */ #[NoAdminRequired] public function setValue(string $app, string $formId, string $fieldId, mixed $value): DataResponse { return $this->saveValue($app, $formId, $fieldId, $value); } /** * Sets a declarative settings value. * Password confirmation is required for sensitive values. * * @param string $app ID of the app * @param string $formId ID of the form * @param string $fieldId ID of the field * @param mixed $value Value to be saved * @return DataResponse * @throws NotLoggedInException Not logged in or not an admin user * @throws NotAdminException Not logged in or not an admin user * @throws OCSBadRequestException Invalid arguments to save value * * 200: Value set successfully */ #[NoAdminRequired] #[PasswordConfirmationRequired] public function setSensitiveValue(string $app, string $formId, string $fieldId, mixed $value): DataResponse { return $this->saveValue($app, $formId, $fieldId, $value); } /** * Sets a declarative settings value. * * @param string $app ID of the app * @param string $formId ID of the form * @param string $fieldId ID of the field * @param mixed $value Value to be saved * @return DataResponse * @throws NotLoggedInException Not logged in or not an admin user * @throws NotAdminException Not logged in or not an admin user * @throws OCSBadRequestException Invalid arguments to save value * * 200: Value set successfully */ private function saveValue(string $app, string $formId, string $fieldId, mixed $value): DataResponse { $user = $this->userSession->getUser(); if ($user === null) { throw new NotLoggedInException(); } try { $this->declarativeManager->loadSchemas(); $this->declarativeManager->setValue($user, $app, $formId, $fieldId, $value); return new DataResponse(null); } catch (NotAdminException $e) { throw $e; } catch (Exception $e) { $this->logger->error('Failed to set declarative settings value: ' . $e->getMessage()); throw new OCSBadRequestException(); } } /** * Gets all declarative forms with the values prefilled. * * @return DataResponse, array{}> * @throws NotLoggedInException * @NoSubAdminRequired * * 200: Forms returned */ #[NoAdminRequired] public function getForms(): DataResponse { $user = $this->userSession->getUser(); if ($user === null) { throw new NotLoggedInException(); } $this->declarativeManager->loadSchemas(); return new DataResponse($this->declarativeManager->getFormsWithValues($user, null, null)); } }