mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 23:16:03 +00:00
195 lines
5.7 KiB
PHP
195 lines
5.7 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 tests\integration\Core;
|
||
|
||
use Espo\Core\Application;
|
||
use Espo\Core\Container;
|
||
use Espo\Core\Utils\Config;
|
||
use Espo\Core\Utils\File\Manager as FileManager;
|
||
use Espo\Core\Utils\PasswordHash;
|
||
use Espo\Entities\Preferences;
|
||
use Espo\Entities\User;
|
||
use Espo\ORM\EntityManager;
|
||
use Exception;
|
||
use RuntimeException;
|
||
|
||
class DataLoader
|
||
{
|
||
private Application $application;
|
||
private PasswordHash $passwordHash;
|
||
|
||
public function __construct(Application $application)
|
||
{
|
||
$this->application = $application;
|
||
|
||
$config = $this->getContainer()->getByClass(Config::class);
|
||
|
||
$this->passwordHash = new PasswordHash($config);
|
||
}
|
||
|
||
private function getContainer(): Container
|
||
{
|
||
return $this->application->getContainer();
|
||
}
|
||
|
||
private function getPasswordHash(): PasswordHash
|
||
{
|
||
return $this->passwordHash;
|
||
}
|
||
|
||
public function loadData(string $dataFile): void
|
||
{
|
||
if (!file_exists($dataFile)) {
|
||
return;
|
||
}
|
||
|
||
$data = include($dataFile);
|
||
|
||
$this->handleData($data);
|
||
}
|
||
|
||
public function setData(array $data): void
|
||
{
|
||
$this->handleData($data);
|
||
}
|
||
|
||
protected function handleData(array $fullData): void
|
||
{
|
||
foreach ($fullData as $type => $data) {
|
||
if ($type === 'files') {
|
||
$this->loadFiles($data);
|
||
|
||
continue;
|
||
}
|
||
|
||
if ($type === 'entities') {
|
||
$this->loadEntities($data);
|
||
|
||
continue;
|
||
}
|
||
|
||
if ($type === 'data') {
|
||
$this->loadData($data);
|
||
|
||
continue;
|
||
}
|
||
|
||
if ($type === 'config') {
|
||
$this->loadConfig($data);
|
||
|
||
continue;
|
||
}
|
||
|
||
if ($type === 'preferences') {
|
||
$this->loadPreferences($data);
|
||
|
||
continue;
|
||
}
|
||
|
||
|
||
throw new RuntimeException('DataLoader: Data type is not supported in dataFile.');
|
||
}
|
||
}
|
||
|
||
public function loadFiles(string $path): void
|
||
{
|
||
try {
|
||
$fileManager = $this->getContainer()->getByClass(FileManager::class);
|
||
|
||
$fileManager->copy($path, '.', true);
|
||
} catch (Exception $e) {
|
||
throw new RuntimeException('Error loadFiles: ' . $e->getMessage());
|
||
}
|
||
}
|
||
|
||
protected function loadEntities(array $data)
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
foreach ($data as $entityType => $entities) {
|
||
foreach($entities as $entityData) {
|
||
$entity = $entityManager->getEntityById($entityType, $entityData['id']);
|
||
|
||
if (empty($entity)) {
|
||
$entity = $entityManager->getNewEntity($entityType);
|
||
}
|
||
|
||
foreach($entityData as $field => $value) {
|
||
if ($field == 'password' && $entityType == User::ENTITY_TYPE) {
|
||
$value = $this->getPasswordHash()->hash($value);
|
||
}
|
||
|
||
$entity->set($field, $value);
|
||
}
|
||
|
||
try {
|
||
$entityManager->saveEntity($entity);
|
||
} catch (Exception $e) {
|
||
throw new RuntimeException('Save entity error.', previous: $e);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
private function loadConfig(array $data): void
|
||
{
|
||
if (empty($data)) {
|
||
return;
|
||
}
|
||
|
||
$config = $this->getContainer()->getByClass(Config::class);
|
||
$config->set($data);
|
||
|
||
try {
|
||
$config->save();
|
||
} catch (Exception $e) {
|
||
throw new RuntimeException('Error loadConfig: ' . $e->getMessage());
|
||
}
|
||
}
|
||
|
||
private function loadPreferences(array $data): void
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
foreach ($data as $userId => $params) {
|
||
$entityManager->getRepository(Preferences::ENTITY_TYPE)->resetToDefaults($userId);
|
||
|
||
$preferences = $entityManager->getEntityById(Preferences::ENTITY_TYPE, $userId);
|
||
$preferences->set($params);
|
||
|
||
try {
|
||
$entityManager->saveEntity($preferences);
|
||
} catch (Exception $e) {
|
||
throw new RuntimeException('Error loadPreferences: ' . $e->getMessage());
|
||
}
|
||
}
|
||
}
|
||
}
|