123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sascha Wiswedel <sascha.wiswedel@nextcloud.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 OCA\Files\Notification;
- use OCA\Files\Db\TransferOwnershipMapper;
- use OCP\AppFramework\Db\DoesNotExistException;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\IURLGenerator;
- use OCP\L10N\IFactory;
- use OCP\Notification\IAction;
- use OCP\Notification\IDismissableNotifier;
- use OCP\Notification\IManager;
- use OCP\Notification\INotification;
- use OCP\Notification\INotifier;
- class Notifier implements INotifier, IDismissableNotifier {
- /** @var IFactory */
- protected $l10nFactory;
- /** @var IURLGenerator */
- protected $urlGenerator;
- /** @var TransferOwnershipMapper */
- private $mapper;
- /** @var IManager */
- private $notificationManager;
- /** @var ITimeFactory */
- private $timeFactory;
- /**
- * @param IFactory $l10nFactory
- * @param IURLGenerator $urlGenerator
- */
- public function __construct(IFactory $l10nFactory,
- IURLGenerator $urlGenerator,
- TransferOwnershipMapper $mapper,
- IManager $notificationManager,
- ITimeFactory $timeFactory) {
- $this->l10nFactory = $l10nFactory;
- $this->urlGenerator = $urlGenerator;
- $this->mapper = $mapper;
- $this->notificationManager = $notificationManager;
- $this->timeFactory = $timeFactory;
- }
- public function getID(): string {
- return 'files';
- }
- public function getName(): string {
- return $this->l10nFactory->get('files')->t('Files');
- }
- /**
- * @param INotification $notification
- * @param string $languageCode The code of the language that should be used to prepare the notification
- * @return INotification
- * @throws \InvalidArgumentException When the notification was not prepared by a notifier
- */
- public function prepare(INotification $notification, string $languageCode): INotification {
- if ($notification->getApp() !== 'files') {
- throw new \InvalidArgumentException('Unhandled app');
- }
- if ($notification->getSubject() === 'transferownershipRequest') {
- return $this->handleTransferownershipRequest($notification, $languageCode);
- }
- if ($notification->getSubject() === 'transferOwnershipFailedSource') {
- return $this->handleTransferOwnershipFailedSource($notification, $languageCode);
- }
- if ($notification->getSubject() === 'transferOwnershipFailedTarget') {
- return $this->handleTransferOwnershipFailedTarget($notification, $languageCode);
- }
- if ($notification->getSubject() === 'transferOwnershipDoneSource') {
- return $this->handleTransferOwnershipDoneSource($notification, $languageCode);
- }
- if ($notification->getSubject() === 'transferOwnershipDoneTarget') {
- return $this->handleTransferOwnershipDoneTarget($notification, $languageCode);
- }
- throw new \InvalidArgumentException('Unhandled subject');
- }
- public function handleTransferownershipRequest(INotification $notification, string $languageCode): INotification {
- $l = $this->l10nFactory->get('files', $languageCode);
- $id = $notification->getObjectId();
- $param = $notification->getSubjectParameters();
- $approveAction = $notification->createAction()
- ->setParsedLabel($l->t('Accept'))
- ->setPrimary(true)
- ->setLink(
- $this->urlGenerator->getAbsoluteURL(
- $this->urlGenerator->linkTo(
- '',
- 'ocs/v2.php/apps/files/api/v1/transferownership/' . $id
- )
- ),
- IAction::TYPE_POST
- );
- $disapproveAction = $notification->createAction()
- ->setParsedLabel($l->t('Reject'))
- ->setPrimary(false)
- ->setLink(
- $this->urlGenerator->getAbsoluteURL(
- $this->urlGenerator->linkTo(
- '',
- 'ocs/v2.php/apps/files/api/v1/transferownership/' . $id
- )
- ),
- IAction::TYPE_DELETE
- );
- $notification->addParsedAction($approveAction)
- ->addParsedAction($disapproveAction)
- ->setRichSubject(
- $l->t('Incoming ownership transfer from {user}'),
- [
- 'user' => [
- 'type' => 'user',
- 'id' => $param['sourceUser'],
- 'name' => $param['sourceUser'],
- ],
- ])
- ->setParsedSubject(str_replace('{user}', $param['sourceUser'], $l->t('Incoming ownership transfer from {user}')))
- ->setRichMessage(
- $l->t("Do you want to accept {path}?\n\nNote: The transfer process after accepting may take up to 1 hour."),
- [
- 'path' => [
- 'type' => 'highlight',
- 'id' => $param['targetUser'] . '::' . $param['nodeName'],
- 'name' => $param['nodeName'],
- ]
- ])
- ->setParsedMessage(str_replace('{path}', $param['nodeName'], $l->t("Do you want to accept {path}?\n\nNote: The transfer process after accepting may take up to 1 hour.")));
- return $notification;
- }
- public function handleTransferOwnershipFailedSource(INotification $notification, string $languageCode): INotification {
- $l = $this->l10nFactory->get('files', $languageCode);
- $param = $notification->getSubjectParameters();
- $notification->setRichSubject($l->t('Ownership transfer failed'))
- ->setParsedSubject($l->t('Ownership transfer failed'))
- ->setRichMessage(
- $l->t('Your ownership transfer of {path} to {user} failed.'),
- [
- 'path' => [
- 'type' => 'highlight',
- 'id' => $param['targetUser'] . '::' . $param['nodeName'],
- 'name' => $param['nodeName'],
- ],
- 'user' => [
- 'type' => 'user',
- 'id' => $param['targetUser'],
- 'name' => $param['targetUser'],
- ],
- ])
- ->setParsedMessage(str_replace(['{path}', '{user}'], [$param['nodeName'], $param['targetUser']], $l->t('Your ownership transfer of {path} to {user} failed.')));
- return $notification;
- }
- public function handleTransferOwnershipFailedTarget(INotification $notification, string $languageCode): INotification {
- $l = $this->l10nFactory->get('files', $languageCode);
- $param = $notification->getSubjectParameters();
- $notification->setRichSubject($l->t('Ownership transfer failed'))
- ->setParsedSubject($l->t('Ownership transfer failed'))
- ->setRichMessage(
- $l->t('The ownership transfer of {path} from {user} failed.'),
- [
- 'path' => [
- 'type' => 'highlight',
- 'id' => $param['sourceUser'] . '::' . $param['nodeName'],
- 'name' => $param['nodeName'],
- ],
- 'user' => [
- 'type' => 'user',
- 'id' => $param['sourceUser'],
- 'name' => $param['sourceUser'],
- ],
- ])
- ->setParsedMessage(str_replace(['{path}', '{user}'], [$param['nodeName'], $param['sourceUser']], $l->t('The ownership transfer of {path} from {user} failed.')));
- return $notification;
- }
- public function handleTransferOwnershipDoneSource(INotification $notification, string $languageCode): INotification {
- $l = $this->l10nFactory->get('files', $languageCode);
- $param = $notification->getSubjectParameters();
- $notification->setRichSubject($l->t('Ownership transfer done'))
- ->setParsedSubject($l->t('Ownership transfer done'))
- ->setRichMessage(
- $l->t('Your ownership transfer of {path} to {user} has completed.'),
- [
- 'path' => [
- 'type' => 'highlight',
- 'id' => $param['targetUser'] . '::' . $param['nodeName'],
- 'name' => $param['nodeName'],
- ],
- 'user' => [
- 'type' => 'user',
- 'id' => $param['targetUser'],
- 'name' => $param['targetUser'],
- ],
- ])
- ->setParsedMessage(str_replace(['{path}', '{user}'], [$param['nodeName'], $param['targetUser']], $l->t('Your ownership transfer of {path} to {user} has completed.')));
- return $notification;
- }
- public function handleTransferOwnershipDoneTarget(INotification $notification, string $languageCode): INotification {
- $l = $this->l10nFactory->get('files', $languageCode);
- $param = $notification->getSubjectParameters();
- $notification->setRichSubject($l->t('Ownership transfer done'))
- ->setParsedSubject($l->t('Ownership transfer done'))
- ->setRichMessage(
- $l->t('The ownership transfer of {path} from {user} has completed.'),
- [
- 'path' => [
- 'type' => 'highlight',
- 'id' => $param['sourceUser'] . '::' . $param['nodeName'],
- 'name' => $param['nodeName'],
- ],
- 'user' => [
- 'type' => 'user',
- 'id' => $param['sourceUser'],
- 'name' => $param['sourceUser'],
- ],
- ])
- ->setParsedMessage(str_replace(['{path}', '{user}'], [$param['nodeName'], $param['sourceUser']], $l->t('The ownership transfer of {path} from {user} has completed.')));
- return $notification;
- }
- public function dismissNotification(INotification $notification): void {
- if ($notification->getApp() !== 'files') {
- throw new \InvalidArgumentException('Unhandled app');
- }
- // TODO: This should all be moved to a service that also the transferownershipContoller uses.
- try {
- $transferOwnership = $this->mapper->getById((int)$notification->getObjectId());
- } catch (DoesNotExistException $e) {
- return;
- }
- $notification = $this->notificationManager->createNotification();
- $notification->setUser($transferOwnership->getSourceUser())
- ->setApp('files')
- ->setDateTime($this->timeFactory->getDateTime())
- ->setSubject('transferownershipRequestDenied', [
- 'sourceUser' => $transferOwnership->getSourceUser(),
- 'targetUser' => $transferOwnership->getTargetUser(),
- 'nodeName' => $transferOwnership->getNodeName()
- ])
- ->setObject('transfer', (string)$transferOwnership->getId());
- $this->notificationManager->notify($notification);
- $this->mapper->delete($transferOwnership);
- }
- }
|