$this->filterChains[$filterChain] = ObjectFactory::createObjectByConfiguredName('filter_chain_class');
}
+ /**
+ * Adds a filter to a given filter group
+ *
+ * @param $filterGroup Group of the filter
+ * @param $filterInstance An instance of a filter
+ * @return void
+ */
+ protected function add addFilter ($filterGroup, Filterable $filterInstance) {
+ $this->filterChains[$filterGroup]->addFilter($filterInstance);
+ }
+
/**
* Adds a filter to the pre filter chain
*
*/
public function addPreFilter (Filterable $filterInstance) {
// Add the pre filter
- $this->filterChains['pre']->addFilter($filterInstance);
+ $this->addFilter('pre', $filterInstance);
}
/**
*/
public function addPostFilter (Filterable $filterInstance) {
// Add the post filter
- $this->filterChains['post']->addFilter($filterInstance);
+ $this->addFilter('post', $filterInstance);
+ }
+
+ /**
+ * Executes given filter chain group
+ *
+ * @param $filterGroup Group of the filter to execute
+ * @param $requestInstance An instance of a request class
+ * @param $responseInstance An instance of a response class
+ * @return void
+ */
+ protected function executeFilters ($filterGroup, Requestable $requestInstance, Responseable $responseInstance) {
+ $this->filterChains[$filterGroup]->processFilters($requestInstance, $responseInstance);
}
/**
*/
protected function executePreFilters (Requestable $requestInstance, Responseable $responseInstance) {
// Execute all pre filters
- $this->filterChains['pre']->processFilters($requestInstance, $responseInstance);
+ $this->executeFilters('pre', $requestInstance, $responseInstance);
}
/**
*/
protected function executePostFilters (Requestable $requestInstance, Responseable $responseInstance) {
// Execute all post filters
- $this->filterChains['post']->processFilters($requestInstance, $responseInstance);
+ $this->executeFilters('post', $requestInstance, $responseInstance);
}
}