- Updated copyright headers in 3,055 core application files - Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026' - Added 123 new files from EspoCRM core updates - Removed 4 deprecated files - Total changes: 61,637 insertions, 54,283 deletions This is a routine maintenance update for the new year 2026.
144 lines
4.5 KiB
PHP
144 lines
4.5 KiB
PHP
<?php
|
||
/************************************************************************
|
||
* This file is part of EspoCRM.
|
||
*
|
||
* EspoCRM – Open Source CRM application.
|
||
* Copyright (C) 2014-2026 EspoCRM, Inc.
|
||
* Website: https://www.espocrm.com
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU Affero General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program 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 program. If not, see <https://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 Affero General Public License version 3.
|
||
*
|
||
* In accordance with Section 7(b) of the GNU Affero 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;
|
||
use Espo\Entities\Notification;
|
||
use Espo\Entities\User;
|
||
|
||
use Throwable;
|
||
|
||
class Process implements Job
|
||
{
|
||
public function __construct(
|
||
private EntityManager $entityManager,
|
||
private Factory $factory,
|
||
private Language $language,
|
||
) {}
|
||
|
||
/**
|
||
* @throws Error
|
||
*/
|
||
public function run(JobData $data): void
|
||
{
|
||
$id = $data->getTargetId();
|
||
|
||
if ($id === null) {
|
||
throw new Error("ID not passed to the mass action job.");
|
||
}
|
||
|
||
/** @var Export|null $entity */
|
||
$entity = $this->entityManager->getEntityById(Export::ENTITY_TYPE, $id);
|
||
|
||
if ($entity === null) {
|
||
throw new Error("Export '$id' not found.");
|
||
}
|
||
|
||
/** @var User|null $user */
|
||
$user = $this->entityManager->getEntityById(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(Export $entity): void
|
||
{
|
||
$notification = $this->entityManager->getRDBRepositoryByClass(Notification::class)->getNew();
|
||
|
||
$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(Export $entity): void
|
||
{
|
||
$entity->setStatus(Export::STATUS_FAILED);
|
||
|
||
$this->entityManager->saveEntity($entity);
|
||
}
|
||
|
||
private function setRunning(Export $entity): void
|
||
{
|
||
$entity->setStatus(Export::STATUS_RUNNING);
|
||
|
||
$this->entityManager->saveEntity($entity);
|
||
}
|
||
|
||
private function setSuccess(Export $entity, Result $result): void
|
||
{
|
||
$entity
|
||
->setStatus(Export::STATUS_SUCCESS)
|
||
->setAttachmentId($result->getAttachmentId());
|
||
|
||
$this->entityManager->saveEntity($entity);
|
||
}
|
||
}
|