Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Entities\SystemData;
use Espo\ORM\EntityManager;
class AddSystemData implements RebuildAction
{
public function __construct(
private EntityManager $entityManager
) {}
public function process(): void
{
$entity = $this->entityManager->getEntityById(SystemData::ENTITY_TYPE, SystemData::ONLY_ID);
if ($entity) {
return;
}
$this->entityManager->createEntity(SystemData::ENTITY_TYPE, ['id' => SystemData::ONLY_ID]);
}
}

View File

@@ -0,0 +1,86 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Config;
use Espo\Core\Utils\SystemUser;
use Espo\Entities\User;
use Espo\ORM\EntityManager;
use Espo\ORM\Name\Attribute;
class AddSystemUser implements RebuildAction
{
public function __construct(
private EntityManager $entityManager,
private Config $config,
private SystemUser $systemUser
) {}
public function process(): void
{
$repository = $this->entityManager->getRDBRepositoryByClass(User::class);
$user = $repository
->where(['userName' => SystemUser::NAME])
->findOne();
if ($user) {
if ($user->getId() === $this->systemUser->getId()) {
return;
}
$this->entityManager
->getQueryExecutor()
->execute(
$this->entityManager
->getQueryBuilder()
->delete()
->from(User::ENTITY_TYPE)
->where([Attribute::ID => $user->getId()])
->build()
);
}
/** @var array<string, mixed> $attributes */
$attributes = $this->config->get('systemUserAttributes');
$user = $repository->getNew();
$user
->set(Attribute::ID, $this->systemUser->getId())
->setUserName(SystemUser::NAME)
->setType(User::TYPE_SYSTEM);
$user->setMultiple($attributes);
$repository->save($user);
}
}

View File

@@ -0,0 +1,70 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Exceptions\Error;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Config\Access;
use Espo\Core\Utils\Metadata;
/**
* Check whether config metadata is valid.
*/
class ConfigMetadataCheck implements RebuildAction
{
public function __construct(private Metadata $metadata)
{}
/**
* @throws Error
*/
public function process(): void
{
$levelList = [
Access::LEVEL_DEFAULT,
Access::LEVEL_INTERNAL,
Access::LEVEL_ADMIN,
Access::LEVEL_GLOBAL,
Access::LEVEL_SUPER_ADMIN,
Access::LEVEL_SYSTEM,
];
$params = $this->metadata->get(['app', 'config', 'params']) ?? [];
foreach ($params as $name => $item) {
$level = $item['level'] ?? null;
if ($level !== null && !in_array($level, $levelList)) {
throw new Error("Config parameter '{$name}' has not a allowed level in app > config.");
}
}
}
}

View File

@@ -0,0 +1,43 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Currency\DatabasePopulator;
class CurrencyRates implements RebuildAction
{
public function __construct(private DatabasePopulator $databasePopulator) {}
public function process(): void
{
$this->databasePopulator->process();
}
}

View File

@@ -0,0 +1,57 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Config;
use Espo\Core\Utils\Util;
/**
* @noinspection PhpUnused
*/
class GenerateInstanceId implements RebuildAction
{
public function __construct(
private Config $config,
private Config\ConfigWriter $configWriter
) {}
public function process(): void
{
if ($this->config->get('instanceId')) {
return;
}
$id = Util::generateUuid4();
$this->configWriter->set('instanceId', $id);
$this->configWriter->save();
}
}

View File

@@ -0,0 +1,123 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Metadata;
use Espo\Entities\ScheduledJob;
use Espo\ORM\EntityManager;
/**
* Rebuilds scheduled jobs. Creates system jobs.
*/
class ScheduledJobs implements RebuildAction
{
public function __construct(
private Metadata $metadata,
private EntityManager $entityManager
) {}
public function process(): void
{
$jobDefs = array_merge(
$this->metadata->get(['entityDefs', 'ScheduledJob', 'jobs'], []), // for bc
$this->metadata->get(['app', 'scheduledJobs'], [])
);
$systemJobNameList = [];
foreach ($jobDefs as $jobName => $defs) {
if (!$jobName) {
continue;
}
if (empty($defs['isSystem']) || empty($defs['scheduling'])) {
continue;
}
$systemJobNameList[] = $jobName;
$sj = $this->entityManager
->getRDBRepository(ScheduledJob::ENTITY_TYPE)
->where([
'job' => $jobName,
'status' => ScheduledJob::STATUS_ACTIVE,
'scheduling' => $defs['scheduling'],
])
->findOne();
if ($sj) {
continue;
}
$existingJob = $this->entityManager
->getRDBRepository(ScheduledJob::ENTITY_TYPE)
->where([
'job' => $jobName,
])
->findOne();
if ($existingJob) {
$this->entityManager->removeEntity($existingJob);
}
$name = $jobName;
if (!empty($defs['name'])) {
$name = $defs['name'];
}
$this->entityManager->createEntity(ScheduledJob::ENTITY_TYPE, [
'job' => $jobName,
'status' => ScheduledJob::STATUS_ACTIVE,
'scheduling' => $defs['scheduling'],
'isInternal' => true,
'name' => $name,
]);
}
$internalScheduledJobList = $this->entityManager
->getRDBRepository(ScheduledJob::ENTITY_TYPE)
->where([
'isInternal' => true,
])
->find();
foreach ($internalScheduledJobList as $scheduledJob) {
$jobName = $scheduledJob->get('job');
if (!in_array($jobName, $systemJobNameList)) {
$this->entityManager
->getRDBRepository(ScheduledJob::ENTITY_TYPE)
->deleteFromDb($scheduledJob->getId());
}
}
}
}

View File

@@ -0,0 +1,86 @@
<?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\Core\Rebuild\Actions;
use Espo\Core\Rebuild\RebuildAction;
use Espo\Core\Utils\Metadata;
use Espo\Entities\Integration;
use Espo\ORM\EntityManager;
/**
* @noinspection PhpUnused
*/
class SetIntegrationDefaults implements RebuildAction
{
public function __construct(
private Metadata $metadata,
private EntityManager $entityManager,
) {}
public function process(): void
{
/** @var string[] $integrations */
$integrations = array_keys($this->metadata->get('integrations') ?? []);
foreach ($integrations as $integration) {
$this->processItem($integration);
}
}
private function processItem(string $name): void
{
$integration = $this->entityManager
->getRDBRepositoryByClass(Integration::class)
->getById($name);
if (!$integration || !$integration->isEnabled()) {
return;
}
/** @var array<string, array<string, mixed>> $fields */
$fields = $this->metadata->get("integrations.$name.fields") ?? [];
foreach ($fields as $field => $defs) {
$default = $defs['default'] ?? null;
if ($default === null) {
continue;
}
if ($integration->has($field)) {
continue;
}
$integration->set($field, $default);
}
$this->entityManager->saveEntity($integration);
}
}