62 lines
2.4 KiB
C#
62 lines
2.4 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Reflection;
|
|
using Microsoft.AspNetCore.JsonPatch;
|
|
using Microsoft.AspNetCore.JsonPatch.Operations;
|
|
using Microsoft.AspNetCore.Mvc.ApiExplorer;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.Formatters.Json
|
|
{
|
|
/// <summary>
|
|
/// Implements a provider of <see cref="ApiDescription"/> to change parameters of
|
|
/// type <see cref="IJsonPatchDocument"/> to an array of <see cref="Operation"/>.
|
|
/// </summary>
|
|
public class JsonPatchOperationsArrayProvider : IApiDescriptionProvider
|
|
{
|
|
private readonly IModelMetadataProvider _modelMetadataProvider;
|
|
|
|
/// <summary>
|
|
/// Creates a new instance of <see cref="JsonPatchOperationsArrayProvider"/>.
|
|
/// </summary>
|
|
/// <param name="modelMetadataProvider">The <see cref="IModelMetadataProvider"/>.</param>
|
|
public JsonPatchOperationsArrayProvider(IModelMetadataProvider modelMetadataProvider)
|
|
{
|
|
_modelMetadataProvider = modelMetadataProvider;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
/// <remarks>
|
|
/// The order -999 ensures that this provider is executed right after the <c>Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider</c>.
|
|
/// </remarks>
|
|
public int Order => -999;
|
|
|
|
/// <inheritdoc />
|
|
public void OnProvidersExecuting(ApiDescriptionProviderContext context)
|
|
{
|
|
if (context == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(context));
|
|
}
|
|
|
|
foreach (var result in context.Results)
|
|
{
|
|
foreach (var parameterDescription in result.ParameterDescriptions)
|
|
{
|
|
if (typeof(IJsonPatchDocument).GetTypeInfo().IsAssignableFrom(parameterDescription.Type))
|
|
{
|
|
parameterDescription.Type = typeof(Operation[]);
|
|
parameterDescription.ModelMetadata = _modelMetadataProvider.GetMetadataForType(typeof(Operation[]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void OnProvidersExecuted(ApiDescriptionProviderContext context)
|
|
{
|
|
}
|
|
}
|
|
} |