173 lines
5.5 KiB
PHP
173 lines
5.5 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/.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
|
************************************************************************/
|
|
|
|
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->addDependencyList([
|
|
'preferences',
|
|
'language',
|
|
'dateTime',
|
|
'container',
|
|
'fileManager',
|
|
'number'
|
|
]);
|
|
}
|
|
|
|
protected $exportSkipFieldList = ['duration'];
|
|
|
|
protected function getMailSender()
|
|
{
|
|
return $this->getInjection('container')->get('mailSender');
|
|
}
|
|
|
|
protected function getPreferences()
|
|
{
|
|
return $this->getInjection('preferences');
|
|
}
|
|
|
|
protected function getCrypt()
|
|
{
|
|
return $this->getInjection('container')->get('crypt');
|
|
}
|
|
|
|
protected function getLanguage()
|
|
{
|
|
return $this->getInjection('language');
|
|
}
|
|
|
|
protected function getDateTime()
|
|
{
|
|
return $this->getInjection('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->getInjection('fileManager'),
|
|
$this->getDateTime(),
|
|
$this->getInjection('number'),
|
|
$this->getLanguage()
|
|
);
|
|
}
|
|
|
|
public function sendInvitations(Entity $entity)
|
|
{
|
|
$invitationManager = $this->getInvitationManager();
|
|
|
|
$emailHash = array();
|
|
|
|
$users = $entity->get('users');
|
|
foreach ($users as $user) {
|
|
if ($user->get('emailAddress') && !array_key_exists($user->get('emailAddress'), $emailHash)) {
|
|
$invitationManager->sendInvitation($entity, $user, 'users');
|
|
$emailHash[$user->get('emailAddress')] = true;
|
|
}
|
|
}
|
|
|
|
$contacts = $entity->get('contacts');
|
|
foreach ($contacts as $contact) {
|
|
if ($contact->get('emailAddress') && !array_key_exists($contact->get('emailAddress'), $emailHash)) {
|
|
$invitationManager->sendInvitation($entity, $contact, 'contacts');
|
|
$emailHash[$user->get('emailAddress')] = true;
|
|
}
|
|
}
|
|
|
|
$leads = $entity->get('leads');
|
|
foreach ($leads as $lead) {
|
|
if ($lead->get('emailAddress') && !array_key_exists($lead->get('emailAddress'), $emailHash)) {
|
|
$invitationManager->sendInvitation($entity, $lead, 'leads');
|
|
$emailHash[$user->get('emailAddress')] = true;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function loadAdditionalFields(Entity $entity)
|
|
{
|
|
parent::loadAdditionalFields($entity);
|
|
$this->loadRemindersField($entity);
|
|
}
|
|
|
|
protected function loadRemindersField(Entity $entity)
|
|
{
|
|
$reminders = $this->getRepository()->getEntityReminderList($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;
|
|
}
|
|
|
|
}
|
|
|