2016-07-26 12:16:34 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\WorkflowEngine\AppInfo;
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\WorkflowEngine\Controller\RequestTime;
|
2020-01-14 12:43:50 +03:00
|
|
|
use OCA\WorkflowEngine\Helper\LogContext;
|
2019-09-03 13:42:57 +03:00
|
|
|
use OCA\WorkflowEngine\Manager;
|
2020-01-14 12:43:50 +03:00
|
|
|
use OCA\WorkflowEngine\Service\Logger;
|
2019-10-15 13:54:22 +03:00
|
|
|
use OCP\AppFramework\QueryException;
|
2019-11-06 12:54:37 +03:00
|
|
|
use OCP\EventDispatcher\Event;
|
2018-01-26 01:16:13 +03:00
|
|
|
use OCP\Template;
|
2019-09-09 18:17:39 +03:00
|
|
|
use OCP\WorkflowEngine\IEntity;
|
2019-11-06 12:54:37 +03:00
|
|
|
use OCP\WorkflowEngine\IEntityCompat;
|
2019-09-03 13:42:57 +03:00
|
|
|
use OCP\WorkflowEngine\IOperation;
|
2019-11-06 12:54:37 +03:00
|
|
|
use OCP\WorkflowEngine\IOperationCompat;
|
2019-09-03 13:42:57 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2018-01-26 01:16:13 +03:00
|
|
|
|
2016-07-26 12:16:34 +03:00
|
|
|
class Application extends \OCP\AppFramework\App {
|
|
|
|
|
2019-08-09 14:24:48 +03:00
|
|
|
const APP_ID = 'workflowengine';
|
|
|
|
|
2019-09-03 13:42:57 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
|
|
|
protected $dispatcher;
|
|
|
|
/** @var Manager */
|
|
|
|
protected $manager;
|
|
|
|
|
2016-07-26 12:16:34 +03:00
|
|
|
public function __construct() {
|
2019-08-09 14:24:48 +03:00
|
|
|
parent::__construct(self::APP_ID);
|
2016-07-26 12:16:34 +03:00
|
|
|
|
2018-01-26 01:16:13 +03:00
|
|
|
$this->getContainer()->registerAlias('RequestTimeController', RequestTime::class);
|
2019-09-03 13:42:57 +03:00
|
|
|
|
|
|
|
$this->dispatcher = $this->getContainer()->getServer()->getEventDispatcher();
|
|
|
|
$this->manager = $this->getContainer()->query(Manager::class);
|
2016-07-26 12:16:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register all hooks and listeners
|
|
|
|
*/
|
|
|
|
public function registerHooksAndListeners() {
|
2019-09-03 13:42:57 +03:00
|
|
|
$this->dispatcher->addListener(
|
2016-07-26 12:16:34 +03:00
|
|
|
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
|
2019-11-06 12:54:37 +03:00
|
|
|
function () {
|
2016-08-18 13:00:59 +03:00
|
|
|
if (!function_exists('style')) {
|
|
|
|
// This is hacky, but we need to load the template class
|
2018-01-26 01:16:13 +03:00
|
|
|
class_exists(Template::class, true);
|
2016-08-18 13:00:59 +03:00
|
|
|
}
|
|
|
|
|
2016-07-27 16:17:38 +03:00
|
|
|
script('core', [
|
2017-03-06 14:05:31 +03:00
|
|
|
'files/fileinfo',
|
|
|
|
'files/client',
|
2016-07-27 16:17:38 +03:00
|
|
|
'systemtags/systemtags',
|
|
|
|
'systemtags/systemtagmodel',
|
|
|
|
'systemtags/systemtagscollection',
|
|
|
|
]);
|
|
|
|
|
2019-08-09 14:24:48 +03:00
|
|
|
script(self::APP_ID, [
|
2019-05-09 19:39:40 +03:00
|
|
|
'workflowengine',
|
2016-07-27 16:17:38 +03:00
|
|
|
]);
|
2016-07-26 12:16:34 +03:00
|
|
|
},
|
|
|
|
-100
|
|
|
|
);
|
|
|
|
}
|
2019-09-03 13:42:57 +03:00
|
|
|
|
|
|
|
public function registerRuleListeners() {
|
|
|
|
$configuredEvents = $this->manager->getAllConfiguredEvents();
|
|
|
|
|
|
|
|
foreach ($configuredEvents as $operationClass => $events) {
|
|
|
|
foreach ($events as $entityClass => $eventNames) {
|
2019-09-09 18:17:39 +03:00
|
|
|
array_map(function (string $eventName) use ($operationClass, $entityClass) {
|
2019-09-03 13:42:57 +03:00
|
|
|
$this->dispatcher->addListener(
|
|
|
|
$eventName,
|
2019-11-06 12:54:37 +03:00
|
|
|
function ($event) use ($eventName, $operationClass, $entityClass) {
|
2019-09-09 18:17:39 +03:00
|
|
|
$ruleMatcher = $this->manager->getRuleMatcher();
|
2019-10-15 13:54:22 +03:00
|
|
|
try {
|
|
|
|
/** @var IEntity $entity */
|
|
|
|
$entity = $this->getContainer()->query($entityClass);
|
|
|
|
/** @var IOperation $operation */
|
|
|
|
$operation = $this->getContainer()->query($operationClass);
|
2019-11-06 12:54:37 +03:00
|
|
|
|
2019-11-27 15:59:34 +03:00
|
|
|
$ruleMatcher->setEntity($entity);
|
|
|
|
$ruleMatcher->setOperation($operation);
|
|
|
|
|
2020-01-14 12:43:50 +03:00
|
|
|
$ctx = new LogContext();
|
|
|
|
$ctx
|
|
|
|
->setOperation($operation)
|
|
|
|
->setEntity($entity)
|
|
|
|
->setEventName($eventName);
|
|
|
|
|
|
|
|
/** @var Logger $flowLogger */
|
|
|
|
$flowLogger = $this->getContainer()->query(Logger::class);
|
|
|
|
$flowLogger->logEventInit($ctx);
|
|
|
|
|
2019-11-06 12:54:37 +03:00
|
|
|
if ($event instanceof Event) {
|
|
|
|
$entity->prepareRuleMatcher($ruleMatcher, $eventName, $event);
|
|
|
|
$operation->onEvent($eventName, $event, $ruleMatcher);
|
|
|
|
} else if ($entity instanceof IEntityCompat && $operation instanceof IOperationCompat) {
|
|
|
|
// TODO: Remove this block (and the compat classes) in the first major release in 2023
|
|
|
|
$entity->prepareRuleMatcherCompat($ruleMatcher, $eventName, $event);
|
|
|
|
$operation->onEventCompat($eventName, $event, $ruleMatcher);
|
|
|
|
} else {
|
|
|
|
$logger = $this->getContainer()->getServer()->getLogger();
|
2019-12-16 17:30:50 +03:00
|
|
|
$logger->debug(
|
2019-11-06 12:54:37 +03:00
|
|
|
'Cannot handle event {name} of {event} against entity {entity} and operation {operation}',
|
|
|
|
[
|
|
|
|
'app' => self::APP_ID,
|
|
|
|
'name' => $eventName,
|
|
|
|
'event' => get_class($event),
|
|
|
|
'entity' => $entityClass,
|
|
|
|
'operation' => $operationClass,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2020-01-14 12:43:50 +03:00
|
|
|
$flowLogger->logEventDone($ctx);
|
2019-11-06 12:54:37 +03:00
|
|
|
|
2019-10-15 13:54:22 +03:00
|
|
|
} catch (QueryException $e) {
|
|
|
|
// Ignore query exceptions since they might occur when an entity/operation were setup before by an app that is disabled now
|
|
|
|
}
|
2019-09-03 13:42:57 +03:00
|
|
|
}
|
|
|
|
);
|
2019-12-06 12:32:37 +03:00
|
|
|
}, $eventNames ?? []);
|
2019-09-03 13:42:57 +03:00
|
|
|
}
|
|
|
|
}
|
2020-01-14 12:43:50 +03:00
|
|
|
|
|
|
|
|
2019-09-03 13:42:57 +03:00
|
|
|
}
|
2016-07-26 12:16:34 +03:00
|
|
|
}
|