mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 15:06:06 +00:00
268 lines
8.1 KiB
PHP
268 lines
8.1 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2019 Yuri Kuznetsov, Taras Machyshyn, Oleksiy 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;
|
|
use \Espo\Core\Exceptions\Error,
|
|
\Espo\Core\Utils\Util;
|
|
|
|
class HookManager
|
|
{
|
|
private $container;
|
|
|
|
private $data;
|
|
|
|
private $hookListHash = [];
|
|
|
|
private $hooks;
|
|
|
|
protected $cacheFile = 'data/cache/application/hooks.php';
|
|
|
|
/**
|
|
* List of ignored hook methods
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $ignoredMethodList = [
|
|
'__construct',
|
|
'getDependencyList',
|
|
'inject',
|
|
];
|
|
|
|
protected $paths = [
|
|
'corePath' => 'application/Espo/Hooks',
|
|
'modulePath' => 'application/Espo/Modules/{*}/Hooks',
|
|
'customPath' => 'custom/Espo/Custom/Hooks',
|
|
];
|
|
|
|
public function __construct(Container $container)
|
|
{
|
|
$this->container = $container;
|
|
}
|
|
|
|
protected function getConfig()
|
|
{
|
|
return $this->container->get('config');
|
|
}
|
|
|
|
protected function getFileManager()
|
|
{
|
|
return $this->container->get('fileManager');
|
|
}
|
|
|
|
protected function loadHooks()
|
|
{
|
|
if ($this->getConfig()->get('useCache') && file_exists($this->cacheFile)) {
|
|
$this->data = $this->getFileManager()->getPhpContents($this->cacheFile);
|
|
return;
|
|
}
|
|
|
|
$metadata = $this->container->get('metadata');
|
|
|
|
$data = $this->getHookData($this->paths['customPath']);
|
|
|
|
foreach ($metadata->getModuleList() as $moduleName) {
|
|
$modulePath = str_replace('{*}', $moduleName, $this->paths['modulePath']);
|
|
$data = $this->getHookData($modulePath, $data);
|
|
}
|
|
|
|
$data = $this->getHookData($this->paths['corePath'], $data);
|
|
|
|
$this->data = $this->sortHooks($data);
|
|
|
|
if ($this->getConfig()->get('useCache')) {
|
|
$this->getFileManager()->putPhpContents($this->cacheFile, $this->data);
|
|
}
|
|
}
|
|
|
|
public function process($scope, $hookName, $injection = null, array $options = array(), array $hookData = array())
|
|
{
|
|
if (!isset($this->data)) {
|
|
$this->loadHooks();
|
|
}
|
|
|
|
$hookList = $this->getHookList($scope, $hookName);
|
|
|
|
if (!empty($hookList)) {
|
|
foreach ($hookList as $className) {
|
|
if (empty($this->hooks[$className])) {
|
|
$this->hooks[$className] = $this->createHookByClassName($className);
|
|
if (empty($this->hooks[$className])) continue;
|
|
}
|
|
$hook = $this->hooks[$className];
|
|
$hook->$hookName($injection, $options, $hookData);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function createHookByClassName($className)
|
|
{
|
|
if (class_exists($className)) {
|
|
$hook = new $className();
|
|
$dependencyList = $hook->getDependencyList();
|
|
foreach ($dependencyList as $name) {
|
|
$hook->inject($name, $this->container->get($name));
|
|
}
|
|
return $hook;
|
|
}
|
|
|
|
$GLOBALS['log']->error("Hook class '{$className}' does not exist.");
|
|
}
|
|
|
|
/**
|
|
* Get and merge hook data by checking the files exist in $hookDirs
|
|
*
|
|
* @param array $hookDirs - it can be an array('Espo/Hooks', 'Espo/Custom/Hooks', 'Espo/Modules/Crm/Hooks')
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getHookData($hookDirs, array $hookData = array())
|
|
{
|
|
if (is_string($hookDirs)) {
|
|
$hookDirs = (array) $hookDirs;
|
|
}
|
|
|
|
foreach ($hookDirs as $hookDir) {
|
|
|
|
if (file_exists($hookDir)) {
|
|
$fileList = $this->getFileManager()->getFileList($hookDir, 1, '\.php$', true);
|
|
|
|
foreach ($fileList as $scopeName => $hookFiles) {
|
|
|
|
$hookScopeDirPath = Util::concatPath($hookDir, $scopeName);
|
|
$normalizedScopeName = Util::normilizeScopeName($scopeName);
|
|
|
|
$scopeHooks = array();
|
|
foreach($hookFiles as $hookFile) {
|
|
$hookFilePath = Util::concatPath($hookScopeDirPath, $hookFile);
|
|
$className = Util::getClassName($hookFilePath);
|
|
|
|
$classMethods = get_class_methods($className);
|
|
$hookMethods = array_diff($classMethods, $this->ignoredMethodList);
|
|
|
|
foreach($hookMethods as $hookType) {
|
|
$entityHookData = isset($hookData[$normalizedScopeName][$hookType]) ? $hookData[$normalizedScopeName][$hookType] : array();
|
|
if (!$this->hookExists($className, $entityHookData)) {
|
|
$hookData[$normalizedScopeName][$hookType][] = array(
|
|
'className' => $className,
|
|
'order' => $className::$order
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return $hookData;
|
|
}
|
|
|
|
/**
|
|
* Sort hooks by an order
|
|
*
|
|
* @param array $hooks
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function sortHooks(array $hooks)
|
|
{
|
|
foreach ($hooks as $scopeName => &$scopeHooks) {
|
|
foreach ($scopeHooks as $hookName => &$hookList) {
|
|
usort($hookList, array($this, 'cmpHooks'));
|
|
}
|
|
}
|
|
|
|
return $hooks;
|
|
}
|
|
|
|
/**
|
|
* Get sorted hook list
|
|
*
|
|
* @param string $scope
|
|
* @param string $hookName
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getHookList($scope, $hookName)
|
|
{
|
|
$key = $scope . '_' . $hookName;
|
|
|
|
if (!isset($this->hookListHash[$key])) {
|
|
$hookList = array();
|
|
|
|
if (isset($this->data['Common'][$hookName])) {
|
|
$hookList = $this->data['Common'][$hookName];
|
|
}
|
|
|
|
if (isset($this->data[$scope][$hookName])) {
|
|
$hookList = array_merge($hookList, $this->data[$scope][$hookName]);
|
|
usort($hookList, array($this, 'cmpHooks'));
|
|
}
|
|
|
|
$normalizedList = array();
|
|
foreach ($hookList as $hookData) {
|
|
$normalizedList[] = $hookData['className'];
|
|
}
|
|
|
|
$this->hookListHash[$key] = $normalizedList;
|
|
}
|
|
|
|
return $this->hookListHash[$key];
|
|
}
|
|
|
|
/**
|
|
* Check if hook exists in the list
|
|
*
|
|
* @param string $className
|
|
* @param array $hookData
|
|
*
|
|
* @return boolean
|
|
*/
|
|
protected function hookExists($className, array $hookData)
|
|
{
|
|
$class = preg_replace('/^.*\\\(.*)$/', '$1', $className);
|
|
|
|
foreach ($hookData as $hookData) {
|
|
if (preg_match('/\\\\'.$class.'$/', $hookData['className'])) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
protected function cmpHooks($a, $b)
|
|
{
|
|
if ($a['order'] == $b['order']) {
|
|
return 0;
|
|
}
|
|
|
|
return ($a['order'] < $b['order']) ? -1 : 1;
|
|
}
|
|
} |