diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-08-25 10:40:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 10:40:26 +0200 |
commit | 0934aee46bee13d5ac4d62eae6fe5250c25192fb (patch) | |
tree | f70308739fe00ac18e878f91937f3f639c6295e8 /apps | |
parent | b2877606944572dfee87296d6cfc11558f5954b9 (diff) | |
parent | 28c0eea8cb0e1016e751a2e28d0b09006751c58b (diff) | |
download | nextcloud-server-0934aee46bee13d5ac4d62eae6fe5250c25192fb.tar.gz nextcloud-server-0934aee46bee13d5ac4d62eae6fe5250c25192fb.zip |
Merge pull request #22359 from nextcloud/fix/noid/flow-leaking-scope
fix possible leaking scope in Flow
Diffstat (limited to 'apps')
-rw-r--r-- | apps/workflowengine/lib/AppInfo/Application.php | 2 | ||||
-rw-r--r-- | apps/workflowengine/lib/Service/RuleMatcher.php | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/apps/workflowengine/lib/AppInfo/Application.php b/apps/workflowengine/lib/AppInfo/Application.php index 8f762f0d707..3b253acbce1 100644 --- a/apps/workflowengine/lib/AppInfo/Application.php +++ b/apps/workflowengine/lib/AppInfo/Application.php @@ -65,6 +65,7 @@ class Application extends App implements IBootstrap { private function registerRuleListeners(IEventDispatcher $dispatcher, IServerContainer $container, ILogger $logger): void { + /** @var Manager $manager */ $manager = $container->query(Manager::class); $configuredEvents = $manager->getAllConfiguredEvents(); @@ -81,6 +82,7 @@ class Application extends App implements IBootstrap { /** @var IOperation $operation */ $operation = $container->query($operationClass); + $ruleMatcher->setEventName($eventName); $ruleMatcher->setEntity($entity); $ruleMatcher->setOperation($operation); diff --git a/apps/workflowengine/lib/Service/RuleMatcher.php b/apps/workflowengine/lib/Service/RuleMatcher.php index 05ea16d6816..0ae26627427 100644 --- a/apps/workflowengine/lib/Service/RuleMatcher.php +++ b/apps/workflowengine/lib/Service/RuleMatcher.php @@ -62,6 +62,8 @@ class RuleMatcher implements IRuleMatcher { protected $entity; /** @var Logger */ protected $logger; + /** @var string */ + protected $eventName; public function __construct( IUserSession $session, @@ -101,6 +103,13 @@ class RuleMatcher implements IRuleMatcher { $this->entity = $entity; } + public function setEventName(string $eventName): void { + if ($this->eventName !== null) { + throw new RuntimeException('This method must not be called more than once'); + } + $this->eventName = $eventName; + } + public function getEntity(): IEntity { if ($this->entity === null) { throw new \LogicException('Entity was not set yet'); @@ -155,6 +164,11 @@ class RuleMatcher implements IRuleMatcher { $matches = []; foreach ($operations as $operation) { + $configuredEvents = json_decode($operation['events'], true); + if ($this->eventName !== null && !in_array($this->eventName, $configuredEvents)) { + continue; + } + $checkIds = json_decode($operation['checks'], true); $checks = $this->manager->getChecks($checkIds); |