2017-04-12 16:19:45 +03:00
|
|
|
<?php
|
2019-02-01 15:18:52 +03:00
|
|
|
declare(strict_types=1);
|
2017-04-12 16:19:45 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2017-04-12 16:19:45 +03:00
|
|
|
* @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\Activity;
|
|
|
|
|
|
|
|
use OCP\Activity\IEvent;
|
2017-06-20 14:48:51 +03:00
|
|
|
use OCP\Activity\IManager;
|
2017-04-12 16:19:45 +03:00
|
|
|
use OCP\Activity\IProvider;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\L10N\IFactory;
|
|
|
|
|
|
|
|
class Provider implements IProvider {
|
|
|
|
|
2019-02-01 15:18:52 +03:00
|
|
|
public const PASSWORD_CHANGED_BY = 'password_changed_by';
|
|
|
|
public const PASSWORD_CHANGED_SELF = 'password_changed_self';
|
|
|
|
public const PASSWORD_RESET = 'password_changed';
|
|
|
|
public const EMAIL_CHANGED_BY = 'email_changed_by';
|
|
|
|
public const EMAIL_CHANGED_SELF = 'email_changed_self';
|
|
|
|
public const EMAIL_CHANGED = 'email_changed';
|
2019-01-12 19:48:27 +03:00
|
|
|
public const APP_TOKEN_CREATED = 'app_token_created';
|
|
|
|
public const APP_TOKEN_DELETED = 'app_token_deleted';
|
2019-02-13 01:40:53 +03:00
|
|
|
public const APP_TOKEN_RENAMED = 'app_token_renamed';
|
|
|
|
public const APP_TOKEN_FILESYSTEM_GRANTED = 'app_token_filesystem_granted';
|
|
|
|
public const APP_TOKEN_FILESYSTEM_REVOKED = 'app_token_filesystem_revoked';
|
2017-04-12 16:19:45 +03:00
|
|
|
|
|
|
|
/** @var IFactory */
|
|
|
|
protected $languageFactory;
|
|
|
|
|
|
|
|
/** @var IL10N */
|
|
|
|
protected $l;
|
|
|
|
|
|
|
|
/** @var IURLGenerator */
|
|
|
|
protected $url;
|
|
|
|
|
|
|
|
/** @var IUserManager */
|
|
|
|
protected $userManager;
|
|
|
|
|
2017-06-20 14:48:51 +03:00
|
|
|
/** @var IManager */
|
|
|
|
private $activityManager;
|
|
|
|
|
2017-04-12 16:19:45 +03:00
|
|
|
/** @var string[] cached displayNames - key is the UID and value the displayname */
|
|
|
|
protected $displayNames = [];
|
|
|
|
|
2019-02-01 15:18:52 +03:00
|
|
|
public function __construct(IFactory $languageFactory,
|
|
|
|
IURLGenerator $url,
|
|
|
|
IUserManager $userManager,
|
|
|
|
IManager $activityManager) {
|
2017-04-12 16:19:45 +03:00
|
|
|
$this->languageFactory = $languageFactory;
|
|
|
|
$this->url = $url;
|
|
|
|
$this->userManager = $userManager;
|
2017-06-20 14:48:51 +03:00
|
|
|
$this->activityManager = $activityManager;
|
2017-04-12 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $language
|
|
|
|
* @param IEvent $event
|
|
|
|
* @param IEvent|null $previousEvent
|
|
|
|
* @return IEvent
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
* @since 11.0.0
|
|
|
|
*/
|
2019-02-01 15:18:52 +03:00
|
|
|
public function parse($language, IEvent $event, IEvent $previousEvent = null): IEvent {
|
2017-04-12 16:19:45 +03:00
|
|
|
if ($event->getApp() !== 'settings') {
|
2019-02-01 15:18:52 +03:00
|
|
|
throw new \InvalidArgumentException('Unknown app');
|
2017-04-12 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->l = $this->languageFactory->get('settings', $language);
|
|
|
|
|
2017-06-20 14:48:51 +03:00
|
|
|
if ($this->activityManager->getRequirePNG()) {
|
|
|
|
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('settings', 'personal.png')));
|
|
|
|
} else {
|
|
|
|
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('settings', 'personal.svg')));
|
|
|
|
}
|
2017-04-12 16:19:45 +03:00
|
|
|
|
|
|
|
if ($event->getSubject() === self::PASSWORD_CHANGED_BY) {
|
|
|
|
$subject = $this->l->t('{actor} changed your password');
|
|
|
|
} else if ($event->getSubject() === self::PASSWORD_CHANGED_SELF) {
|
|
|
|
$subject = $this->l->t('You changed your password');
|
|
|
|
} else if ($event->getSubject() === self::PASSWORD_RESET) {
|
|
|
|
$subject = $this->l->t('Your password was reset by an administrator');
|
|
|
|
|
|
|
|
} else if ($event->getSubject() === self::EMAIL_CHANGED_BY) {
|
2017-04-18 10:53:02 +03:00
|
|
|
$subject = $this->l->t('{actor} changed your email address');
|
2017-04-12 16:19:45 +03:00
|
|
|
} else if ($event->getSubject() === self::EMAIL_CHANGED_SELF) {
|
2017-04-18 10:53:02 +03:00
|
|
|
$subject = $this->l->t('You changed your email address');
|
2017-04-12 16:19:45 +03:00
|
|
|
} else if ($event->getSubject() === self::EMAIL_CHANGED) {
|
2017-04-18 10:53:02 +03:00
|
|
|
$subject = $this->l->t('Your email address was changed by an administrator');
|
2017-04-12 16:19:45 +03:00
|
|
|
|
2019-01-12 19:48:27 +03:00
|
|
|
} else if ($event->getSubject() === self::APP_TOKEN_CREATED) {
|
2019-02-01 15:15:59 +03:00
|
|
|
$subject = $this->l->t('You created app password "{token}"');
|
2019-01-12 19:48:27 +03:00
|
|
|
} else if ($event->getSubject() === self::APP_TOKEN_DELETED) {
|
2019-02-01 15:15:59 +03:00
|
|
|
$subject = $this->l->t('You deleted app password "{token}"');
|
2019-02-13 01:40:53 +03:00
|
|
|
} else if ($event->getSubject() === self::APP_TOKEN_RENAMED) {
|
|
|
|
$subject = $this->l->t('You renamed app password "{token}" to "{newToken}"');
|
|
|
|
} else if ($event->getSubject() === self::APP_TOKEN_FILESYSTEM_GRANTED) {
|
|
|
|
$subject = $this->l->t('You granted filesystem access to app password "{token}"');
|
|
|
|
} else if ($event->getSubject() === self::APP_TOKEN_FILESYSTEM_REVOKED) {
|
|
|
|
$subject = $this->l->t('You revoked filesystem access from app password "{token}"');
|
2019-01-12 19:48:27 +03:00
|
|
|
|
2017-04-12 16:19:45 +03:00
|
|
|
} else {
|
2019-02-01 15:18:52 +03:00
|
|
|
throw new \InvalidArgumentException('Unknown subject');
|
2017-04-12 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$parsedParameters = $this->getParameters($event);
|
|
|
|
$this->setSubjects($event, $subject, $parsedParameters);
|
|
|
|
|
|
|
|
return $event;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IEvent $event
|
|
|
|
* @return array
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
*/
|
2019-02-01 15:18:52 +03:00
|
|
|
protected function getParameters(IEvent $event): array {
|
2017-04-12 16:19:45 +03:00
|
|
|
$subject = $event->getSubject();
|
|
|
|
$parameters = $event->getSubjectParameters();
|
|
|
|
|
|
|
|
switch ($subject) {
|
|
|
|
case self::PASSWORD_CHANGED_SELF:
|
|
|
|
case self::PASSWORD_RESET:
|
|
|
|
case self::EMAIL_CHANGED_SELF:
|
|
|
|
case self::EMAIL_CHANGED:
|
|
|
|
return [];
|
|
|
|
case self::PASSWORD_CHANGED_BY:
|
|
|
|
case self::EMAIL_CHANGED_BY:
|
|
|
|
return [
|
|
|
|
'actor' => $this->generateUserParameter($parameters[0]),
|
|
|
|
];
|
2019-02-01 15:15:59 +03:00
|
|
|
case self::APP_TOKEN_CREATED:
|
|
|
|
case self::APP_TOKEN_DELETED:
|
2019-02-13 01:40:53 +03:00
|
|
|
case self::APP_TOKEN_FILESYSTEM_GRANTED:
|
|
|
|
case self::APP_TOKEN_FILESYSTEM_REVOKED:
|
2019-02-01 15:15:59 +03:00
|
|
|
return [
|
|
|
|
'token' => [
|
|
|
|
'type' => 'highlight',
|
|
|
|
'id' => $event->getObjectId(),
|
2019-02-13 01:40:53 +03:00
|
|
|
'name' => $parameters['name'],
|
|
|
|
]
|
|
|
|
];
|
|
|
|
case self::APP_TOKEN_RENAMED:
|
|
|
|
return [
|
|
|
|
'token' => [
|
|
|
|
'type' => 'highlight',
|
|
|
|
'id' => $event->getObjectId(),
|
|
|
|
'name' => $parameters['name'],
|
|
|
|
],
|
|
|
|
'newToken' => [
|
|
|
|
'type' => 'highlight',
|
|
|
|
'id' => $event->getObjectId(),
|
|
|
|
'name' => $parameters['newName'],
|
2019-02-01 15:15:59 +03:00
|
|
|
]
|
|
|
|
];
|
2017-04-12 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
2019-02-01 15:18:52 +03:00
|
|
|
throw new \InvalidArgumentException('Unknown subject');
|
2017-04-12 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IEvent $event
|
|
|
|
* @param string $subject
|
|
|
|
* @param array $parameters
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
*/
|
2019-02-01 15:18:52 +03:00
|
|
|
protected function setSubjects(IEvent $event, string $subject, array $parameters): void {
|
2017-04-12 16:19:45 +03:00
|
|
|
$placeholders = $replacements = [];
|
|
|
|
foreach ($parameters as $placeholder => $parameter) {
|
|
|
|
$placeholders[] = '{' . $placeholder . '}';
|
|
|
|
$replacements[] = $parameter['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$event->setParsedSubject(str_replace($placeholders, $replacements, $subject))
|
|
|
|
->setRichSubject($subject, $parameters);
|
|
|
|
}
|
|
|
|
|
2019-02-01 15:18:52 +03:00
|
|
|
protected function generateUserParameter(string $uid): array {
|
2017-04-12 16:19:45 +03:00
|
|
|
if (!isset($this->displayNames[$uid])) {
|
|
|
|
$this->displayNames[$uid] = $this->getDisplayName($uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'type' => 'user',
|
|
|
|
'id' => $uid,
|
|
|
|
'name' => $this->displayNames[$uid],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-02-01 15:18:52 +03:00
|
|
|
protected function getDisplayName(string $uid): string {
|
2017-04-12 16:19:45 +03:00
|
|
|
$user = $this->userManager->get($uid);
|
|
|
|
if ($user instanceof IUser) {
|
|
|
|
return $user->getDisplayName();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $uid;
|
|
|
|
}
|
|
|
|
}
|