|
|
|
|
@ -31,6 +31,7 @@ use OC\Cache\CappedMemoryCache;
|
|
|
|
|
use OC\Files\Mount\MoveableMount;
|
|
|
|
|
use OC\HintException;
|
|
|
|
|
use OC\Share20\Exception\ProviderException;
|
|
|
|
|
use OCP\Defaults;
|
|
|
|
|
use OCP\Files\File;
|
|
|
|
|
use OCP\Files\Folder;
|
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
|
@ -40,7 +41,9 @@ use OCP\IConfig;
|
|
|
|
|
use OCP\IGroupManager;
|
|
|
|
|
use OCP\IL10N;
|
|
|
|
|
use OCP\ILogger;
|
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
|
use OCP\IUserManager;
|
|
|
|
|
use OCP\Mail\IMailer;
|
|
|
|
|
use OCP\Security\IHasher;
|
|
|
|
|
use OCP\Security\ISecureRandom;
|
|
|
|
|
use OCP\Share\Exceptions\GenericShareException;
|
|
|
|
|
@ -82,6 +85,12 @@ class Manager implements IManager {
|
|
|
|
|
private $eventDispatcher;
|
|
|
|
|
/** @var LegacyHooks */
|
|
|
|
|
private $legacyHooks;
|
|
|
|
|
/** @var IMailer */
|
|
|
|
|
private $mailer;
|
|
|
|
|
/** @var IURLGenerator */
|
|
|
|
|
private $urlGenerator;
|
|
|
|
|
/** @var \OC_Defaults */
|
|
|
|
|
private $defaults;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -98,6 +107,9 @@ class Manager implements IManager {
|
|
|
|
|
* @param IUserManager $userManager
|
|
|
|
|
* @param IRootFolder $rootFolder
|
|
|
|
|
* @param EventDispatcher $eventDispatcher
|
|
|
|
|
* @param IMailer $mailer
|
|
|
|
|
* @param IURLGenerator $urlGenerator
|
|
|
|
|
* @param \OC_Defaults $defaults
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(
|
|
|
|
|
ILogger $logger,
|
|
|
|
|
@ -110,7 +122,10 @@ class Manager implements IManager {
|
|
|
|
|
IProviderFactory $factory,
|
|
|
|
|
IUserManager $userManager,
|
|
|
|
|
IRootFolder $rootFolder,
|
|
|
|
|
EventDispatcher $eventDispatcher
|
|
|
|
|
EventDispatcher $eventDispatcher,
|
|
|
|
|
IMailer $mailer,
|
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
|
\OC_Defaults $defaults
|
|
|
|
|
) {
|
|
|
|
|
$this->logger = $logger;
|
|
|
|
|
$this->config = $config;
|
|
|
|
|
@ -125,6 +140,9 @@ class Manager implements IManager {
|
|
|
|
|
$this->eventDispatcher = $eventDispatcher;
|
|
|
|
|
$this->sharingDisabledForUsersCache = new CappedMemoryCache();
|
|
|
|
|
$this->legacyHooks = new LegacyHooks($this->eventDispatcher);
|
|
|
|
|
$this->mailer = $mailer;
|
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
|
$this->defaults = $defaults;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -666,9 +684,90 @@ class Manager implements IManager {
|
|
|
|
|
|
|
|
|
|
\OC_Hook::emit('OCP\Share', 'post_shared', $postHookData);
|
|
|
|
|
|
|
|
|
|
if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER) {
|
|
|
|
|
$user = $this->userManager->get($share->getSharedWith());
|
|
|
|
|
if ($user !== null) {
|
|
|
|
|
$emailAddress = $user->getEMailAddress();
|
|
|
|
|
if ($emailAddress !== null && $emailAddress !== '') {
|
|
|
|
|
$this->sendMailNotification(
|
|
|
|
|
$share->getNode()->getName(),
|
|
|
|
|
$this->urlGenerator->linkToRouteAbsolute('files.viewcontroller.showFile', [ 'fileid' => $share->getNode()->getId() ]),
|
|
|
|
|
$share->getSharedBy(),
|
|
|
|
|
$emailAddress
|
|
|
|
|
);
|
|
|
|
|
$this->logger->debug('Send share notification to ' . $emailAddress . ' for share with ID ' . $share->getId(), ['app' => 'share']);
|
|
|
|
|
} else {
|
|
|
|
|
$this->logger->debug('Share notification not send to ' . $share->getSharedWith() . ' because email address is not set.', ['app' => 'share']);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$this->logger->debug('Share notification not send to ' . $share->getSharedWith() . ' because user could not be found.', ['app' => 'share']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $share;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $filename file/folder name
|
|
|
|
|
* @param string $link link to the file/folder
|
|
|
|
|
* @param string $initiator user ID of share sender
|
|
|
|
|
* @param string $shareWith email address of share receiver
|
|
|
|
|
* @throws \Exception If mail couldn't be sent
|
|
|
|
|
*/
|
|
|
|
|
protected function sendMailNotification($filename,
|
|
|
|
|
$link,
|
|
|
|
|
$initiator,
|
|
|
|
|
$shareWith) {
|
|
|
|
|
$initiatorUser = $this->userManager->get($initiator);
|
|
|
|
|
$initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator;
|
|
|
|
|
$subject = (string)$this->l->t('%s shared »%s« with you', array($initiatorDisplayName, $filename));
|
|
|
|
|
|
|
|
|
|
$message = $this->mailer->createMessage();
|
|
|
|
|
|
|
|
|
|
$emailTemplate = $this->mailer->createEMailTemplate();
|
|
|
|
|
|
|
|
|
|
$emailTemplate->addHeader();
|
|
|
|
|
$emailTemplate->addHeading($this->l->t('%s shared »%s« with you', [$initiatorDisplayName, $filename]), false);
|
|
|
|
|
$text = $this->l->t('%s shared »%s« with you.', [$initiatorDisplayName, $filename]);
|
|
|
|
|
|
|
|
|
|
$emailTemplate->addBodyText(
|
|
|
|
|
$text . ' ' . $this->l->t('Click the button below to open it.'),
|
|
|
|
|
$text
|
|
|
|
|
);
|
|
|
|
|
$emailTemplate->addBodyButton(
|
|
|
|
|
$this->l->t('Open »%s«', [$filename]),
|
|
|
|
|
$link
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$message->setTo([$shareWith]);
|
|
|
|
|
|
|
|
|
|
// The "From" contains the sharers name
|
|
|
|
|
$instanceName = $this->defaults->getName();
|
|
|
|
|
$senderName = $this->l->t(
|
|
|
|
|
'%s via %s',
|
|
|
|
|
[
|
|
|
|
|
$initiatorDisplayName,
|
|
|
|
|
$instanceName
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
$message->setFrom([\OCP\Util::getDefaultEmailAddress($instanceName) => $senderName]);
|
|
|
|
|
|
|
|
|
|
// The "Reply-To" is set to the sharer if an mail address is configured
|
|
|
|
|
// also the default footer contains a "Do not reply" which needs to be adjusted.
|
|
|
|
|
$initiatorEmail = $initiatorUser->getEMailAddress();
|
|
|
|
|
if($initiatorEmail !== null) {
|
|
|
|
|
$message->setReplyTo([$initiatorEmail => $initiatorDisplayName]);
|
|
|
|
|
$emailTemplate->addFooter($instanceName . ' - ' . $this->defaults->getSlogan());
|
|
|
|
|
} else {
|
|
|
|
|
$emailTemplate->addFooter();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$message->setSubject($subject);
|
|
|
|
|
$message->setPlainBody($emailTemplate->renderText());
|
|
|
|
|
$message->setHtmlBody($emailTemplate->renderHtml());
|
|
|
|
|
$this->mailer->send($message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update a share
|
|
|
|
|
*
|
|
|
|
|
|