-
Notifications
You must be signed in to change notification settings - Fork 239
New rule S6968 for C#: Actions that return a value should be annotated with ProducesResponseTypeAttribute containing the return type #9185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
cb3934b
Add scaffolding
costin-zaharia-sonarsource 3829f1f
Add compliant test cases
costin-zaharia-sonarsource cb543b9
Add registrations
costin-zaharia-sonarsource 9e152ca
Add implementation draft
costin-zaharia-sonarsource e48e8b6
Move the rest of the tests
costin-zaharia-sonarsource b8b9798
Add support for ApiConventionMethodAttribute
costin-zaharia-sonarsource b6477ec
Add test case with Type as property
costin-zaharia-sonarsource 94e7434
Add support for ApiExplorerSettings
costin-zaharia-sonarsource d57a96c
Add support for IActionResult success methods
costin-zaharia-sonarsource 2c737a3
Add support for Microsoft.AspNetCore.Http.Results
costin-zaharia-sonarsource f74b9da
Add support for ApiConventionType at assembly level
costin-zaharia-sonarsource a458ef3
Fix test issues
costin-zaharia-sonarsource ea17805
Implement secondary locations
costin-zaharia-sonarsource 1d899fd
Add IT
costin-zaharia-sonarsource 4e52058
Fix rebase problem
costin-zaharia-sonarsource d7672ff
Address review comments
costin-zaharia-sonarsource 57a3d19
Update rule count for C#
costin-zaharia-sonarsource File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...ts/Projects/ManuallyAddedNoncompliantIssues.CS/AspNetCore8/Controllers/S6968Controller.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| using AspNetCore8.Models; | ||
| using Microsoft.AspNetCore.Mvc; | ||
|
|
||
| namespace AspNetCore8.Controllers; | ||
|
|
||
| [ApiController] | ||
| public class S6968Controller : ControllerBase | ||
| { | ||
| [HttpGet("foo")] | ||
| public IActionResult ReturnsOkWithValue() // Noncompliant | ||
| => Ok(new Foo()); // Secondary | ||
| } |
6 changes: 6 additions & 0 deletions
6
analyzers/its/Projects/ManuallyAddedNoncompliantIssues.CS/AspNetCore8/Models/Foo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| namespace AspNetCore8.Models; | ||
|
|
||
| public class Foo | ||
| { | ||
| public int Bar { get; set; } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
analyzers/its/expected/ManuallyAddedNoncompliantIssues.CS/S6934-AspNetCore8-net8.0.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "Issues": [ | ||
| { | ||
| "Id": "S6934", | ||
| "Message": "Specify the RouteAttribute when an HttpMethodAttribute or RouteAttribute is specified at an action level.", | ||
| "Uri": "https://github.com/SonarSource/sonar-dotnet/blob/master/analyzers/its/Projects/ManuallyAddedNoncompliantIssues.CS/AspNetCore8/Controllers/S6968Controller.cs#L7", | ||
| "Location": "Line 7 Position 14-29" | ||
| } | ||
| ] | ||
| } |
10 changes: 10 additions & 0 deletions
10
analyzers/its/expected/ManuallyAddedNoncompliantIssues.CS/S6968-AspNetCore8-net8.0.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "Issues": [ | ||
| { | ||
| "Id": "S6968", | ||
| "Message": "Annotate this method with ProducesResponseType containing the return type for successful responses.", | ||
| "Uri": "https://github.com/SonarSource/sonar-dotnet/blob/master/analyzers/its/Projects/ManuallyAddedNoncompliantIssues.CS/AspNetCore8/Controllers/S6968Controller.cs#L10", | ||
| "Location": "Line 10 Position 26-44" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| <p>In an <a href="https://learn.microsoft.com/en-us/aspnet/core">ASP.NET Core</a> <a href="https://en.wikipedia.org/wiki/Web_API">Web API</a>, | ||
| controller actions can optionally return a result value. If a controller action returns a value in the <a | ||
| href="https://en.wikipedia.org/wiki/Happy_path">happy path</a>, for example <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.controllerbase.ok#microsoft-aspnetcore-mvc-controllerbase-ok(system-object)">ControllerBase.Ok(Object)</a>, | ||
| annotating the action with one of the <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesresponsetypeattribute"><code>[ProducesResponseType]</code></a> | ||
| overloads that describe the type is recommended.</p> | ||
| <h2>Why is this an issue?</h2> | ||
| <p>If an ASP.NET Core Web API uses <a href="https://swagger.io/">Swagger</a>, the API documentation will be generated based on the input/output types | ||
| of the controller actions, as well as the attributes annotating the actions. If an action returns <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.iactionresult">IActionResult</a> or <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iresult">IResult</a>, Swagger cannot infer the type of the response. From | ||
| the consumer’s perspective, this can be confusing and lead to unexpected results and bugs in the long run without the API provider’s awareness.</p> | ||
| <p>This rule raises an issue on a controller action when:</p> | ||
| <ul> | ||
| <li> The action returns a value in the happy path. This can be either: | ||
| <ul> | ||
| <li> <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200">200 OK</a> </li> | ||
| <li> <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201">201 Created</a> </li> | ||
| <li> <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202">202 Accepted</a> </li> | ||
| </ul> </li> | ||
| <li> There is no <code>[ProducesResponseType]</code> attribute containing the return type, either at controller or action level. </li> | ||
| <li> There is no <code>[SwaggerResponse]</code> attribute containing the return type, either at controller or action level. </li> | ||
| <li> The controller is annotated with the <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.apicontrollerattribute"><code>[ApiController]</code></a> attribute. | ||
| </li> | ||
| <li> The controller action returns either <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.iactionresult">IActionResult</a> or <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iresult">IResult</a>. </li> | ||
| <li> The application has enabled the <a | ||
| href="https://learn.microsoft.com/en-us/aspnet/core/tutorials/getting-started-with-swashbuckle#add-and-configure-swagger-middleware">Swagger | ||
| middleware</a>. </li> | ||
| </ul> | ||
| <h2>How to fix it</h2> | ||
| <p>There are multiple ways to fix this issue:</p> | ||
| <ul> | ||
| <li> Annotate the action with <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesresponsetypeattribute"><code>[ProducesResponseType]</code></a> | ||
| containing the return type. </li> | ||
| <li> Annotate the action with <a | ||
| href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/master/README.md#enrich-response-metadata">SwaggerResponse Class</a> containing | ||
| the return type. </li> | ||
| <li> Return <a href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.actionresult-1">ActionResult<TValue></a> instead of | ||
| <code>[IActionResult]</code> or <code>[IResult]</code>. </li> | ||
| <li> Return <a href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.httpresults.results-2">Results<TResult1, | ||
| TResult2></a> instead of <code>[IActionResult]</code> or <code>[IResult]</code>. </li> | ||
| </ul> | ||
| <h3>Code examples</h3> | ||
| <h4>Noncompliant code example</h4> | ||
| <pre data-diff-id="1" data-diff-type="noncompliant"> | ||
| [HttpGet("foo")] | ||
| // Noncompliant: Annotate this method with ProducesResponseType containing the return type for succesful responses. | ||
| public IActionResult MagicNumber() => Ok(42); | ||
| </pre> | ||
| <pre data-diff-id="2" data-diff-type="noncompliant"> | ||
| [HttpGet("foo")] | ||
| // Noncompliant: Use the ProducesResponseType overload containing the return type for succesful responses. | ||
| [ProducesResponseType(StatusCodes.Status200OK)] | ||
| public IActionResult MagicNumber() => Ok(42); | ||
| </pre> | ||
| <h4>Compliant solution</h4> | ||
| <pre data-diff-id="1" data-diff-type="compliant"> | ||
| [HttpGet("foo")] | ||
| [ProducesResponseType<int>(StatusCodes.Status200OK)] | ||
| public IActionResult MagicNumber() => Ok(42); | ||
| </pre> | ||
| <pre data-diff-id="2" data-diff-type="compliant"> | ||
| [HttpGet("foo")] | ||
| [ProducesResponseType(typeof(int), StatusCodes.Status200OK)] | ||
| public IActionResult MagicNumber() => Ok(42); | ||
| </pre> | ||
| <h2>Resources</h2> | ||
| <h3>Documentation</h3> | ||
| <ul> | ||
| <li> Wikipedia - <a href="https://en.wikipedia.org/wiki/Web_API">Web API</a> </li> | ||
| <li> Wikipedia - <a href="https://en.wikipedia.org/wiki/Happy_path">Happy path</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/aspnet/core">ASP.NET Core</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/aspnet/core/tutorials/getting-started-with-swashbuckle">Get started with | ||
| Swashbuckle and ASP.NET Core</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.apicontrollerattribute">ApiControllerAttribute | ||
| Class</a> </li> | ||
| <li> Microsoft Learn - <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesresponsetypeattribute">ProducesResponseTypeAttribute Class</a> | ||
| </li> | ||
| <li> Microsoft Learn - <a | ||
| href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesresponsetypeattribute-1">ProducesResponseTypeAttribute<T> | ||
| Class</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.actionresult-1">ActionResult<TValue> | ||
| Class</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.httpresults.results-2">Results<TResult1, | ||
| TResult2> Class</a> </li> | ||
| <li> Microsoft Learn - <a href="https://learn.microsoft.com/en-us/aspnet/core/web-api/action-return-types#httpresults-type">HttpResults type</a> | ||
| </li> | ||
| <li> GitHub - <a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/master/README.md#enrich-response-metadata">SwaggerResponse | ||
| Class</a> </li> | ||
| <li> SmartBear - <a href="https://swagger.io/">Swagger</a> </li> | ||
| </ul> | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "title": "Actions that return a value should be annotated with ProducesResponseTypeAttribute containing the return type", | ||
| "type": "CODE_SMELL", | ||
| "status": "ready", | ||
| "remediation": { | ||
| "func": "Constant\/Issue", | ||
| "constantCost": "5min" | ||
| }, | ||
| "tags": [ | ||
| "asp.net" | ||
| ], | ||
| "defaultSeverity": "Major", | ||
| "ruleSpecification": "RSPEC-6968", | ||
| "sqKey": "S6968", | ||
| "scope": "Main", | ||
| "quickfix": "partial", | ||
| "code": { | ||
| "impacts": { | ||
| "MAINTAINABILITY": "HIGH" | ||
| }, | ||
| "attribute": "CLEAR" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -319,6 +319,7 @@ | |
| "S6961", | ||
| "S6962", | ||
| "S6965", | ||
| "S6966" | ||
| "S6966", | ||
| "S6968" | ||
| ] | ||
| } | ||
156 changes: 156 additions & 0 deletions
156
analyzers/src/SonarAnalyzer.CSharp/Rules/SwaggerActionReturnType.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,156 @@ | ||
| /* | ||
| * SonarAnalyzer for .NET | ||
| * Copyright (C) 2015-2024 SonarSource SA | ||
| * mailto: contact AT sonarsource DOT com | ||
| * | ||
| * This program is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3 of the License, or (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public License | ||
| * along with this program; if not, write to the Free Software Foundation, | ||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
| */ | ||
|
|
||
| namespace SonarAnalyzer.Rules.CSharp; | ||
|
|
||
| [DiagnosticAnalyzer(LanguageNames.CSharp)] | ||
| public sealed class SwaggerActionReturnType : SonarDiagnosticAnalyzer | ||
| { | ||
| private const string DiagnosticId = "S6968"; | ||
| private const string MessageFormat = "{0}"; | ||
| private const string NoAttributeMessageFormat = "Annotate this method with ProducesResponseType containing the return type for successful responses."; | ||
| private const string NoTypeMessageFormat = "Use the ProducesResponseType overload containing the return type for successful responses."; | ||
|
|
||
| private static readonly DiagnosticDescriptor Rule = DescriptorFactory.Create(DiagnosticId, MessageFormat); | ||
| private static readonly ImmutableArray<KnownType> ControllerActionReturnTypes = ImmutableArray.Create( | ||
| KnownType.Microsoft_AspNetCore_Mvc_IActionResult, | ||
| KnownType.Microsoft_AspNetCore_Http_IResult); | ||
| private static HashSet<string> ActionResultMethods => | ||
| [ | ||
| "Ok", | ||
| "Created", | ||
| "CreatedAtAction", | ||
| "CreatedAtRoute", | ||
| "Accepted", | ||
| "AcceptedAtAction", | ||
| "AcceptedAtRoute" | ||
| ]; | ||
| private static HashSet<string> ResultMethods => | ||
| [ | ||
| "Ok", | ||
| "Created", | ||
| "CreatedAtRoute", | ||
| "Accepted", | ||
| "AcceptedAtRoute" | ||
| ]; | ||
|
|
||
| public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Rule); | ||
|
|
||
| protected override void Initialize(SonarAnalysisContext context) => | ||
| context.RegisterCompilationStartAction(compilationStart => | ||
| { | ||
| if (!compilationStart.Compilation.Assembly.HasAttribute(KnownType.Microsoft_AspNetCore_Mvc_ApiConventionTypeAttribute) | ||
| && compilationStart.Compilation.ReferencesAll(KnownAssembly.MicrosoftAspNetCoreMvcCore, KnownAssembly.SwashbuckleAspNetCoreSwagger)) | ||
| { | ||
| compilationStart.RegisterSymbolStartAction(symbolStart => | ||
| { | ||
| if (IsControllerCandidate(symbolStart.Symbol)) | ||
| { | ||
| symbolStart.RegisterSyntaxNodeAction(nodeContext => | ||
| { | ||
| var methodDeclaration = (MethodDeclarationSyntax)nodeContext.Node; | ||
| if (InvalidMethod(methodDeclaration, nodeContext) is { } method) | ||
| { | ||
| nodeContext.ReportIssue(Rule, methodDeclaration.Identifier, additionalLocations: method.ResponseInvocations, GetMessage(method.Symbol)); | ||
| } | ||
| }, SyntaxKind.MethodDeclaration); | ||
| } | ||
| }, SymbolKind.NamedType); | ||
| } | ||
| }); | ||
|
|
||
| private static InvalidMethodResult InvalidMethod(BaseMethodDeclarationSyntax methodDeclaration, SonarSyntaxNodeReportingContext nodeContext) | ||
| { | ||
| var responseInvocations = FindSuccessResponses(methodDeclaration, nodeContext.SemanticModel); | ||
| return responseInvocations.Length == 0 | ||
| || nodeContext.SemanticModel.GetDeclaredSymbol(methodDeclaration, nodeContext.Cancel) is not { } method | ||
| || !method.IsControllerMethod() | ||
| || !method.ReturnType.DerivesOrImplementsAny(ControllerActionReturnTypes) | ||
| || method.GetAttributesWithInherited().Any(x => x.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ApiConventionMethodAttribute) | ||
| || HasApiExplorerSettingsWithIgnoreApiTrue(x) | ||
| || HasProducesResponseTypeAttributeWithReturnType(x)) | ||
| ? null | ||
| : new InvalidMethodResult(method, responseInvocations); | ||
| } | ||
|
|
||
| private static SyntaxNode[] FindSuccessResponses(SyntaxNode node, SemanticModel model) | ||
| { | ||
| return ActionResultInvocations().Concat(ObjectCreationInvocations()).Concat(ResultMethodsInvocations()).ToArray(); | ||
|
|
||
| IEnumerable<SyntaxNode> ActionResultInvocations() => | ||
| node.DescendantNodes() | ||
| .OfType<InvocationExpressionSyntax>() | ||
| .Where(x => ActionResultMethods.Contains(x.GetName()) | ||
| && x.ArgumentList.Arguments.Count > 0 | ||
| && model.GetSymbolInfo(x.Expression).Symbol is { } symbol | ||
| && symbol.IsInType(KnownType.Microsoft_AspNetCore_Mvc_ControllerBase) | ||
| && symbol.GetParameters().Any(parameter => parameter.HasAttribute(KnownType.Microsoft_AspNetCore_Mvc_Infrastructure_ActionResultObjectValueAttribute))); | ||
|
|
||
| IEnumerable<SyntaxNode> ObjectCreationInvocations() => | ||
| node.DescendantNodes() | ||
| .OfType<ObjectCreationExpressionSyntax>() | ||
| .Where(x => x.GetName() == "ObjectResult" | ||
| && x.ArgumentList?.Arguments.Count > 0 | ||
| && model.GetSymbolInfo(x.Type).Symbol.GetSymbolType().Is(KnownType.Microsoft_AspNetCore_Mvc_ObjectResult)); | ||
|
|
||
| IEnumerable<SyntaxNode> ResultMethodsInvocations() => | ||
| node.DescendantNodes() | ||
| .OfType<InvocationExpressionSyntax>() | ||
| .Where(x => ResultMethods.Contains(x.GetName()) | ||
| && x.ArgumentList.Arguments.Count > 0 | ||
| && model.GetSymbolInfo(x).Symbol.IsInType(KnownType.Microsoft_AspNetCore_Http_Results)); | ||
| } | ||
|
|
||
| private static bool IsControllerCandidate(ISymbol symbol) | ||
| { | ||
| var hasApiControllerAttribute = false; | ||
| foreach (var attribute in symbol.GetAttributesWithInherited()) | ||
| { | ||
| if (attribute.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ApiConventionTypeAttribute) | ||
| || HasProducesResponseTypeAttributeWithReturnType(attribute) | ||
| || HasApiExplorerSettingsWithIgnoreApiTrue(attribute)) | ||
gregory-paidis-sonarsource marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| { | ||
| return false; | ||
| } | ||
| hasApiControllerAttribute = hasApiControllerAttribute || attribute.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ApiControllerAttribute); | ||
| } | ||
| return hasApiControllerAttribute; | ||
| } | ||
|
|
||
| private static string GetMessage(ISymbol symbol) => | ||
| symbol.GetAttributesWithInherited().Any(x => x.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ProducesResponseTypeAttribute)) | ||
| ? NoTypeMessageFormat | ||
| : NoAttributeMessageFormat; | ||
|
|
||
| private static bool HasProducesResponseTypeAttributeWithReturnType(AttributeData attribute) => | ||
| attribute.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ProducesResponseTypeAttribute_T) | ||
| || (attribute.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ProducesResponseTypeAttribute) | ||
| && ContainsReturnType(attribute)); | ||
|
|
||
| private static bool HasApiExplorerSettingsWithIgnoreApiTrue(AttributeData attribute) => | ||
| attribute.AttributeClass.DerivesFrom(KnownType.Microsoft_AspNetCore_Mvc_ApiExplorerSettingsAttribute) | ||
| && attribute.NamedArguments.FirstOrDefault(x => x.Key == "IgnoreApi").Value.Value is true; | ||
|
|
||
| private static bool ContainsReturnType(AttributeData attribute) => | ||
| !attribute.ConstructorArguments.FirstOrDefault(x => x.Type.Is(KnownType.System_Type)).IsNull | ||
| || attribute.NamedArguments.FirstOrDefault(x => x.Key == "Type").Value.Value is not null; | ||
|
|
||
| private sealed record InvalidMethodResult(IMethodSymbol Symbol, SyntaxNode[] ResponseInvocations); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.