Files
espocrm/application/Espo/Core/Utils/File/Unifier.php
Yuri Kuznetsov 5a2c027f17 refactoring
2022-03-17 12:23:53 +02:00

254 lines
6.9 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 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\Core\Utils\File;
use Espo\Core\{
Utils\File\Manager as FileManager,
Utils\Module,
Utils\Util,
Utils\DataUtil,
Utils\Json,
Utils\Resource\PathProvider,
};
use JsonException;
class Unifier
{
private FileManager $fileManager;
private Module $module;
private PathProvider $pathProvider;
protected bool $useObjects = false;
private string $unsetFileName = 'unset.json';
public function __construct(FileManager $fileManager, Module $module, PathProvider $pathProvider)
{
$this->fileManager = $fileManager;
$this->module = $module;
$this->pathProvider = $pathProvider;
}
/**
* Merge data of resource files.
*
* @return array<string,mixed>|\stdClass
*/
public function unify(string $path, bool $noCustom = false)
{
if ($this->useObjects) {
return $this->unifyObject($path, $noCustom);
}
return $this->unifyArray($path, $noCustom);
}
/**
* @return array<string,mixed>
*/
private function unifyArray(string $path, bool $noCustom = false)
{
/** @var array<string,mixed> */
$data = $this->unifySingle($this->pathProvider->getCore() . $path, true);
foreach ($this->getModuleList() as $moduleName) {
$filePath = $this->pathProvider->getModule($moduleName) . $path;
/** @var array<string,mixed> */
$newData = $this->unifySingle($filePath, true);
/** @var array<string,mixed> */
$data = Util::merge($data, $newData);
}
if ($noCustom) {
return $data;
}
$customFilePath = $this->pathProvider->getCustom() . $path;
/** @var array<string,mixed> */
$newData = $this->unifySingle($customFilePath, true);
/** @var array<string,mixed> */
return Util::merge($data, $newData);
}
/**
* @return \stdClass
*/
private function unifyObject(string $path, bool $noCustom = false)
{
/** @var \stdClass */
$data = $this->unifySingle($this->pathProvider->getCore() . $path, true);
foreach ($this->getModuleList() as $moduleName) {
$filePath = $this->pathProvider->getModule($moduleName) . $path;
/** @var \stdClass */
$data = DataUtil::merge(
$data,
$this->unifySingle($filePath, true)
);
}
if ($noCustom) {
return $data;
}
$customFilePath = $this->pathProvider->getCustom() . $path;
/** @var \stdClass */
return DataUtil::merge(
$data,
$this->unifySingle($customFilePath, true)
);
}
/**
* @return array<string,mixed>|\stdClass
*/
private function unifySingle(string $dirPath, bool $recursively)
{
$data = [];
$unsets = [];
if ($this->useObjects) {
$data = (object) [];
}
if (empty($dirPath) || !$this->fileManager->exists($dirPath)) {
return $data;
}
$fileList = $this->fileManager->getFileList($dirPath, $recursively, '\.json$');
$dirName = $this->fileManager->getDirName($dirPath, false);
foreach ($fileList as $dirName => $item) {
if (is_array($item)) {
/** @var string $dirName */
// Only a first level of a sub-directory.
$itemValue = $this->unifySingle(
Util::concatPath($dirPath, $dirName),
false
);
if ($this->useObjects) {
/** @var \stdClass $data */
$data->$dirName = $itemValue;
continue;
}
/** @var array<string,mixed> $data */
$data[$dirName] = $itemValue;
continue;
}
/** @var string $item */
$fileName = $item;
if ($fileName === $this->unsetFileName) {
$fileContent = $this->fileManager->getContents($dirPath . '/' . $fileName);
$unsets = Json::decode($fileContent, true);
continue;
}
$itemValue = $this->getContents($dirPath . '/' . $fileName);
if (empty($itemValue)) {
continue;
}
$name = $this->fileManager->getFileName($fileName, '.json');
if ($this->useObjects) {
/** @var \stdClass $data */
$data->$name = $itemValue;
continue;
}
/** @var array<string,mixed> $data */
$data[$name] = $itemValue;
}
if ($this->useObjects) {
/** @var \stdClass $data */
/** @var \stdClass */
return DataUtil::unsetByKey($data, $unsets);
}
/** @var array<string,mixed> $data */
/** @var array<string,mixed> */
return Util::unsetInArray($data, $unsets);
}
/**
* @return \stdClass|array<string,mixed>
* @throws JsonException
*/
private function getContents(string $path)
{
$fileContent = $this->fileManager->getContents($path);
try {
return Json::decode($fileContent, !$this->useObjects);
}
catch (JsonException $e) {
throw new JsonException(
"JSON syntax error in '{$path}'."
);
}
}
/**
* @return string[]
*/
private function getModuleList(): array
{
return $this->module->getOrderedList();
}
}