123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\Settings\Controller;
- use OCP\AppFramework\Controller;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IRequest;
- use OCP\IURLGenerator;
- use OCP\IUserSession;
- use OCP\Mail\IMailer;
- class MailSettingsController extends Controller {
- /** @var IL10N */
- private $l10n;
- /** @var IConfig */
- private $config;
- /** @var IUserSession */
- private $userSession;
- /** @var IMailer */
- private $mailer;
- /** @var IURLGenerator */
- private $urlGenerator;
- /**
- * @param string $appName
- * @param IRequest $request
- * @param IL10N $l10n
- * @param IConfig $config
- * @param IUserSession $userSession
- * @param IURLGenerator $urlGenerator,
- * @param IMailer $mailer
- */
- public function __construct($appName,
- IRequest $request,
- IL10N $l10n,
- IConfig $config,
- IUserSession $userSession,
- IURLGenerator $urlGenerator,
- IMailer $mailer) {
- parent::__construct($appName, $request);
- $this->l10n = $l10n;
- $this->config = $config;
- $this->userSession = $userSession;
- $this->urlGenerator = $urlGenerator;
- $this->mailer = $mailer;
- }
- /**
- * Sets the email settings
- *
- * @PasswordConfirmationRequired
- * @AuthorizedAdminSetting(settings=OCA\Settings\Settings\Admin\Overview)
- *
- * @param string $mail_domain
- * @param string $mail_from_address
- * @param string $mail_smtpmode
- * @param string $mail_smtpsecure
- * @param string $mail_smtphost
- * @param int $mail_smtpauth
- * @param string $mail_smtpport
- * @return DataResponse
- */
- public function setMailSettings($mail_domain,
- $mail_from_address,
- $mail_smtpmode,
- $mail_smtpsecure,
- $mail_smtphost,
- $mail_smtpauth,
- $mail_smtpport,
- $mail_sendmailmode) {
- $params = get_defined_vars();
- $configs = [];
- foreach ($params as $key => $value) {
- $configs[$key] = empty($value) ? null : $value;
- }
- // Delete passwords from config in case no auth is specified
- if ($params['mail_smtpauth'] !== 1) {
- $configs['mail_smtpname'] = null;
- $configs['mail_smtppassword'] = null;
- }
- $this->config->setSystemValues($configs);
- $this->config->setAppValue('core', 'emailTestSuccessful', '0');
- return new DataResponse();
- }
- /**
- * Store the credentials used for SMTP in the config
- *
- * @PasswordConfirmationRequired
- * @AuthorizedAdminSetting(settings=OCA\Settings\Settings\Admin\Overview)
- *
- * @param string $mail_smtpname
- * @param string $mail_smtppassword
- * @return DataResponse
- */
- public function storeCredentials($mail_smtpname, $mail_smtppassword) {
- if ($mail_smtppassword === '********') {
- return new DataResponse($this->l10n->t('Invalid SMTP password.'), Http::STATUS_BAD_REQUEST);
- }
- $this->config->setSystemValues([
- 'mail_smtpname' => $mail_smtpname,
- 'mail_smtppassword' => $mail_smtppassword,
- ]);
- $this->config->setAppValue('core', 'emailTestSuccessful', '0');
- return new DataResponse();
- }
- /**
- * Send a mail to test the settings
- * @AuthorizedAdminSetting(settings=OCA\Settings\Settings\Admin\Overview)
- * @return DataResponse
- */
- public function sendTestMail() {
- $email = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'email', '');
- if (!empty($email)) {
- try {
- $displayName = $this->userSession->getUser()->getDisplayName();
- $template = $this->mailer->createEMailTemplate('settings.TestEmail', [
- 'displayname' => $displayName,
- ]);
- $template->setSubject($this->l10n->t('Email setting test'));
- $template->addHeader();
- $template->addHeading($this->l10n->t('Well done, %s!', [$displayName]));
- $template->addBodyText($this->l10n->t('If you received this email, the email configuration seems to be correct.'));
- $template->addFooter();
- $message = $this->mailer->createMessage();
- $message->setTo([$email => $displayName]);
- $message->useTemplate($template);
- $errors = $this->mailer->send($message);
- if (!empty($errors)) {
- $this->config->setAppValue('core', 'emailTestSuccessful', '0');
- throw new \RuntimeException($this->l10n->t('Email could not be sent. Check your mail server log'));
- }
- // Store the successful config in the app config
- $this->config->setAppValue('core', 'emailTestSuccessful', '1');
- return new DataResponse();
- } catch (\Exception $e) {
- $this->config->setAppValue('core', 'emailTestSuccessful', '0');
- return new DataResponse($this->l10n->t('A problem occurred while sending the email. Please revise your settings. (Error: %s)', [$e->getMessage()]), Http::STATUS_BAD_REQUEST);
- }
- }
- $this->config->setAppValue('core', 'emailTestSuccessful', '0');
- return new DataResponse($this->l10n->t('You need to set your account email before being able to send test emails. Go to %s for that.', [$this->urlGenerator->linkToRouteAbsolute('settings.PersonalSettings.index')]), Http::STATUS_BAD_REQUEST);
- }
- }
|