-
Notifications
You must be signed in to change notification settings - Fork 1
/
ServiceExtensions.cs
175 lines (158 loc) · 7.59 KB
/
ServiceExtensions.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.Infrastructure;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace EasyOC.ReplaceAction
{
public static class ServiceExtensions
{
public static IServiceCollection AddActionReplaceService(this IServiceCollection services)
{
services.AddOptions<ActionReplaceOption>();
return services;
}
public static IServiceCollection ReplaceAction(this IServiceCollection services, Action<ActionReplaceOption> action)
{
services.Configure<ActionReplaceOption>(opt => action(opt));
return services;
}
public static IServiceCollection ReplaceAction<TTarget, TNew>(this IServiceCollection services, string actionName, string newActionName = default)
{
if (newActionName is null)
{
newActionName = actionName;
}
return services.ReplaceAction(opt =>
{
var type = typeof(TNew);
opt.Items.Add(new ActionReplaceOptionItem
{
TargetControllerFullName = typeof(TTarget).FullName,
NewController = type,
ActionMapping = new Dictionary<string, MethodInfo> { [actionName] = type.GetMethod(newActionName) }
});
});
}
public static IServiceCollection ReplaceAction<TNew>(this IServiceCollection services, string targetControllerFullName, string actionName, string newActionName = default)
where TNew : class
{
if (newActionName is null)
{
newActionName = actionName;
}
return services.ReplaceAction(opt =>
{
opt.AddReplaceOption<TNew>(targetControllerFullName, new Dictionary<string, string>() { [actionName] = newActionName });
});
}
public static IServiceCollection ReplaceAction<TNew>(this IServiceCollection services, string targetControllerFullName, IDictionary<MethodDescription, MethodDescription> actionMapping)
where TNew : class
{
return services.ReplaceAction(opt =>
{
opt.AddReplaceOption<TNew>(targetControllerFullName, actionMapping);
});
}
public static IServiceCollection ReplaceAction<TNew>(this IServiceCollection services, string targetControllerFullName, IEnumerable<MethodDescription> actionMapping)
where TNew : class
{
return services.ReplaceAction(opt =>
{
opt.AddReplaceOption<TNew>(targetControllerFullName, actionMapping.ToDictionary(k => k, v => v));
});
}
public static IServiceCollection ReplaceActionByActionNames<TNew>(this IServiceCollection services, string targetControllerFullName, params string[] actionList)
where TNew : class
{
return services.ReplaceAction(opt =>
{
opt.AddReplaceOption<TNew>(targetControllerFullName, actionList.ToDictionary(s => s));
});
}
public static IServiceProvider UseReplaceAction(this IServiceProvider serviceProvider)
{
var rOptions = serviceProvider.GetRequiredService<IOptions<ActionReplaceOption>>();
var logger = serviceProvider.GetService<ILogger>();
var config = rOptions.Value;
var descriptors = serviceProvider.GetRequiredService<IActionDescriptorCollectionProvider>()
.ActionDescriptors.Items
.OfType<ControllerActionDescriptor>()
.ToArray();
foreach (var descriptor in descriptors)
{
foreach (var item in config.Items.OrderBy(x => x.Order))
{
if (item.CustomAction is not null)
{
item.CustomAction(descriptor);
}
else
{
var actionMethodName = descriptor.MethodInfo.Name;
if (descriptor.ControllerTypeInfo.FullName == item.TargetControllerFullName)
{
if (item.TargetMethodDescriptions != null)
{
var kv = item.TargetMethodDescriptions.Value;
if (kv.Key.Name != actionMethodName)
{
continue;
}
//如果未指定参数 则不检查
if (kv.Key.Parameters != null && kv.Key.Parameters.Length > 0)
{
var parameters = descriptor.MethodInfo.GetParameters();
if (parameters.Length != kv.Key.Parameters.Length)
{
continue;
}
for (int i = 0; i < parameters.Length; i++)
{
if (parameters[i].ParameterType != kv.Key.Parameters[i])
{
continue;
}
}
}
descriptor.ControllerTypeInfo = item.NewController.GetTypeInfo();
descriptor.MethodInfo = kv.Value;
if (logger != null && logger.IsEnabled(LogLevel.Debug))
{
logger.LogDebug("The Action:{action} of controller:{type} is replaced by {newContorller}.{method}",
item.TargetControllerFullName,
actionMethodName,
descriptor.ControllerTypeInfo.FullName,
kv.Value.Name
);
}
}
else
{
if (item.ActionMapping.ContainsKey(actionMethodName))
{
descriptor.ControllerTypeInfo = item.NewController.GetTypeInfo();
descriptor.MethodInfo = item.ActionMapping[actionMethodName];
if (logger != null && logger.IsEnabled(LogLevel.Debug))
{
logger.LogDebug("The Action:{action} of controller:{type} is replaced by {newContorller}.{method}",
item.TargetControllerFullName,
actionMethodName,
descriptor.ControllerTypeInfo.FullName,
item.ActionMapping[actionMethodName]
);
}
}
}
}
}
}
}
return serviceProvider;
}
}
}