provisioningManager = $provisioningManager; $this->antiSpamService = $antiSpamService; $this->config = $config; $this->container = $container; $this->classificationSettingsService = $classificationSettingsService; } public function index(): JSONResponse { $provisionings = $this->provisioningManager->getConfigs(); return new JSONResponse($provisionings); } public function provision() : JSONResponse { $count = $this->provisioningManager->provision(); return new JSONResponse(['count' => $count]); } public function createProvisioning(array $data): JSONResponse { try { return new JSONResponse( $this->provisioningManager->newProvisioning($data) ); } catch (ValidationException $e) { return HttpJsonResponse::fail([$e->getFields()]); } catch (\Exception $e) { return HttpJsonResponse::fail([$e->getMessage()]); } } public function updateProvisioning(int $id, array $data): JSONResponse { try { $this->provisioningManager->updateProvisioning(array_merge($data, ['id' => $id])); } catch (ValidationException $e) { return HttpJsonResponse::fail([$e->getFields()]); } catch (\Exception $e) { return HttpJsonResponse::fail([$e->getMessage()]); } return new JSONResponse([]); } public function deprovision(int $id): JSONResponse { $provisioning = $this->provisioningManager->getConfigById($id); if ($provisioning !== null) { $this->provisioningManager->deprovision($provisioning); } return new JSONResponse([]); } /** * * @return JSONResponse */ public function setAntiSpamEmail(string $spam, string $ham): JSONResponse { $this->antiSpamService->setSpamEmail($spam); $this->antiSpamService->setHamEmail($ham); return new JSONResponse([]); } /** * Store the credentials used for SMTP in the config * * @return JSONResponse */ public function deleteAntiSpamEmail(): JSONResponse { $this->antiSpamService->deleteConfig(); return new JSONResponse([]); } public function setAllowNewMailAccounts(bool $allowed): void { $this->config->setAppValue('mail', 'allow_new_mail_accounts', $allowed ? 'yes' : 'no'); } public function setEnabledLlmProcessing(bool $enabled): JSONResponse { $this->config->setAppValue('mail', 'llm_processing', $enabled ? 'yes' : 'no'); return new JSONResponse([]); } public function setImportanceClassificationEnabledByDefault(bool $enabledByDefault): JSONResponse { $this->classificationSettingsService->setClassificationEnabledByDefault($enabledByDefault); return new JSONResponse([]); } public function setLayoutMessageView(string $value): JSONResponse { $this->config->setAppValue('mail', 'layout_message_view', $value); return new JSONResponse([]); } }