101 lines
1.8 KiB
PHP
101 lines
1.8 KiB
PHP
<?php
|
|
|
|
class Brizy_Admin_RuleSet implements Brizy_Admin_RuleInterface {
|
|
|
|
/**
|
|
* @var Brizy_Admin_Rule[]
|
|
*/
|
|
private $rules;
|
|
|
|
|
|
/**
|
|
* Brizy_Admin_RuleSet constructor.
|
|
*
|
|
* @param $rules
|
|
*/
|
|
public function __construct( $rules ) {
|
|
|
|
if ( ! is_array( $rules ) ) {
|
|
throw new InvalidArgumentException( 'Invalid RuleSet constructor argument' );
|
|
}
|
|
|
|
$this->rules = $rules;
|
|
}
|
|
|
|
/**
|
|
* @param $context
|
|
*
|
|
* @return float|int
|
|
*/
|
|
public function getRuleWeight( $context ) {
|
|
$array_map = array_map( function ( Brizy_Admin_RuleInterface $v ) use ( $context ) {
|
|
return $v->getRuleWeight( $context );
|
|
}, $this->rules );
|
|
|
|
return count( $array_map ) > 0 ? max( $array_map ) : 0;
|
|
}
|
|
|
|
/**
|
|
* @param $applyFor
|
|
* @param null $entityType
|
|
* @param $entityValues
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isMatching( $applyFor, $entityType, $entityValues ) {
|
|
|
|
if ( count( $this->rules ) == 0 ) {
|
|
return false;
|
|
}
|
|
|
|
foreach ( $this->rules as $rule ) {
|
|
//var_dump($rule->isMatching( $applyFor, $entityType, $entityValues ));
|
|
if ( $rule->isMatching( $applyFor, $entityType, $entityValues ) ) {
|
|
if($rule->getType() == Brizy_Admin_Rule::TYPE_INCLUDE)
|
|
return true;
|
|
|
|
throw new \Exception('Exclude catch');
|
|
|
|
//return $rule->getType() == Brizy_Admin_Rule::TYPE_INCLUDE ? true : false;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return Brizy_Admin_Rule[]
|
|
*/
|
|
public function getRules() {
|
|
return $this->rules;
|
|
}
|
|
|
|
/**
|
|
* @param Brizy_Admin_Rule[] $rules
|
|
*
|
|
* @return Brizy_Admin_RuleSet
|
|
*/
|
|
public function setRules( $rules ) {
|
|
$this->rules = $rules;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param Brizy_Admin_Rule[] $rules
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function addRules( $rules ) {
|
|
|
|
foreach ( (array) $rules as $rule ) {
|
|
if ( $rule instanceof Brizy_Admin_Rule ) {
|
|
$this->rules[] = $rule;
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|