I have an MVC application with a Domain Model well defined, with entities, repositories and a service layer.
To avoid create service classes inside my controllers, and thus, mess my controllers with logic that does not suit they, I created a helper that acts as a sort of Service Locator, but after reading a bit, I realized that many devs ( http://blog.tfnico.com/2011/04/dreaded-service-locator-pattern.html, http://blog.ploeh.dk/2010/02/03/ServiceLocatorIsAnAntiPattern.aspx, http://underground.infovark.com/2010/06/18/the-service-locator-pattern-is-the-new-global-variable/ and http://www.andyfrench.info/2011/05/service-locator-anti-pattern_17.html ) say that the Service Locator is actually an anti-pattern.
But I think my implementation is not an anti-pattern. The reason for them to consider the Service Locator an anti-pattern, is because it hide dependencies, but I inject the only dependency (the Entity Manager, and this dependency probably will not change, because it is in the signature of the Service interface) required by a service class, at the time I instantiate the Service Locator.
Here is my code:
<?php
namespace App\Controller\Action\Helper;
use Zend_Controller_Action_Helper_Abstract as Helper,
Doctrine\ORM\EntityManager;
/**
* Service Locator Helper
* @author JCM
*/
class Service extends Helper {
/**
* The actual EntityManager
* @var \Doctrine\ORM\EntityManager
*/
private $em;
/**
* Services Namespace
* @var string
*/
private $ns;
/**
* @param EntityManager $em
* @param string $ns The namespace where to find the services
*/
public function __construct( EntityManager $em, $ns )
{
$this->em = $em;
$this->ns = $ns;
}
/**
* @param string $serviceName
* @param array $options
* @param string $ns
*/
public function direct( $serviceName, $ns = null )
{
$ns = ( (!$ns) ? $this->ns : $ns ) . '\\';
$class = $ns . $serviceName;
return new $class( $this->getEm(), $options );
}
/**
* @param EntityManager $em
*/
public function setEm( EntityManager $em )
{
$this->em = $em;
}
/**
* @return \Doctrine\ORM\EntityManager
*/
public function getEm()
{
return $this->em;
}
/**
* @param string $name
*/
public function __get( $name )
{
return $this->direct( $name );
}
}
Registering the Action Helper with the Front Controller:
//inside some method in the bootstrap
HelperBroker::addHelper( new App\Controller\Action\Helper\Service( $em, '\App\Domain\Services' ) );
And how I use this Helper in my controllers:
//Some Controller
$myService = $this->_helper->service('MyService');
$result = $myService->doSomethingWithSomeData( $this->getRequest()->getPost() );
//etc...
My implementation is correct? It really is an anti-pattern? What are the possible problems that I might face (With examples in PHP if possible)? How can I refactor my code to eliminate this anti-pattern, but continue with the functionality? So many questions :S