How to override the default realization IControllerFactory with a custom factory for custom cases one and keep calling DefaultControllerFactory in normal cases if DefaultControllerFactory has become an inner class in ASP.NET Core 3?
services.AddSingleton<IControllerFactory, MyCustomControllerFactory>();
// this class for .NET core 2
public class MyCustomControllerFactory : DefaultControllerFactory
{
public override object CreateController(ControllerContext context)
{
//custom handling...
//base handling
return base.CreateController(context);
}
public override void ReleaseController(ControllerContext context, object controller)
{
base.ReleaseController(context, controller);
}
}
The DefaultControllerFactory class in .NET 5 is internal and I cannot call its CreateController method to try to get regular controllers registered in the ASP MVC Core 5 environment.
//this class for .NET core 3 or .NET 5
public class MyCustomControllerFactory : IControllerFactory
{
public object CreateController(ControllerContext context)
{
if(/*is custom case*/)
{
/*custom actions*/
return /*custom IController*/
}
return /*in this place I want calling base.CreateController(context)*/;
}
public void ReleaseController(ControllerContext context, object controller)
{
var disposable = controller as IDisposable;
if (disposable != null) { disposable.Dispose(); }
}
}
We can overload IControllerActivator or IControllerFactory. This method will be always called, which creates the controller.
We can still call the main platform functions to create controllers. We just need to get a list of all registered instances for IControllerActivator or IControllerFactory and excluding our implementation from this list, one by one, try to create a controller with each of this list. It is important to understand that this implementation is simplified as much as possible and can loop if re-added to DI.