SoapEndpointExtensions.cs
12.6 KB
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
using System;
using System.ServiceModel.Channels;
using System.Text;
using System.Xml;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using SoapCore.Extensibility;
#if ASPNET_30
using Microsoft.AspNetCore.Routing;
#endif
namespace SoapCore
{
public static class SoapEndpointExtensions
{
public static IApplicationBuilder UseSoapEndpoint<T>(this IApplicationBuilder builder, string path, SoapEncoderOptions encoder, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return builder.UseSoapEndpoint(typeof(T), path, new[] { encoder }, serializer, caseInsensitivePath, soapModelBounder, null);
}
public static IApplicationBuilder UseSoapEndpoint(this IApplicationBuilder builder, Type type, string path, SoapEncoderOptions encoder, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null, Binding binding = null)
{
return builder.UseSoapEndpoint(type, path, new[] { encoder }, serializer, caseInsensitivePath, soapModelBounder, binding);
}
public static IApplicationBuilder UseSoapEndpoint<T>(this IApplicationBuilder builder, string path, Binding binding, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return builder.UseSoapEndpoint(typeof(T), path, binding, serializer, caseInsensitivePath, soapModelBounder);
}
public static IApplicationBuilder UseSoapEndpoint<T>(this IApplicationBuilder builder, string path, SoapEncoderOptions[] encoders, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return builder.UseSoapEndpoint(typeof(T), path, encoders, serializer, caseInsensitivePath, soapModelBounder, null);
}
public static IApplicationBuilder UseSoapEndpoint(this IApplicationBuilder builder, Type type, string path, SoapEncoderOptions[] encoderOptions, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null, Binding binding = null)
{
var options = new SoapOptions
{
Binding = binding,
CaseInsensitivePath = caseInsensitivePath,
EncoderOptions = encoderOptions,
Path = path,
ServiceType = type,
SoapSerializer = serializer,
SoapModelBounder = soapModelBounder,
};
return builder.UseMiddleware<SoapEndpointMiddleware>(options);
}
public static IApplicationBuilder UseSoapEndpoint(this IApplicationBuilder builder, Type type, string path, Binding binding, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
var elements = binding.CreateBindingElements().FindAll<MessageEncodingBindingElement>();
var encoderOptions = new SoapEncoderOptions[elements.Count];
for (var i = 0; i < encoderOptions.Length; i++)
{
var encoderOption = new SoapEncoderOptions
{
MessageVersion = elements[i].MessageVersion,
WriteEncoding = Encoding.UTF8,
ReaderQuotas = XmlDictionaryReaderQuotas.Max,
};
if (elements[i] is TextMessageEncodingBindingElement textMessageEncodingBindingElement)
{
encoderOption.WriteEncoding = textMessageEncodingBindingElement.WriteEncoding;
encoderOption.ReaderQuotas = textMessageEncodingBindingElement.ReaderQuotas;
}
encoderOptions[i] = encoderOption;
}
return builder.UseSoapEndpoint(type, path, encoderOptions, serializer, caseInsensitivePath, soapModelBounder, binding);
}
public static IApplicationBuilder UseSoapEndpoint<T>(this IApplicationBuilder builder, Action<SoapCoreOptions> options)
{
var opt = new SoapCoreOptions();
options(opt);
// Generate encoders from Binding when they are not provided
if (opt.EncoderOptions is null && opt.Binding != null)
{
var elements = opt.Binding.CreateBindingElements().FindAll<MessageEncodingBindingElement>();
var encoderOptions = new SoapEncoderOptions[elements.Count];
for (var i = 0; i < encoderOptions.Length; i++)
{
var encoderOption = new SoapEncoderOptions
{
MessageVersion = elements[i].MessageVersion,
WriteEncoding = Encoding.UTF8,
ReaderQuotas = XmlDictionaryReaderQuotas.Max,
};
if (elements[i] is TextMessageEncodingBindingElement textMessageEncodingBindingElement)
{
encoderOption.WriteEncoding = textMessageEncodingBindingElement.WriteEncoding;
encoderOption.ReaderQuotas = textMessageEncodingBindingElement.ReaderQuotas;
}
encoderOptions[i] = encoderOption;
}
opt.EncoderOptions = encoderOptions;
}
var soapOptions = new SoapOptions
{
ServiceType = typeof(T),
Path = opt.Path,
HttpsGetEnabled = opt.HttpsGetEnabled,
HttpGetEnabled = opt.HttpGetEnabled,
Binding = opt.Binding,
CaseInsensitivePath = opt.CaseInsensitivePath,
EncoderOptions = opt.EncoderOptions,
SoapModelBounder = opt.SoapModelBounder,
SoapSerializer = opt.SoapSerializer,
BufferThreshold = opt.BufferThreshold,
BufferLimit = opt.BufferLimit,
};
return builder.UseMiddleware<SoapEndpointMiddleware>(soapOptions);
}
#if ASPNET_30
public static IEndpointConventionBuilder UseSoapEndpoint<T>(this IEndpointRouteBuilder routes, string path, SoapEncoderOptions encoder, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return routes.UseSoapEndpoint(typeof(T), path, new[] { encoder }, serializer, caseInsensitivePath, soapModelBounder, null);
}
public static IEndpointConventionBuilder UseSoapEndpoint(this IEndpointRouteBuilder routes, Type type, string path, SoapEncoderOptions encoder, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null, Binding binding = null)
{
return routes.UseSoapEndpoint(type, path, new[] { encoder }, serializer, caseInsensitivePath, soapModelBounder, binding);
}
public static IEndpointConventionBuilder UseSoapEndpoint<T>(this IEndpointRouteBuilder routes, string path, Binding binding, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return routes.UseSoapEndpoint(typeof(T), path, binding, serializer, caseInsensitivePath, soapModelBounder);
}
public static IEndpointConventionBuilder UseSoapEndpoint<T>(this IEndpointRouteBuilder routes, string path, SoapEncoderOptions[] encoders, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
return routes.UseSoapEndpoint(typeof(T), path, encoders, serializer, caseInsensitivePath, soapModelBounder, null);
}
public static IEndpointConventionBuilder UseSoapEndpoint(this IEndpointRouteBuilder routes, Type type, string pattern, SoapEncoderOptions[] encoders, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null, Binding binding = null)
{
var options = new SoapOptions
{
Binding = binding,
CaseInsensitivePath = caseInsensitivePath,
EncoderOptions = encoders,
Path = pattern,
ServiceType = type,
SoapSerializer = serializer,
SoapModelBounder = soapModelBounder
};
var pipeline = routes
.CreateApplicationBuilder()
.UseMiddleware<SoapEndpointMiddleware>(options)
.Build();
return routes.Map(pattern, pipeline)
.WithDisplayName("SoapCore");
}
public static IEndpointConventionBuilder UseSoapEndpoint(this IEndpointRouteBuilder routes, Type type, string path, Binding binding, SoapSerializer serializer = SoapSerializer.DataContractSerializer, bool caseInsensitivePath = false, ISoapModelBounder soapModelBounder = null)
{
var elements = binding.CreateBindingElements().FindAll<MessageEncodingBindingElement>();
var encoderOptions = new SoapEncoderOptions[elements.Count];
for (var i = 0; i < encoderOptions.Length; i++)
{
var encoderOption = new SoapEncoderOptions
{
MessageVersion = elements[i].MessageVersion,
WriteEncoding = Encoding.UTF8,
ReaderQuotas = XmlDictionaryReaderQuotas.Max
};
if (elements[i] is TextMessageEncodingBindingElement textMessageEncodingBindingElement)
{
encoderOption.WriteEncoding = textMessageEncodingBindingElement.WriteEncoding;
encoderOption.ReaderQuotas = textMessageEncodingBindingElement.ReaderQuotas;
}
encoderOptions[i] = encoderOption;
}
return routes.UseSoapEndpoint(type, path, encoderOptions, serializer, caseInsensitivePath, soapModelBounder, binding);
}
public static IEndpointConventionBuilder UseSoapEndpoint<T>(this IEndpointRouteBuilder routes, Action<SoapCoreOptions> options)
{
var opt = new SoapCoreOptions();
options(opt);
// Generate encoders from Binding when they are not provided
if (opt.EncoderOptions is null && opt.Binding != null)
{
var elements = opt.Binding.CreateBindingElements().FindAll<MessageEncodingBindingElement>();
var encoderOptions = new SoapEncoderOptions[elements.Count];
for (var i = 0; i < encoderOptions.Length; i++)
{
var encoderOption = new SoapEncoderOptions
{
MessageVersion = elements[i].MessageVersion,
WriteEncoding = Encoding.UTF8,
ReaderQuotas = XmlDictionaryReaderQuotas.Max
};
if (elements[i] is TextMessageEncodingBindingElement textMessageEncodingBindingElement)
{
encoderOption.WriteEncoding = textMessageEncodingBindingElement.WriteEncoding;
encoderOption.ReaderQuotas = textMessageEncodingBindingElement.ReaderQuotas;
}
encoderOptions[i] = encoderOption;
}
opt.EncoderOptions = encoderOptions;
}
var soapOptions = new SoapOptions
{
ServiceType = typeof(T),
Path = opt.Path,
HttpsGetEnabled = opt.HttpsGetEnabled,
HttpGetEnabled = opt.HttpGetEnabled,
Binding = opt.Binding,
CaseInsensitivePath = opt.CaseInsensitivePath,
EncoderOptions = opt.EncoderOptions,
SoapModelBounder = opt.SoapModelBounder,
SoapSerializer = opt.SoapSerializer,
BufferLimit = opt.BufferLimit,
BufferThreshold = opt.BufferThreshold
};
var pipeline = routes
.CreateApplicationBuilder()
.UseMiddleware<SoapEndpointMiddleware>(soapOptions)
.Build();
return routes.Map(soapOptions.Path, pipeline)
.WithDisplayName("SoapCore");
}
#endif
public static IServiceCollection AddSoapCore(this IServiceCollection serviceCollection)
{
serviceCollection.TryAddSingleton<IOperationInvoker, DefaultOperationInvoker>();
serviceCollection.TryAddSingleton<IFaultExceptionTransformer, DefaultFaultExceptionTransformer>();
return serviceCollection;
}
public static IServiceCollection AddSoapExceptionTransformer(this IServiceCollection serviceCollection, Func<Exception, string> transformer)
{
serviceCollection.TryAddSingleton(new ExceptionTransformer(transformer));
return serviceCollection;
}
public static IServiceCollection AddSoapMessageInspector(this IServiceCollection serviceCollection, IMessageInspector messageInspector)
{
serviceCollection.TryAddSingleton(messageInspector);
return serviceCollection;
}
public static IServiceCollection AddSoapMessageInspector(this IServiceCollection serviceCollection, IMessageInspector2 messageInspector)
{
serviceCollection.AddSingleton(messageInspector);
return serviceCollection;
}
public static IServiceCollection AddSoapMessageFilter(this IServiceCollection serviceCollection, IMessageFilter messageFilter)
{
serviceCollection.TryAddSingleton(messageFilter);
return serviceCollection;
}
public static IServiceCollection AddSoapWsSecurityFilter(this IServiceCollection serviceCollection, string username, string password)
{
serviceCollection.AddSoapMessageFilter(new WsMessageFilter(username, password));
return serviceCollection;
}
public static IServiceCollection AddSoapModelBindingFilter(this IServiceCollection serviceCollection, IModelBindingFilter modelBindingFilter)
{
serviceCollection.TryAddSingleton(modelBindingFilter);
return serviceCollection;
}
public static IServiceCollection AddSoapServiceOperationTuner(this IServiceCollection serviceCollection, IServiceOperationTuner serviceOperationTuner)
{
serviceCollection.TryAddSingleton(serviceOperationTuner);
return serviceCollection;
}
}
}