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,193 @@
<?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\Utils\File;
use Espo\Core\Utils\Config;
use Espo\Core\Utils\DataCache;
use Espo\Core\Utils\File\Manager as FileManager;
use Espo\Core\Utils\Module;
use Espo\Core\Utils\Module\PathProvider;
use Espo\Core\Utils\Util;
use ReflectionClass;
class ClassMap
{
public function __construct(
private FileManager $fileManager,
private Module $module,
private DataCache $dataCache,
private PathProvider $pathProvider,
private Config\SystemConfig $systemConfig,
) {}
/**
* Return paths to class files.
*
* @param ?string[] $allowedMethods If specified, classes w/o specified method will be ignored.
* @return array<string, class-string>
*/
public function getData(
string $path,
?string $cacheKey = null,
?array $allowedMethods = null,
bool $subDirs = false
): array {
$data = null;
if (
$cacheKey &&
$this->dataCache->has($cacheKey) &&
$this->systemConfig->useCache()
) {
/** @var array<string,class-string> $data */
$data = $this->dataCache->get($cacheKey);
}
if (is_array($data)) {
return $data;
}
$data = $this->getClassNameHash(
$this->pathProvider->getCore() . $path,
$allowedMethods,
$subDirs
);
foreach ($this->module->getOrderedList() as $moduleName) {
$data = array_merge(
$data,
$this->getClassNameHash(
$this->pathProvider->getModule($moduleName) . $path,
$allowedMethods,
$subDirs
)
);
}
$data = array_merge(
$data,
$this->getClassNameHash(
$this->pathProvider->getCustom() . $path,
$allowedMethods,
$subDirs
)
);
if ($cacheKey && $this->systemConfig->useCache()) {
$this->dataCache->store($cacheKey, $data);
}
return $data;
}
/**
* @param string[]|string $dirs
* @param ?string[] $allowedMethods
* @return array<string,class-string>
*/
private function getClassNameHash($dirs, ?array $allowedMethods = [], bool $subDirs = false): array
{
if (is_string($dirs)) {
$dirs = (array) $dirs;
}
$data = [];
foreach ($dirs as $dir) {
if (file_exists($dir)) {
/** @var string[] $fileList */
$fileList = $this->fileManager->getFileList($dir, $subDirs, '\.php$', true);
$this->fillHashFromFileList($fileList, $dir, $allowedMethods, $data);
}
}
return $data;
}
/**
* @param string[] $fileList
* @param ?string[] $allowedMethods
* @param array<string,class-string> $data
*/
private function fillHashFromFileList(
array $fileList,
string $dir,
?array $allowedMethods,
array &$data,
string $category = ''
): void {
foreach ($fileList as $key => $file) {
if (is_string($key)) {
if (is_array($file)) {
$this->fillHashFromFileList(
$file,
$dir . '/'. $key,
$allowedMethods,
$data,
$category . $key . '\\'
);
}
continue;
}
$filePath = Util::concatPath($dir, $file);
$className = Util::getClassName($filePath);
$fileName = $this->fileManager->getFileName($filePath);
$class = new ReflectionClass($className);
if (!$class->isInstantiable()) {
continue;
}
$name = Util::normalizeScopeName(ucfirst($fileName));
$name = $category . $name;
if (empty($allowedMethods)) {
$data[$name] = $className;
continue;
}
foreach ($allowedMethods as $methodName) {
if (method_exists($className, $methodName)) {
$data[$name] = $className;
}
}
}
}
}