activity/lib/consumer.php

84 строки
2.6 KiB
PHP
Исходник Обычный вид История

2013-10-09 20:06:21 +04:00
<?php
/**
* ownCloud - Activity App
2013-10-09 20:06:21 +04:00
*
* @author Thomas Müller
* @copyright 2013 Thomas Müller deepdiver@owncloud.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Activity;
use OCP\Activity\IConsumer;
use OCP\Activity\IEvent;
use OCP\Activity\IManager;
use OCP\AppFramework\IAppContainer;
class Consumer implements IConsumer {
/**
* Registers the consumer to the Activity Manager
*
* @param IManager $am
* @param IAppContainer $container
*/
public static function register(IManager $am, IAppContainer $container) {
$am->registerConsumer(function() use ($am, $container) {
return $container->query('Consumer');
});
}
/** @var Data */
protected $data;
/** @var UserSettings */
protected $userSettings;
/**
* Constructor
*
* @param Data $data
* @param UserSettings $userSettings
*/
public function __construct(Data $data, UserSettings $userSettings) {
$this->data = $data;
$this->userSettings = $userSettings;
}
2013-10-09 20:06:21 +04:00
/**
* Send an event to the notifications of a user
2014-06-04 19:31:54 +04:00
*
* @param IEvent $event
2014-06-04 19:31:54 +04:00
* @return null
2013-10-09 20:06:21 +04:00
*/
public function receive(IEvent $event) {
$selfAction = $event->getAffectedUser() === $event->getAuthor();
$streamSetting = $this->userSettings->getUserSetting($event->getAffectedUser(), 'stream', $event->getType());
$emailSetting = $this->userSettings->getUserSetting($event->getAffectedUser(), 'email', $event->getType());
$emailSetting = ($emailSetting) ? $this->userSettings->getUserSetting($event->getAffectedUser(), 'setting', 'batchtime') : false;
// Add activity to stream
if ($streamSetting && (!$selfAction || $this->userSettings->getUserSetting($event->getAffectedUser(), 'setting', 'self'))) {
$this->data->send($event);
}
// Add activity to mail queue
if ($emailSetting && (!$selfAction || $this->userSettings->getUserSetting($event->getAffectedUser(), 'setting', 'selfemail'))) {
$latestSend = $event->getTimestamp() + $emailSetting;
$this->data->storeMail($event, $latestSend);
}
2013-10-09 20:06:21 +04:00
}
}