Initial commit
This commit is contained in:
165
application/Espo/Tools/Export/Service.php
Normal file
165
application/Espo/Tools/Export/Service.php
Normal file
@@ -0,0 +1,165 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 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;
|
||||
|
||||
use Espo\Core\Exceptions\Forbidden;
|
||||
use Espo\Core\Exceptions\ForbiddenSilent;
|
||||
use Espo\Core\Exceptions\NotFound;
|
||||
use Espo\Core\Exceptions\NotFoundSilent;
|
||||
use Espo\Core\Acl;
|
||||
use Espo\Core\Acl\Table;
|
||||
use Espo\Core\Utils\Config;
|
||||
use Espo\Core\Utils\Metadata;
|
||||
use Espo\Core\Job\JobSchedulerFactory;
|
||||
use Espo\Core\Job\Job\Data as JobData;
|
||||
use Espo\Tools\Export\Jobs\Process;
|
||||
use Espo\ORM\EntityManager;
|
||||
use Espo\Entities\Export as ExportEntity;
|
||||
use Espo\Entities\User;
|
||||
|
||||
use stdClass;
|
||||
|
||||
class Service
|
||||
{
|
||||
public function __construct(
|
||||
private Factory $factory,
|
||||
private Config $config,
|
||||
private Acl $acl,
|
||||
private User $user,
|
||||
private Metadata $metadata,
|
||||
private EntityManager $entityManager,
|
||||
private JobSchedulerFactory $jobSchedulerFactory
|
||||
) {}
|
||||
|
||||
/**
|
||||
* @throws Forbidden
|
||||
*/
|
||||
public function process(Params $params, ServiceParams $serviceParams): ServiceResult
|
||||
{
|
||||
if ($this->config->get('exportDisabled') && !$this->user->isAdmin()) {
|
||||
throw new ForbiddenSilent("Export disabled for non-admin users.");
|
||||
}
|
||||
|
||||
$entityType = $params->getEntityType();
|
||||
|
||||
if ($this->acl->getPermissionLevel(Acl\Permission::EXPORT) !== Table::LEVEL_YES) {
|
||||
throw new ForbiddenSilent("No 'export' permission.");
|
||||
}
|
||||
|
||||
if (!$this->acl->check($entityType, Table::ACTION_READ)) {
|
||||
throw new ForbiddenSilent("No 'read' access.");
|
||||
}
|
||||
|
||||
if ($this->metadata->get(['recordDefs', $entityType, 'exportDisabled'])) {
|
||||
throw new ForbiddenSilent("Export disabled for '$entityType'.");
|
||||
}
|
||||
|
||||
if ($serviceParams->isIdle()) {
|
||||
if ($this->user->isPortal()) {
|
||||
throw new ForbiddenSilent("Idle export is not allowed for portal users.");
|
||||
}
|
||||
|
||||
return $this->schedule($params);
|
||||
}
|
||||
|
||||
$export = $this->factory->create();
|
||||
|
||||
$result = $export
|
||||
->setParams($params)
|
||||
->run();
|
||||
|
||||
return ServiceResult::createWithResult($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Forbidden
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function getStatusData(string $id): stdClass
|
||||
{
|
||||
/** @var ?ExportEntity $entity */
|
||||
$entity = $this->entityManager->getEntityById(ExportEntity::ENTITY_TYPE, $id);
|
||||
|
||||
if (!$entity) {
|
||||
throw new NotFoundSilent();
|
||||
}
|
||||
|
||||
if ($entity->getCreatedBy()->getId() !== $this->user->getId()) {
|
||||
throw new ForbiddenSilent();
|
||||
}
|
||||
|
||||
return (object) [
|
||||
'status' => $entity->getStatus(),
|
||||
'attachmentId' => $entity->getAttachmentId(),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Forbidden
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function subscribeToNotificationOnSuccess(string $id): void
|
||||
{
|
||||
/** @var ?ExportEntity $entity */
|
||||
$entity = $this->entityManager->getEntityById(ExportEntity::ENTITY_TYPE, $id);
|
||||
|
||||
if (!$entity) {
|
||||
throw new NotFoundSilent();
|
||||
}
|
||||
|
||||
if ($entity->getCreatedBy()->getId() !== $this->user->getId()) {
|
||||
throw new ForbiddenSilent();
|
||||
}
|
||||
|
||||
$entity->setNotifyOnFinish();
|
||||
|
||||
$this->entityManager->saveEntity($entity);
|
||||
}
|
||||
|
||||
private function schedule(Params $params): ServiceResult
|
||||
{
|
||||
$entity = $this->entityManager->createEntity(ExportEntity::ENTITY_TYPE, [
|
||||
// Additional encoding to handle null-character issue in PostgreSQL.
|
||||
'params' => base64_encode(serialize($params)),
|
||||
]);
|
||||
|
||||
$this->jobSchedulerFactory
|
||||
->create()
|
||||
->setClassName(Process::class)
|
||||
->setData(
|
||||
JobData::create()
|
||||
->withTargetId($entity->getId())
|
||||
->withTargetType($entity->getEntityType())
|
||||
)
|
||||
->schedule();
|
||||
|
||||
return ServiceResult::createWithId($entity->getId());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user