152 lines
5.1 KiB
PHP
152 lines
5.1 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
************************************************************************/
|
|
|
|
namespace Espo\Hooks\Common;
|
|
|
|
use Espo\ORM\Entity;
|
|
use Espo\Core\Utils\Util;
|
|
|
|
class Notifications extends \Espo\Core\Hooks\Base
|
|
{
|
|
public static $order = 10;
|
|
|
|
protected $notifatorsHash = array();
|
|
|
|
private $streamService;
|
|
|
|
protected function init()
|
|
{
|
|
$this->dependencies[] = 'container';
|
|
$this->dependencies[] = 'metadata';
|
|
}
|
|
|
|
private $hasStreamCache = array();
|
|
|
|
protected function getContainer()
|
|
{
|
|
return $this->getInjection('container');
|
|
}
|
|
|
|
protected function getServiceFactory()
|
|
{
|
|
return $this->getContainer()->get('serviceFactory');
|
|
}
|
|
|
|
protected function getMetadata()
|
|
{
|
|
return $this->getInjection('metadata');
|
|
}
|
|
|
|
protected function checkHasStream($entityType)
|
|
{
|
|
if (!array_key_exists($entityType, $this->hasStreamCache)) {
|
|
$this->hasStreamCache[$entityType] = $this->getMetadata()->get("scopes.{$entityType}.stream");
|
|
}
|
|
return $this->hasStreamCache[$entityType];
|
|
}
|
|
|
|
protected function getNotificator($entityType)
|
|
{
|
|
if (empty($this->notifatorsHash[$entityType])) {
|
|
$normalizedName = Util::normilizeClassName($entityType);
|
|
|
|
$className = '\\Espo\\Custom\\Notificators\\' . $normalizedName;
|
|
if (!class_exists($className)) {
|
|
$moduleName = $this->getMetadata()->getScopeModuleName($entityType);
|
|
if ($moduleName) {
|
|
$className = '\\Espo\\Modules\\' . $moduleName . '\\Notificators\\' . $normalizedName;
|
|
} else {
|
|
$className = '\\Espo\\Notificators\\' . $normalizedName;
|
|
}
|
|
if (!class_exists($className)) {
|
|
$className = '\\Espo\\Core\\Notificators\\Base';
|
|
}
|
|
}
|
|
|
|
$notificator = new $className();
|
|
$dependencies = $notificator->getDependencyList();
|
|
foreach ($dependencies as $name) {
|
|
$notificator->inject($name, $this->getContainer()->get($name));
|
|
}
|
|
|
|
$this->notifatorsHash[$entityType] = $notificator;
|
|
}
|
|
return $this->notifatorsHash[$entityType];
|
|
}
|
|
|
|
public function afterSave(Entity $entity, array $options = array())
|
|
{
|
|
if (!empty($options['silent']) || !empty($options['noNotifications'])) {
|
|
return;
|
|
}
|
|
|
|
$entityType = $entity->getEntityType();
|
|
|
|
if (!$this->checkHasStream($entityType)) {
|
|
if (in_array($entityType, $this->getConfig()->get('assignmentNotificationsEntityList', []))) {
|
|
$notificator = $this->getNotificator($entityType);
|
|
$notificator->process($entity);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function beforeRemove(Entity $entity, array $options = array())
|
|
{
|
|
if (!empty($options['silent']) || !empty($options['noNotifications'])) {
|
|
return;
|
|
}
|
|
|
|
$entityType = $entity->getEntityType();
|
|
if ($this->checkHasStream($entityType)) {
|
|
$followersData = $this->getStreamService()->getEntityFollowers($entity);
|
|
foreach ($followersData['idList'] as $userId) {
|
|
if ($userId === $this->getUser()->id) {
|
|
continue;
|
|
}
|
|
$notification = $this->getEntityManager()->getEntity('Notification');
|
|
$notification->set(array(
|
|
'userId' => $userId,
|
|
'type' => 'EntityRemoved',
|
|
'data' => array(
|
|
'entityType' => $entity->getEntityType(),
|
|
'entityId' => $entity->id,
|
|
'entityName' => $entity->get('name'),
|
|
'userId' => $this->getUser()->id,
|
|
'userName' => $this->getUser()->get('name')
|
|
)
|
|
));
|
|
$this->getEntityManager()->saveEntity($notification);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function getStreamService()
|
|
{
|
|
if (empty($this->streamService)) {
|
|
$this->streamService = $this->getServiceFactory()->create('Stream');
|
|
}
|
|
return $this->streamService;
|
|
}
|
|
|
|
}
|
|
|