OpenAPI.NET.OData/src/Microsoft.OpenApi.OData.Reader/Operation/RefDeleteOperationHandler.cs

112 lines
3.7 KiB
C#

// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
// ------------------------------------------------------------
using System.Linq;
using Microsoft.OData.Edm;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.OData.Common;
using Microsoft.OpenApi.OData.Generator;
namespace Microsoft.OpenApi.OData.Operation
{
/// <summary>
/// Delete a navigation property ref for a navigation source.
/// </summary>
internal class RefDeleteOperationHandler : NavigationPropertyOperationHandler
{
/// <inheritdoc/>
public override OperationType OperationType => OperationType.Delete;
/// <inheritdoc/>
protected override void SetBasicInfo(OpenApiOperation operation)
{
// Summary
operation.Summary = "Delete ref of navigation property " + NavigationProperty.Name + " for " + NavigationSource.Name;
// OperationId
if (Context.Settings.EnableOperationId)
{
string prefix = "DeleteRef";
operation.OperationId = GetOperationId(prefix);
}
base.SetBasicInfo(operation);
}
/// <inheritdoc/>
protected override void SetParameters(OpenApiOperation operation)
{
base.SetParameters(operation);
operation.Parameters.Add(new OpenApiParameter
{
Name = "If-Match",
In = ParameterLocation.Header,
Description = "ETag",
Schema = new OpenApiSchema
{
Type = "string"
}
});
// for collection, we should have @id in query
if (NavigationProperty.TargetMultiplicity() == EdmMultiplicity.Many)
{
operation.Parameters.Add(new OpenApiParameter
{
Name = "@id",
In = ParameterLocation.Query,
Description = "Delete Uri",
Schema = new OpenApiSchema
{
Type = "string"
}
});
}
}
/// <inheritdoc/>
protected override void SetSecurity(OpenApiOperation operation)
{
if (Restriction == null || Restriction.DeleteRestrictions == null)
{
return;
}
operation.Security = Context.CreateSecurityRequirements(Restriction.DeleteRestrictions.Permissions).ToList();
}
/// <inheritdoc/>
protected override void SetResponses(OpenApiOperation operation)
{
operation.Responses = new OpenApiResponses
{
{ Constants.StatusCode204, Constants.StatusCode204.GetResponse() },
{ Constants.StatusCodeDefault, Constants.StatusCodeDefault.GetResponse() }
};
base.SetResponses(operation);
}
protected override void AppendCustomParameters(OpenApiOperation operation)
{
if (Restriction == null || Restriction.DeleteRestrictions == null)
{
return;
}
if (Restriction.DeleteRestrictions.CustomHeaders != null)
{
AppendCustomParameters(operation, Restriction.DeleteRestrictions.CustomHeaders, ParameterLocation.Header);
}
if (Restriction.DeleteRestrictions.CustomQueryOptions != null)
{
AppendCustomParameters(operation, Restriction.DeleteRestrictions.CustomQueryOptions, ParameterLocation.Query);
}
}
}
}