nodeVisitor = $nodeVisitor; $this->user = $user; $this->parser = new Parser(new EmulativeLexer); $this->traverser = new NodeTraverser; $this->traverser->addVisitor($nodeVisitor); $this->prettyPrinter = new StandardPrettyPrinter; $this->logger = $logger; $this->debug = $debug; } /** * Evaluates a condition expression, based on the given parameters. * * The special parameter `self` is an array of the current user's data. * This get included automatically, and so does not need to be passed in. * @param string $condition a boolean expression composed of calls to AccessCondition functions. * @param array[mixed] $params the parameters to be used when evaluating the expression. * @return bool true if the condition is passed for the given parameters, otherwise returns false. */ public function evaluateCondition($condition, $params) { // Set the reserved `self` parameters. // This replaces any values of `self` specified in the arguments, thus preventing them from being overridden in malicious user input. // (For example, from an unfiltered request body). $params['self'] = $this->user->export(); $this->nodeVisitor->setParams($params); $code = "debug) { $this->logger->debug("Evaluating access condition '$condition' with parameters:", $params); } // Traverse the parse tree, and execute any callbacks found using the supplied parameters. // Replace the function node with the return value of the callback. try { // parse $stmts = $this->parser->parse($code); // traverse $stmts = $this->traverser->traverse($stmts); // Evaluate boolean statement. It is safe to use eval() here, because our expression has been reduced entirely to a boolean expression. $expr = $this->prettyPrinter->prettyPrintExpr($stmts[0]); $expr_eval = "return " . $expr . ";\n"; $result = eval($expr_eval); if ($this->debug) { $this->logger->debug("Expression '$expr' evaluates to " . ($result == TRUE ? "true" : "false")); } return $result; } catch (PhpParserException $e) { if ($this->debug) { $this->logger->debug("Error parsing access condition '$condition':" . $e->getMessage()); } return FALSE; // Access fails if the access condition can't be parsed. } catch (AuthorizationException $e) { if ($this->debug) { $this->logger->debug("Error parsing access condition '$condition':" . $e->getMessage()); } return FALSE; } } }