diff -r bd595ad770fc -r 1c2f13fd785c web/enmi/Zend/Tool/Framework/Client/Response.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/enmi/Zend/Tool/Framework/Client/Response.php Thu Jan 20 19:30:54 2011 +0100 @@ -0,0 +1,223 @@ +_callback = $callback; + return $this; + } + + /** + * setContent() + * + * @param string $content + * @return Zend_Tool_Framework_Client_Response + */ + public function setContent($content, Array $decoratorOptions = array()) + { + $this->_applyDecorators($content, $decoratorOptions); + + $this->_content = array(); + $this->appendContent($content); + return $this; + } + + /** + * appendCallback + * + * @param string $content + * @return Zend_Tool_Framework_Client_Response + */ + public function appendContent($content, Array $decoratorOptions = array()) + { + $content = $this->_applyDecorators($content, $decoratorOptions); + + if ($this->_callback !== null) { + call_user_func($this->_callback, $content); + } + + $this->_content[] = $content; + + return $this; + } + + /** + * setDefaultDecoratorOptions() + * + * @param array $decoratorOptions + * @param bool $mergeIntoExisting + * @return Zend_Tool_Framework_Client_Response + */ + public function setDefaultDecoratorOptions(Array $decoratorOptions, $mergeIntoExisting = false) + { + if ($mergeIntoExisting == false) { + $this->_defaultDecoratorOptions = array(); + } + + $this->_defaultDecoratorOptions = array_merge($this->_defaultDecoratorOptions, $decoratorOptions); + return $this; + } + + /** + * getContent() + * + * @return string + */ + public function getContent() + { + return implode('', $this->_content); + } + + /** + * isException() + * + * @return bool + */ + public function isException() + { + return isset($this->_exception); + } + + /** + * setException() + * + * @param Exception $exception + * @return Zend_Tool_Framework_Client_Response + */ + public function setException(Exception $exception) + { + $this->_exception = $exception; + return $this; + } + + /** + * getException() + * + * @return Exception + */ + public function getException() + { + return $this->_exception; + } + + /** + * Add Content Decorator + * + * @param Zend_Tool_Framework_Client_Response_ContentDecorator_Interface $contentDecorator + * @return unknown + */ + public function addContentDecorator(Zend_Tool_Framework_Client_Response_ContentDecorator_Interface $contentDecorator) + { + $decoratorName = strtolower($contentDecorator->getName()); + $this->_decorators[$decoratorName] = $contentDecorator; + return $this; + } + + /** + * getContentDecorators() + * + * @return array + */ + public function getContentDecorators() + { + return $this->_decorators; + } + + /** + * __toString() to cast to a string + * + * @return string + */ + public function __toString() + { + return (string) implode('', $this->_content); + } + + /** + * _applyDecorators() apply a group of decorators + * + * @param string $content + * @param array $decoratorOptions + * @return string + */ + protected function _applyDecorators($content, Array $decoratorOptions) + { + $options = array_merge($this->_defaultDecoratorOptions, $decoratorOptions); + + $options = array_change_key_case($options, CASE_LOWER); + + if ($options) { + foreach ($this->_decorators as $decoratorName => $decorator) { + if (array_key_exists($decoratorName, $options)) { + $content = $decorator->decorate($content, $options[$decoratorName]); + } + } + } + + return $content; + + } + +}