(Laravel) Dynamic dependency injection for interface, based on user input (Laravel) Dynamic dependency injection for interface, based on user input laravel laravel

(Laravel) Dynamic dependency injection for interface, based on user input


Finally, after some days of researching and thinking a lot about the best approach for this, using Laravel, I finally solved it.

I have to say that this was especially difficult in Laravel 5.2 because, in this version, the Session middleware only is executed in the controllers used in a route, it means that if for some reason I used a controller (not linked for a rote) and try to get access to the session it is not going to be possible.

So, because I cannot use the session, I decided to use URL parameters. Here you have the solution approach; I hope some of you found it useful.

so, you have an interface:

interface Service{    public function execute();}

Then a couple of implementations for the interface:

Service one:

class ServiceOne implements Service{    public function execute()    {        .......    }}

Service two.

class ServiceTwo implements Service{    public function execute()    {        .......    }}

The interesting part is that I have a controller with a function with a dependency with the Service interface. Still, I need to resolve it dynamically to ServiceOne or ServiceTwo based on user input. So:

The controller

class MyController extends Controller{    public function index(Service $service, ServiceRequest $request)    {        $service->execute();        .......    }}

Please note that ServiceRequest, validated that the request already have the parameter that we need to resolve the dependency (call it 'service_name')

Now, in the AppServiceProvider we can resolve the dependency in this way:

class AppServiceProvider extends ServiceProvider{    public function boot()    {            }    public function register()    {        //This specific dependency is going to be resolved only if        //the request has the service_name field stablished        if(Request::has('service_name'))        {            //Obtaining the name of the service to be used (class name)            $className = $this->resolveClassName(Request::get('service_name')));                        $this->app->bind('Including\The\Namespace\For\Service', $className);        }    }    protected function resolveClassName($className)    {        $resolver = new Resolver($className);        $className = $resolver->resolveDependencyName();        return $className;    }}

So now all the responsibility is for the Resolver class. This class basically use the parameter passed to the constructor to return the full name (with namespace) of the class that is going to be used as an implementation of the Service interface:

class Resolver{    protected $name;    public function __construct($className)    {        $this->name = $className;    }    public function resolveDependencyName()    {        //This is just an example, you can use whatever as 'service_one'        if($this->name === 'service_one')        {            return Full\Namespace\For\Class\Implementation\ServiceOne::class;        }                if($this->name === 'service_two')        {            return Full\Namespace\For\Class\Implementation\ServiceTwo::class;        }        //If none, so throw an exception because the dependency can not be resolved         throw new ResolverException;    }}

Well, I really hope it helps some of you.

Best wishes!

---------- EDIT -----------

I just realize that it is not a good idea to use the request data directly inside the container of Laravel. It really is going to cause some trouble in the long term.

The best way is to directly register all the possible instances supported (serviceone and servicetwo) and then resolve one of them directly from a controller or a middleware, so then is the controller "who decides" what service to use (from all the available) based on the input from the request.

In the end, it works at the same, but it is going to allow you to work more naturally.

I have to say thanks to rizqi, a user from the questions channel of the slack chat of Laravel.

He personally created a golden article about this. Please read it because it solves this issue completely and in a very right way.

laravel registry pattern


The fact that you define that your controller works with ServiceInterface is ok

If you have to choose the concrete implementation of the service basing on a previous step (that, as i've understood, happens in a previous request) storing the value in session or in database is right too, as you have no alternative: to choose the implementation you have to know the value of the input

The important point is to 'isolate' the resolution of the concrete implementation from the input value in one place: for example create a method that takes this value as a parameter and returns the concrete implementation of the service from the value:

public function getServiceImplementation($input_val){    switch($input_val)    {        case 1 : return new Service1();        case 2 : return new Service2();    }    }

and in your controller:

public function controllerMethod(){    //create and assign the service implementation    $this->service = ( new ServiceChooser() )->getServiceImplementation( Session::get('input_val') );}

In this example i've used a different class to store the method, but you can place the method in the controller or use a Simple Factory pattern, depending on where the service should be resolved in your application


It's an interesting problem. I'm currently using Laravel 5.5 and have been mulling it over. I also want my service provider to return a specific class (implementing an interface) based upon user input. I think it's better to manually pass the input from the controller so it's easier to see what's going on. I would also store the possible values of the class names in the config.So based upon the Service classes and interface you've defined above i came up with this:

/config/services.php

return [    'classes': [        'service1' => 'Service1',        'service2' => 'Service2',    ]]

/app/Http/Controllers/MainController.php

public function index(ServiceRequest $request){    $service = app()->makeWith(ServiceInterface::class, ['service'=>$request->get('service)]);    // ... do something with your service}

/app/Http/Requests/ServiceRequest.php

public function rules(): array    $availableServices = array_keys(config('services.classes'));    return [        'service' => [            'required',            Rule::in($availableServices)        ]    ];}

/app/Providers/CustomServiceProvider.php

class CustomServiceProvider extends ServiceProvider{    public function boot() {}    public function register()    {        // Parameters are passed from the controller action        $this->app->bind(            ServiceInterface::class,            function($app, $parameters) {                $serviceConfigKey = $parameters['service'];                $className = '\\App\\Services\\' . config('services.classes.' . $serviceConfigKey);                return new $className;            }        );    }}

This way we can validate the input to ensure we are passing a valid service, then the controller handles passing the input from the Request object into the ServiceProvider. I just think when it comes to maintaining this code it will be clear what is going on as opposed to using the request object directly in the ServiceProvider.PS Remember to register the CustomServiceProvider!