* @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 { $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)); } }