Files
espocrm/application/Espo/Tools/Export/Jobs/Process.php
Taras Machyshyn 6f676c8a2f 2023 year
2023-01-03 16:01:43 +02:00

158 lines
4.6 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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\Tools\Export\Jobs;
use Espo\Core\Exceptions\Error;
use Espo\Core\Job\Job;
use Espo\Core\Job\Job\Data as JobData;
use Espo\Tools\Export\Factory;
use Espo\Tools\Export\Result;
use Espo\Core\Utils\Language;
use Espo\ORM\EntityManager;
use Espo\Entities\Export as ExportEntity;
use Espo\Entities\Notification;
use Espo\Entities\User;
use Throwable;
class Process implements Job
{
private EntityManager $entityManager;
private Factory $factory;
private Language $language;
public function __construct(
EntityManager $entityManager,
Factory $factory,
Language $language
) {
$this->entityManager = $entityManager;
$this->factory = $factory;
$this->language = $language;
}
public function run(JobData $data): void
{
$id = $data->getTargetId();
if ($id === null) {
throw new Error("ID not passed to the mass action job.");
}
/** @var ExportEntity|null $entity */
$entity = $this->entityManager->getEntity(ExportEntity::ENTITY_TYPE, $id);
if ($entity === null) {
throw new Error("Export '{$id}' not found.");
}
/** @var User|null $user */
$user = $this->entityManager->getEntity(User::ENTITY_TYPE, $entity->getCreatedBy()->getId());
if (!$user) {
throw new Error("Export entity '{$id}', user not found.");
}
try {
$export = $this->factory->createForUser($user);
$this->setRunning($entity);
$result = $export
->setParams($entity->getParams())
->run();
}
catch (Throwable $e) {
$this->setFailed($entity);
throw new Error("Export job error: " . $e->getMessage());
}
$this->setSuccess($entity, $result);
$this->entityManager->refreshEntity($entity);
if ($entity->notifyOnFinish()) {
$this->notifyFinish($entity);
}
}
private function notifyFinish(ExportEntity $entity): void
{
/** @var Notification $notification */
$notification = $this->entityManager->getNewEntity(Notification::ENTITY_TYPE);
$url = '?entryPoint=download&id=' . $entity->getAttachmentId();
$message = str_replace(
'{url}',
$url,
$this->language->translateLabel('exportProcessed', 'messages', 'Export')
);
$notification
->setType(Notification::TYPE_MESSAGE)
->setMessage($message)
->setUserId($entity->getCreatedBy()->getId());
$this->entityManager->saveEntity($notification);
}
private function setFailed(ExportEntity $entity): void
{
$entity->setStatus(ExportEntity::STATUS_FAILED);
$this->entityManager->saveEntity($entity);
}
private function setRunning(ExportEntity $entity): void
{
$entity->setStatus(ExportEntity::STATUS_RUNNING);
$this->entityManager->saveEntity($entity);
}
private function setSuccess(ExportEntity $entity, Result $result): void
{
$entity
->setStatus(ExportEntity::STATUS_SUCCESS)
->setAttachmentId($result->getAttachmentId());
$this->entityManager->saveEntity($entity);
}
}