@@ -13,10 +13,7 @@ public class ServerApiGenerator : IServerApiGenerator
13
13
private readonly string routeBase ;
14
14
private readonly string codeGeneratorContentHeader ;
15
15
private readonly AttributeParameters codeGeneratorAttribute ;
16
- private readonly bool useProblemDetailsAsDefaultResponseBody ;
17
- private readonly bool usePartialClassForContracts ;
18
- private readonly bool usePartialClassForEndpoints ;
19
- private readonly bool includeDeprecated ;
16
+ private readonly GeneratorSettings settings ;
20
17
21
18
public ServerApiGenerator (
22
19
ILoggerFactory loggerFactory ,
@@ -27,10 +24,7 @@ public ServerApiGenerator(
27
24
OpenApiDocument openApiDocument ,
28
25
IList < ApiOperation > operationSchemaMappings ,
29
26
string routeBase ,
30
- bool useProblemDetailsAsDefaultResponseBody ,
31
- bool usePartialClassForContracts ,
32
- bool usePartialClassForEndpoints ,
33
- bool includeDeprecated )
27
+ GeneratorSettings generatorSettings )
34
28
{
35
29
ArgumentNullException . ThrowIfNull ( loggerFactory ) ;
36
30
ArgumentNullException . ThrowIfNull ( nugetPackageReferenceProvider ) ;
@@ -39,6 +33,7 @@ public ServerApiGenerator(
39
33
ArgumentNullException . ThrowIfNull ( projectPath ) ;
40
34
ArgumentNullException . ThrowIfNull ( openApiDocument ) ;
41
35
ArgumentNullException . ThrowIfNull ( routeBase ) ;
36
+ ArgumentNullException . ThrowIfNull ( generatorSettings ) ;
42
37
43
38
logger = loggerFactory . CreateLogger < ServerApiGenerator > ( ) ;
44
39
this . nugetPackageReferenceProvider = nugetPackageReferenceProvider ;
@@ -48,10 +43,7 @@ public ServerApiGenerator(
48
43
this . openApiDocument = openApiDocument ;
49
44
this . operationSchemaMappings = operationSchemaMappings ;
50
45
this . routeBase = routeBase ;
51
- this . useProblemDetailsAsDefaultResponseBody = useProblemDetailsAsDefaultResponseBody ;
52
- this . usePartialClassForContracts = usePartialClassForContracts ;
53
- this . usePartialClassForEndpoints = usePartialClassForEndpoints ;
54
- this . includeDeprecated = includeDeprecated ;
46
+ settings = generatorSettings ;
55
47
56
48
codeGeneratorContentHeader = GeneratedCodeHeaderGeneratorFactory
57
49
. Create ( apiGeneratorVersion )
@@ -178,7 +170,7 @@ public void GenerateParameters()
178
170
179
171
foreach ( var openApiOperation in openApiPath . Value . Operations )
180
172
{
181
- if ( openApiOperation . Value . Deprecated && ! includeDeprecated )
173
+ if ( openApiOperation . Value . Deprecated && ! settings . IncludeDeprecatedOperations )
182
174
{
183
175
continue ;
184
176
}
@@ -222,7 +214,7 @@ public void GenerateResults()
222
214
223
215
foreach ( var openApiOperation in openApiPath . Value . Operations )
224
216
{
225
- if ( openApiOperation . Value . Deprecated && ! includeDeprecated )
217
+ if ( openApiOperation . Value . Deprecated && ! settings . IncludeDeprecatedOperations )
226
218
{
227
219
continue ;
228
220
}
@@ -236,7 +228,7 @@ public void GenerateResults()
236
228
new GeneratedCodeAttributeGenerator ( new GeneratedCodeGeneratorParameters ( apiGeneratorVersion ) ) ,
237
229
new CodeDocumentationTagsGenerator ( ) ,
238
230
resultParameters ,
239
- useProblemDetailsAsDefaultResponseBody ) ;
231
+ settings . UseProblemDetailsAsDefaultResponseBody ) ;
240
232
241
233
var content = contentGenerator . Generate ( ) ;
242
234
@@ -260,7 +252,7 @@ public void GenerateInterfaces()
260
252
261
253
foreach ( var openApiOperation in openApiPath . Value . Operations )
262
254
{
263
- if ( openApiOperation . Value . Deprecated && ! includeDeprecated )
255
+ if ( openApiOperation . Value . Deprecated && ! settings . IncludeDeprecatedOperations )
264
256
{
265
257
continue ;
266
258
}
@@ -302,14 +294,14 @@ public void GenerateEndpoints()
302
294
GetRouteByApiGroupName ( apiGroupName ) ,
303
295
ContentGeneratorConstants . EndpointDefinition ,
304
296
openApiDocument ,
305
- usePartialClassForEndpoints ) ;
297
+ settings . UsePartialClassForEndpoints ) ;
306
298
307
299
var contentGenerator = new ContentGenerators . ContentGeneratorServerEndpoints (
308
300
new GeneratedCodeHeaderGenerator ( new GeneratedCodeGeneratorParameters ( apiGeneratorVersion ) ) ,
309
301
new GeneratedCodeAttributeGenerator ( new GeneratedCodeGeneratorParameters ( apiGeneratorVersion ) ) ,
310
302
new CodeDocumentationTagsGenerator ( ) ,
311
303
endpointParameters ,
312
- useProblemDetailsAsDefaultResponseBody ) ;
304
+ settings . UseProblemDetailsAsDefaultResponseBody ) ;
313
305
314
306
var content = contentGenerator . Generate ( ) ;
315
307
@@ -343,7 +335,7 @@ public void MaintainGlobalUsings(
343
335
"Microsoft.AspNetCore.Mvc" ,
344
336
} ;
345
337
346
- if ( openApiDocument . IsUsingRequiredForSystemTextJsonSerializationAndSystemRuntimeSerialization ( includeDeprecated ) )
338
+ if ( openApiDocument . IsUsingRequiredForSystemTextJsonSerializationAndSystemRuntimeSerialization ( settings . IncludeDeprecatedOperations ) )
347
339
{
348
340
requiredUsings . Add ( "System.Runtime.Serialization" ) ;
349
341
requiredUsings . Add ( "System.Text.Json.Serialization" ) ;
@@ -354,7 +346,7 @@ public void MaintainGlobalUsings(
354
346
requiredUsings . Add ( "Atc.Rest.Results" ) ;
355
347
}
356
348
357
- if ( openApiDocument . IsUsingRequiredForMicrosoftAspNetCoreAuthorization ( includeDeprecated ) )
349
+ if ( openApiDocument . IsUsingRequiredForMicrosoftAspNetCoreAuthorization ( settings . IncludeDeprecatedOperations ) )
358
350
{
359
351
requiredUsings . Add ( "Microsoft.AspNetCore.Authorization" ) ;
360
352
}
@@ -443,8 +435,8 @@ private void GenerateModel(
443
435
codeGeneratorAttribute ,
444
436
modelName ,
445
437
apiSchemaModel ,
446
- usePartialClassForContracts ,
447
- includeDeprecated ) ;
438
+ settings . UsePartialClassForContracts ,
439
+ settings . IncludeDeprecatedOperations ) ;
448
440
449
441
var contentGeneratorRecord = new GenerateContentForRecords (
450
442
new CodeDocumentationTagsGenerator ( ) ,
0 commit comments