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

132 lines
4.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.Collections.Generic;
using System.Linq;
using Microsoft.OData.Edm;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.OData.Common;
using Microsoft.OpenApi.OData.Edm;
using Microsoft.OpenApi.OData.Generator;
using Microsoft.OpenApi.OData.Vocabulary.Capabilities;
namespace Microsoft.OpenApi.OData.Operation
{
/// <summary>
/// Retrieve a Singleton
/// The Path Item Object for the singleton contains the keyword get with an Operation Object as value
/// that describes the capabilities for retrieving the singleton.
/// </summary>
internal class SingletonGetOperationHandler : SingletonOperationHandler
{
/// <inheritdoc/>
public override OperationType OperationType => OperationType.Get;
/// <inheritdoc/>
protected override void SetBasicInfo(OpenApiOperation operation)
{
// Summary, this summary maybe update in the base function call.
operation.Summary = "Get " + Singleton.Name;
// OperationId, it should be unique among all operations described in the API.
if (Context.Settings.EnableOperationId)
{
string typeName = Singleton.EntityType().Name;
operation.OperationId = Singleton.Name + "." + typeName + ".Get" + Utils.UpperFirstChar(typeName);
}
base.SetBasicInfo(operation);
}
/// <inheritdoc/>
protected override void SetParameters(OpenApiOperation operation)
{
base.SetParameters(operation);
// $select
OpenApiParameter parameter = Context.CreateSelect(Singleton);
if (parameter != null)
{
operation.Parameters.Add(parameter);
}
// $expand
parameter = Context.CreateExpand(Singleton);
if (parameter != null)
{
operation.Parameters.Add(parameter);
}
}
/// <inheritdoc/>
protected override void SetResponses(OpenApiOperation operation)
{
operation.Responses = new OpenApiResponses
{
{
Constants.StatusCode200,
new OpenApiResponse
{
Description = "Retrieved entity",
Content = new Dictionary<string, OpenApiMediaType>
{
{
Constants.ApplicationJsonMediaType,
new OpenApiMediaType
{
Schema = new OpenApiSchema
{
Reference = new OpenApiReference
{
Type = ReferenceType.Schema,
Id = Singleton.EntityType().FullName()
}
}
}
}
}
}
},
};
operation.Responses.Add(Constants.StatusCodeDefault, Constants.StatusCodeDefault.GetResponse());
base.SetResponses(operation);
}
/// <inheritdoc/>
protected override void SetSecurity(OpenApiOperation operation)
{
ReadRestrictionsType read = Context.Model.GetRecord<ReadRestrictionsType>(Singleton, CapabilitiesConstants.ReadRestrictions);
if (read == null || read.Permissions == null)
{
return;
}
operation.Security = Context.CreateSecurityRequirements(read.Permissions).ToList();
}
/// <inheritdoc/>
protected override void AppendCustomParameters(OpenApiOperation operation)
{
ReadRestrictionsType read = Context.Model.GetRecord<ReadRestrictionsType>(Singleton, CapabilitiesConstants.ReadRestrictions);
if (read == null)
{
return;
}
if (read.CustomHeaders != null)
{
AppendCustomParameters(operation, read.CustomHeaders, ParameterLocation.Header);
}
if (read.CustomQueryOptions != null)
{
AppendCustomParameters(operation, read.CustomQueryOptions, ParameterLocation.Query);
}
}
}
}