2017-04-13 12:58:19 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
|
|
|
* @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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Settings;
|
|
|
|
|
|
|
|
use OC\Settings\Activity\Provider;
|
|
|
|
use OCP\Activity\IManager as IActivityManager;
|
2017-05-26 11:16:14 +03:00
|
|
|
use OCP\IConfig;
|
2017-04-13 12:58:19 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\IUserSession;
|
2017-05-26 11:16:14 +03:00
|
|
|
use OCP\L10N\IFactory;
|
2017-04-13 12:58:19 +03:00
|
|
|
use OCP\Mail\IMailer;
|
|
|
|
|
|
|
|
class Hooks {
|
|
|
|
|
|
|
|
/** @var IActivityManager */
|
|
|
|
protected $activityManager;
|
|
|
|
/** @var IUserManager */
|
|
|
|
protected $userManager;
|
|
|
|
/** @var IUserSession */
|
|
|
|
protected $userSession;
|
|
|
|
/** @var IURLGenerator */
|
|
|
|
protected $urlGenerator;
|
|
|
|
/** @var IMailer */
|
|
|
|
protected $mailer;
|
2017-05-26 11:16:14 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
|
|
|
/** @var IFactory */
|
|
|
|
protected $languageFactory;
|
2017-04-13 12:58:19 +03:00
|
|
|
/** @var IL10N */
|
|
|
|
protected $l;
|
|
|
|
|
2017-05-26 11:16:14 +03:00
|
|
|
public function __construct(IActivityManager $activityManager,
|
|
|
|
IUserManager $userManager,
|
|
|
|
IUserSession $userSession,
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
IMailer $mailer,
|
|
|
|
IConfig $config,
|
|
|
|
IFactory $languageFactory,
|
|
|
|
IL10N $l) {
|
2017-04-13 12:58:19 +03:00
|
|
|
$this->activityManager = $activityManager;
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->userSession = $userSession;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
$this->mailer = $mailer;
|
2017-05-26 11:16:14 +03:00
|
|
|
$this->config = $config;
|
|
|
|
$this->languageFactory = $languageFactory;
|
2017-04-13 12:58:19 +03:00
|
|
|
$this->l = $l;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $uid
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
* @throws \BadMethodCallException
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public function onChangePassword($uid) {
|
|
|
|
$user = $this->userManager->get($uid);
|
|
|
|
|
2017-06-22 10:02:12 +03:00
|
|
|
if (!$user instanceof IUser || $user->getLastLogin() === 0) {
|
|
|
|
// User didn't login, so don't create activities and emails.
|
2017-04-13 12:58:19 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$event = $this->activityManager->generateEvent();
|
|
|
|
$event->setApp('settings')
|
|
|
|
->setType('personal_settings')
|
|
|
|
->setAffectedUser($user->getUID());
|
|
|
|
|
|
|
|
$instanceUrl = $this->urlGenerator->getAbsoluteURL('/');
|
|
|
|
|
|
|
|
$actor = $this->userSession->getUser();
|
|
|
|
if ($actor instanceof IUser) {
|
|
|
|
if ($actor->getUID() !== $user->getUID()) {
|
2017-05-26 11:16:14 +03:00
|
|
|
$this->l = $this->languageFactory->get(
|
|
|
|
'settings',
|
|
|
|
$this->config->getUserValue(
|
|
|
|
$user->getUID(), 'core', 'lang',
|
|
|
|
$this->config->getSystemValue('default_language', 'en')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2017-04-13 12:58:19 +03:00
|
|
|
$text = $this->l->t('%1$s changed your password on %2$s.', [$actor->getDisplayName(), $instanceUrl]);
|
|
|
|
$event->setAuthor($actor->getUID())
|
|
|
|
->setSubject(Provider::PASSWORD_CHANGED_BY, [$actor->getUID()]);
|
|
|
|
} else {
|
|
|
|
$text = $this->l->t('Your password on %s was changed.', [$instanceUrl]);
|
|
|
|
$event->setAuthor($actor->getUID())
|
|
|
|
->setSubject(Provider::PASSWORD_CHANGED_SELF);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$text = $this->l->t('Your password on %s was reset by an administrator.', [$instanceUrl]);
|
|
|
|
$event->setSubject(Provider::PASSWORD_RESET);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->activityManager->publish($event);
|
|
|
|
|
|
|
|
if ($user->getEMailAddress() !== null) {
|
2017-09-04 16:07:19 +03:00
|
|
|
$template = $this->mailer->createEMailTemplate('settings.PasswordChanged', [
|
2017-08-30 23:56:14 +03:00
|
|
|
'displayname' => $user->getDisplayName(),
|
|
|
|
'emailAddress' => $user->getEMailAddress(),
|
|
|
|
'instanceUrl' => $instanceUrl,
|
|
|
|
]);
|
2017-04-13 12:58:19 +03:00
|
|
|
$template->addHeader();
|
|
|
|
$template->addHeading($this->l->t('Password changed for %s', $user->getDisplayName()), false);
|
|
|
|
$template->addBodyText($text . ' ' . $this->l->t('If you did not request this, please contact an administrator.'));
|
|
|
|
$template->addFooter();
|
|
|
|
|
|
|
|
|
|
|
|
$message = $this->mailer->createMessage();
|
|
|
|
$message->setTo([$user->getEMailAddress() => $user->getDisplayName()]);
|
|
|
|
$message->setSubject($this->l->t('Password for %1$s changed on %2$s', [$user->getDisplayName(), $instanceUrl]));
|
|
|
|
$message->setBody($template->renderText(), 'text/plain');
|
2017-04-19 01:09:25 +03:00
|
|
|
$message->setHtmlBody($template->renderHtml());
|
2017-04-13 12:58:19 +03:00
|
|
|
|
|
|
|
$this->mailer->send($message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IUser $user
|
2017-04-13 13:34:34 +03:00
|
|
|
* @param string|null $oldMailAddress
|
2017-04-13 12:58:19 +03:00
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
* @throws \BadMethodCallException
|
|
|
|
*/
|
2017-04-13 13:34:34 +03:00
|
|
|
public function onChangeEmail(IUser $user, $oldMailAddress) {
|
2017-05-26 13:49:12 +03:00
|
|
|
|
2017-06-22 10:02:12 +03:00
|
|
|
if ($oldMailAddress === $user->getEMailAddress() ||
|
|
|
|
$user->getLastLogin() === 0) {
|
|
|
|
// Email didn't really change or user didn't login,
|
|
|
|
// so don't create activities and emails.
|
2017-05-26 13:49:12 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-13 12:58:19 +03:00
|
|
|
$event = $this->activityManager->generateEvent();
|
|
|
|
$event->setApp('settings')
|
|
|
|
->setType('personal_settings')
|
|
|
|
->setAffectedUser($user->getUID());
|
|
|
|
|
2017-04-13 13:34:34 +03:00
|
|
|
$instanceUrl = $this->urlGenerator->getAbsoluteURL('/');
|
|
|
|
|
2017-04-13 12:58:19 +03:00
|
|
|
$actor = $this->userSession->getUser();
|
|
|
|
if ($actor instanceof IUser) {
|
|
|
|
if ($actor->getUID() !== $user->getUID()) {
|
2017-05-26 11:16:14 +03:00
|
|
|
$this->l = $this->languageFactory->get(
|
|
|
|
'settings',
|
|
|
|
$this->config->getUserValue(
|
|
|
|
$user->getUID(), 'core', 'lang',
|
|
|
|
$this->config->getSystemValue('default_language', 'en')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2017-04-13 13:34:34 +03:00
|
|
|
$text = $this->l->t('%1$s changed your email address on %2$s.', [$actor->getDisplayName(), $instanceUrl]);
|
2017-04-13 12:58:19 +03:00
|
|
|
$event->setAuthor($actor->getUID())
|
|
|
|
->setSubject(Provider::EMAIL_CHANGED_BY, [$actor->getUID()]);
|
|
|
|
} else {
|
2017-04-13 13:34:34 +03:00
|
|
|
$text = $this->l->t('Your email address on %s was changed.', [$instanceUrl]);
|
2017-04-13 12:58:19 +03:00
|
|
|
$event->setAuthor($actor->getUID())
|
|
|
|
->setSubject(Provider::EMAIL_CHANGED_SELF);
|
|
|
|
}
|
|
|
|
} else {
|
2017-04-13 13:34:34 +03:00
|
|
|
$text = $this->l->t('Your email address on %s was changed by an administrator.', [$instanceUrl]);
|
2017-04-13 12:58:19 +03:00
|
|
|
$event->setSubject(Provider::EMAIL_CHANGED);
|
|
|
|
}
|
|
|
|
$this->activityManager->publish($event);
|
2017-04-13 13:34:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
if ($oldMailAddress !== null) {
|
2017-09-04 16:07:19 +03:00
|
|
|
$template = $this->mailer->createEMailTemplate('settings.EmailChanged', [
|
2017-08-30 23:56:14 +03:00
|
|
|
'displayname' => $user->getDisplayName(),
|
|
|
|
'newEMailAddress' => $user->getEMailAddress(),
|
|
|
|
'oldEMailAddress' => $oldMailAddress,
|
|
|
|
'instanceUrl' => $instanceUrl,
|
|
|
|
]);
|
2017-04-13 13:34:34 +03:00
|
|
|
$template->addHeader();
|
|
|
|
$template->addHeading($this->l->t('Email address changed for %s', $user->getDisplayName()), false);
|
|
|
|
$template->addBodyText($text . ' ' . $this->l->t('If you did not request this, please contact an administrator.'));
|
|
|
|
if ($user->getEMailAddress()) {
|
|
|
|
$template->addBodyText($this->l->t('The new email address is %s', $user->getEMailAddress()));
|
|
|
|
}
|
|
|
|
$template->addFooter();
|
|
|
|
|
|
|
|
|
|
|
|
$message = $this->mailer->createMessage();
|
|
|
|
$message->setTo([$oldMailAddress => $user->getDisplayName()]);
|
|
|
|
$message->setSubject($this->l->t('Email address for %1$s changed on %2$s', [$user->getDisplayName(), $instanceUrl]));
|
|
|
|
$message->setBody($template->renderText(), 'text/plain');
|
2017-04-19 01:09:25 +03:00
|
|
|
$message->setHtmlBody($template->renderHtml());
|
2017-04-13 13:34:34 +03:00
|
|
|
|
|
|
|
$this->mailer->send($message);
|
|
|
|
}
|
2017-04-13 12:58:19 +03:00
|
|
|
}
|
|
|
|
}
|