* * @author 2019 Christoph Wurst * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ namespace OCA\Mail\Controller; use OCA\Mail\AppInfo\Application; use OCA\Mail\Exception\ValidationException; use OCA\Mail\Http\JsonResponse as HttpJsonResponse; use OCA\Mail\Service\AntiSpamService; use OCA\Mail\Service\Provisioning\Manager as ProvisioningManager; use OCP\AppFramework\Controller; use OCP\AppFramework\Http\JSONResponse; use OCP\IRequest; use function array_merge; class SettingsController extends Controller { /** @var ProvisioningManager */ private $provisioningManager; /** @var AntiSpamService */ private $antiSpamService; public function __construct(IRequest $request, ProvisioningManager $provisioningManager, AntiSpamService $antiSpamService) { parent::__construct(Application::APP_ID, $request); $this->provisioningManager = $provisioningManager; $this->antiSpamService = $antiSpamService; } 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 { $this->provisioningManager->newProvisioning($data); } catch (ValidationException $e) { return HttpJsonResponse::fail([$e->getFields()]); } catch (\Exception $e) { return HttpJsonResponse::fail([$e->getMessage()]); } return new JSONResponse([]); } 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([]); } }