140 lines
4.3 KiB
PHP
140 lines
4.3 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\Modules\Crm\Services;
|
|
|
|
use \Espo\ORM\Entity;
|
|
use \Espo\Modules\Crm\Business\Event\Invitations;
|
|
|
|
use \Espo\Core\Exceptions\Error;
|
|
use \Espo\Core\Exceptions\Forbidden;
|
|
|
|
class Meeting extends \Espo\Services\Record
|
|
{
|
|
protected function init()
|
|
{
|
|
$this->dependencies[] = 'mailSender';
|
|
$this->dependencies[] = 'preferences';
|
|
$this->dependencies[] = 'language';
|
|
$this->dependencies[] = 'dateTime';
|
|
$this->dependencies[] = 'crypt';
|
|
}
|
|
|
|
protected function getMailSender()
|
|
{
|
|
return $this->injections['mailSender'];
|
|
}
|
|
|
|
protected function getPreferences()
|
|
{
|
|
return $this->injections['preferences'];
|
|
}
|
|
|
|
protected function getCrypt()
|
|
{
|
|
return $this->injections['crypt'];
|
|
}
|
|
|
|
protected function getLanguage()
|
|
{
|
|
return $this->injections['language'];
|
|
}
|
|
|
|
protected function getDateTime()
|
|
{
|
|
return $this->injections['dateTime'];
|
|
}
|
|
|
|
protected function getInvitationManager()
|
|
{
|
|
$smtpParams = $this->getPreferences()->getSmtpParams();
|
|
if ($smtpParams) {
|
|
if (array_key_exists('password', $smtpParams)) {
|
|
$smtpParams['password'] = $this->getCrypt()->decrypt($smtpParams['password']);
|
|
}
|
|
$smtpParams['fromAddress'] = $this->getUser()->get('emailAddress');
|
|
$smtpParams['fromName'] = $this->getUser()->get('name');
|
|
}
|
|
return new Invitations($this->getEntityManager(), $smtpParams, $this->getMailSender(), $this->getConfig(), $this->getDateTime(), $this->getLanguage());
|
|
}
|
|
|
|
public function sendInvitations(Entity $entity)
|
|
{
|
|
$invitationManager = $this->getInvitationManager();
|
|
|
|
$users = $entity->get('users');
|
|
foreach ($users as $user) {
|
|
$invitationManager->sendInvitation($entity, $user, 'users');
|
|
}
|
|
|
|
$contacts = $entity->get('contacts');
|
|
foreach ($contacts as $contact) {
|
|
$invitationManager->sendInvitation($entity, $contact, 'contacts');
|
|
}
|
|
|
|
$leads = $entity->get('leads');
|
|
foreach ($leads as $lead) {
|
|
$invitationManager->sendInvitation($entity, $lead, 'leads');
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function loadAdditionalFields(Entity $entity)
|
|
{
|
|
parent::loadAdditionalFields($entity);
|
|
$this->loadRemindersField($entity);
|
|
}
|
|
|
|
protected function loadRemindersField(Entity $entity)
|
|
{
|
|
$reminders = $this->getRepository()->getEntityReminders($entity);
|
|
$entity->set('reminders', $reminders);
|
|
}
|
|
|
|
public function massSetHeld(array $ids)
|
|
{
|
|
foreach ($ids as $id) {
|
|
$entity = $this->getEntityManager()->getEntity($this->entityType, $id);
|
|
if ($entity && $this->getAcl()->check($entity, 'edit')) {
|
|
$entity->set('status', 'Held');
|
|
$this->getEntityManager()->saveEntity($entity);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public function massSetNotHeld(array $ids)
|
|
{
|
|
foreach ($ids as $id) {
|
|
$entity = $this->getEntityManager()->getEntity($this->entityType, $id);
|
|
if ($entity && $this->getAcl()->check($entity, 'edit')) {
|
|
$entity->set('status', 'Not Held');
|
|
$this->getEntityManager()->saveEntity($entity);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|