-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathCommandHandlerBindingExtensions.cs
74 lines (67 loc) · 3.49 KB
/
CommandHandlerBindingExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
using System.Linq;
using Ninject.Syntax;
using Revo.Core.Core;
namespace Revo.Core.Commands
{
public static class CommandHandlerBindingExtensions
{
/// <summary>
/// Binds command handler class to all of its implemented <see cref="ICommandHandler{T}"/>
/// and <see cref="IQueryHandler{TQuery,TResult}"/> interfaces. Uses InTaskScope() life-time.
/// Calling this method manually in your modules is not needed when using <see cref="CommandsConfiguration.AutoDiscoverCommandHandlers"/>.
/// </summary>
/// <typeparam name="T">Command handler type.</typeparam>
/// <param name="bindingRoot">Ninject module or kernel.</param>
/// <param name="additionalServices">Additional services to bind for.</param>
public static IBindingNamedWithOrOnSyntax<T> BindCommandHandler<T>(
this IBindingRoot bindingRoot, params Type[] additionalServices)
where T : class
{
if (!typeof(T).IsClass || typeof(T).IsAbstract)
{
throw new ArgumentException($"{typeof(T)} is not a bindable non-abstract class");
}
var handlerInterfaces = GetCommandHandlerInterfaces(typeof(T));
if (handlerInterfaces.Length == 0)
{
throw new ArgumentException($"{typeof(T)} does not implement any ICommandHandler<> nor ICommandHandler<,>");
}
return bindingRoot
.Bind(handlerInterfaces.Concat(additionalServices).Append(typeof(T)).ToArray())
.To<T>()
.InTaskScope();
}
/// <summary>
/// Binds command handler class to all of its implemented <see cref="ICommandHandler{T}"/>
/// and <see cref="IQueryHandler{TQuery,TResult}"/> interfaces. Uses InTaskScope() life-time.
/// Calling this method manually in your modules is not needed when using <see cref="CommandsConfiguration.AutoDiscoverCommandHandlers"/>.
/// </summary>
/// <param name="bindingRoot">Ninject module or kernel.</param>
/// <param name="commandHandlerType">Command handler type.</param>
/// <param name="additionalServices">Additional services to bind for.</param>
public static IBindingNamedWithOrOnSyntax<object> BindCommandHandler(
this IBindingRoot bindingRoot, Type commandHandlerType, params Type[] additionalServices)
{
if (!commandHandlerType.IsClass || commandHandlerType.IsAbstract)
{
throw new ArgumentException($"{commandHandlerType} is not a bindable non-abstract class");
}
var handlerInterfaces = GetCommandHandlerInterfaces(commandHandlerType);
if (handlerInterfaces.Length == 0)
{
throw new ArgumentException($"{commandHandlerType} does not implement any ICommandHandler<> nor ICommandHandler<,>");
}
return bindingRoot
.Bind(handlerInterfaces.Concat(additionalServices).Append(commandHandlerType).ToArray())
.To(commandHandlerType)
.InTaskScope();
}
public static Type[] GetCommandHandlerInterfaces(Type commandHandlerType) =>
commandHandlerType.GetInterfaces()
.Where(x => x.IsGenericType
&& new[] { typeof(ICommandHandler<>), typeof(ICommandHandler<,>) }
.Contains(x.GetGenericTypeDefinition()))
.ToArray();
}
}