123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- *
- * @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 OCA\ShareByMail;
- use OCP\Activity\IEvent;
- use OCP\Activity\IManager;
- use OCP\Activity\IProvider;
- use OCP\Contacts\IManager as IContactsManager;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\IUserManager;
- use OCP\L10N\IFactory;
- class Activity implements IProvider {
- /** @var IFactory */
- protected $languageFactory;
- /** @var IL10N */
- protected $l;
- /** @var IURLGenerator */
- protected $url;
- /** @var IManager */
- protected $activityManager;
- /** @var IUserManager */
- protected $userManager;
- /** @var IContactsManager */
- protected $contactsManager;
- /** @var array */
- protected $contactNames = [];
- public const SUBJECT_SHARED_EMAIL_SELF = 'shared_with_email_self';
- public const SUBJECT_SHARED_EMAIL_BY = 'shared_with_email_by';
- public const SUBJECT_SHARED_EMAIL_PASSWORD_SEND = 'shared_with_email_password_send';
- public const SUBJECT_SHARED_EMAIL_PASSWORD_SEND_SELF = 'shared_with_email_password_send_self';
- public const SUBJECT_UNSHARED_EMAIL_SELF = 'unshared_with_email_self';
- public const SUBJECT_UNSHARED_EMAIL_BY = 'unshared_with_email_by';
- /**
- * @param IFactory $languageFactory
- * @param IURLGenerator $url
- * @param IManager $activityManager
- * @param IUserManager $userManager
- * @param IContactsManager $contactsManager
- */
- public function __construct(IFactory $languageFactory, IURLGenerator $url, IManager $activityManager, IUserManager $userManager, IContactsManager $contactsManager) {
- $this->languageFactory = $languageFactory;
- $this->url = $url;
- $this->activityManager = $activityManager;
- $this->userManager = $userManager;
- $this->contactsManager = $contactsManager;
- }
- /**
- * @param string $language
- * @param IEvent $event
- * @param IEvent|null $previousEvent
- * @return IEvent
- * @throws \InvalidArgumentException
- * @since 11.0.0
- */
- public function parse($language, IEvent $event, IEvent $previousEvent = null) {
- if ($event->getApp() !== 'sharebymail') {
- throw new \InvalidArgumentException();
- }
- $this->l = $this->languageFactory->get('sharebymail', $language);
- if ($this->activityManager->isFormattingFilteredObject()) {
- try {
- return $this->parseShortVersion($event);
- } catch (\InvalidArgumentException $e) {
- // Ignore and simply use the long version...
- }
- }
- return $this->parseLongVersion($event);
- }
- /**
- * @param IEvent $event
- * @return IEvent
- * @throws \InvalidArgumentException
- * @since 11.0.0
- */
- public function parseShortVersion(IEvent $event) {
- $parsedParameters = $this->getParsedParameters($event);
- if ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_SELF) {
- $event->setRichSubject($this->l->t('Shared with {email}'), [
- 'email' => $parsedParameters['email'],
- ]);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_BY) {
- $event->setRichSubject($this->l->t('Shared with {email} by {actor}'), [
- 'email' => $parsedParameters['email'],
- 'actor' => $parsedParameters['actor'],
- ]);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_UNSHARED_EMAIL_SELF) {
- $event->setRichSubject($this->l->t('Unshared from {email}'), [
- 'email' => $parsedParameters['email'],
- ]);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_UNSHARED_EMAIL_BY) {
- $event->setRichSubject($this->l->t('Unshared from {email} by {actor}'), [
- 'email' => $parsedParameters['email'],
- 'actor' => $parsedParameters['actor'],
- ]);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND) {
- $event->setRichSubject($this->l->t('Password for mail share sent to {email}'), [
- 'email' => $parsedParameters['email']
- ]);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND_SELF) {
- $event->setRichSubject($this->l->t('Password for mail share sent to you'));
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } else {
- throw new \InvalidArgumentException();
- }
- return $event;
- }
- /**
- * @param IEvent $event
- * @return IEvent
- * @throws \InvalidArgumentException
- * @since 11.0.0
- */
- public function parseLongVersion(IEvent $event) {
- $parsedParameters = $this->getParsedParameters($event);
- if ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_SELF) {
- $event->setRichSubject($this->l->t('You shared {file} with {email} by mail'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_BY) {
- $event->setRichSubject($this->l->t('{actor} shared {file} with {email} by mail'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_UNSHARED_EMAIL_SELF) {
- $event->setRichSubject($this->l->t('You unshared {file} from {email} by mail'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_UNSHARED_EMAIL_BY) {
- $event->setRichSubject($this->l->t('{actor} unshared {file} from {email} by mail'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND) {
- $event->setRichSubject($this->l->t('Password to access {file} was sent to {email}'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } elseif ($event->getSubject() === self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND_SELF) {
- $event->setRichSubject($this->l->t('Password to access {file} was sent to you'), $parsedParameters);
- if ($this->activityManager->getRequirePNG()) {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.png')));
- } else {
- $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
- }
- } else {
- throw new \InvalidArgumentException();
- }
- return $event;
- }
- protected function getParsedParameters(IEvent $event) {
- $subject = $event->getSubject();
- $parameters = $event->getSubjectParameters();
- switch ($subject) {
- case self::SUBJECT_SHARED_EMAIL_SELF:
- case self::SUBJECT_UNSHARED_EMAIL_SELF:
- return [
- 'file' => $this->generateFileParameter($event->getObjectId(), $parameters[0]),
- 'email' => $this->generateEmailParameter($parameters[1]),
- ];
- case self::SUBJECT_SHARED_EMAIL_BY:
- case self::SUBJECT_UNSHARED_EMAIL_BY:
- return [
- 'file' => $this->generateFileParameter($event->getObjectId(), $parameters[0]),
- 'email' => $this->generateEmailParameter($parameters[1]),
- 'actor' => $this->generateUserParameter($parameters[2]),
- ];
- case self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND:
- return [
- 'file' => $this->generateFileParameter($event->getObjectId(), $parameters[0]),
- 'email' => $this->generateEmailParameter($parameters[1]),
- ];
- case self::SUBJECT_SHARED_EMAIL_PASSWORD_SEND_SELF:
- return [
- 'file' => $this->generateFileParameter($event->getObjectId(), $parameters[0]),
- ];
- }
- throw new \InvalidArgumentException();
- }
- /**
- * @param int $id
- * @param string $path
- * @return array
- */
- protected function generateFileParameter($id, $path) {
- return [
- 'type' => 'file',
- 'id' => $id,
- 'name' => basename($path),
- 'path' => trim($path, '/'),
- 'link' => $this->url->linkToRouteAbsolute('files.viewcontroller.showFile', ['fileid' => $id]),
- ];
- }
- /**
- * @param string $email
- * @return array
- */
- protected function generateEmailParameter($email) {
- if (!isset($this->contactNames[$email])) {
- $this->contactNames[$email] = $this->getContactName($email);
- }
- return [
- 'type' => 'email',
- 'id' => $email,
- 'name' => $this->contactNames[$email],
- ];
- }
- /**
- * @param string $uid
- * @return array
- */
- protected function generateUserParameter($uid) {
- return [
- 'type' => 'user',
- 'id' => $uid,
- 'name' => $this->userManager->getDisplayName($uid) ?? $uid,
- ];
- }
- /**
- * @param string $email
- * @return string
- */
- protected function getContactName($email) {
- $addressBookContacts = $this->contactsManager->search($email, ['EMAIL'], [
- 'limit' => 1,
- 'enumeration' => false,
- 'fullmatch' => false,
- 'strict_search' => true,
- ]);
- foreach ($addressBookContacts as $contact) {
- if (isset($contact['isLocalSystemBook'])) {
- continue;
- }
- if (in_array($email, $contact['EMAIL'])) {
- return $contact['FN'];
- }
- }
- return $email;
- }
- }
|