<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\View\Strategy;

use 
Zend\EventManager\EventManagerInterface;
use 
Zend\EventManager\ListenerAggregateInterface;
use 
Zend\View\Renderer\PhpRenderer;
use 
Zend\View\ViewEvent;

class 
PhpRendererStrategy implements ListenerAggregateInterface
{
    
/**
     * @var \Zend\Stdlib\CallbackHandler[]
     */
    
protected $listeners = array();

    
/**
     * Placeholders that may hold content
     *
     * @var array
     */
    
protected $contentPlaceholders = array('article''content');

    
/**
     * @var PhpRenderer
     */
    
protected $renderer;

    
/**
     * Constructor
     *
     * @param  PhpRenderer $renderer
     */
    
public function __construct(PhpRenderer $renderer)
    {
        
$this->renderer $renderer;
    }

    
/**
     * Retrieve the composed renderer
     *
     * @return PhpRenderer
     */
    
public function getRenderer()
    {
        return 
$this->renderer;
    }

    
/**
     * Set list of possible content placeholders
     *
     * @param  array $contentPlaceholders
     * @return PhpRendererStrategy
     */
    
public function setContentPlaceholders(array $contentPlaceholders)
    {
        
$this->contentPlaceholders $contentPlaceholders;
        return 
$this;
    }

    
/**
     * Get list of possible content placeholders
     *
     * @return array
     */
    
public function getContentPlaceholders()
    {
        return 
$this->contentPlaceholders;
    }

    
/**
     * Attach the aggregate to the specified event manager
     *
     * @param  EventManagerInterface $events
     * @param  int $priority
     * @return void
     */
    
public function attach(EventManagerInterface $events$priority 1)
    {
        
$this->listeners[] = $events->attach(ViewEvent::EVENT_RENDERER, array($this'selectRenderer'), $priority);
        
$this->listeners[] = $events->attach(ViewEvent::EVENT_RESPONSE, array($this'injectResponse'), $priority);
    }

    
/**
     * Detach aggregate listeners from the specified event manager
     *
     * @param  EventManagerInterface $events
     * @return void
     */
    
public function detach(EventManagerInterface $events)
    {
        foreach (
$this->listeners as $index => $listener) {
            if (
$events->detach($listener)) {
                unset(
$this->listeners[$index]);
            }
        }
    }

    
/**
     * Select the PhpRenderer; typically, this will be registered last or at
     * low priority.
     *
     * @param  ViewEvent $e
     * @return PhpRenderer
     */
    
public function selectRenderer(ViewEvent $e)
    {
        return 
$this->renderer;
    }

    
/**
     * Populate the response object from the View
     *
     * Populates the content of the response object from the view rendering
     * results.
     *
     * @param ViewEvent $e
     * @return void
     */
    
public function injectResponse(ViewEvent $e)
    {
        
$renderer $e->getRenderer();
        if (
$renderer !== $this->renderer) {
            return;
        }

        
$result   $e->getResult();
        
$response $e->getResponse();

        
// Set content
        // If content is empty, check common placeholders to determine if they are
        // populated, and set the content from them.
        
if (empty($result)) {
            
$placeholders $renderer->plugin('placeholder');
            
$registry     $placeholders->getRegistry();
            foreach (
$this->contentPlaceholders as $placeholder) {
                if (
$registry->containerExists($placeholder)) {
                    
$result = (string) $registry->getContainer($placeholder);
                    break;
                }
            }
        }
        
$response->setContent($result);
    }
}