2020-08-20 17:17:27 +00:00
|
|
|
using System.Net.Mime;
|
2020-05-21 14:44:15 +00:00
|
|
|
using MediaBrowser.Common.Json;
|
2020-04-20 00:10:59 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc.Formatters;
|
|
|
|
using Microsoft.Net.Http.Headers;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server.Formatters
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Pascal Case Json Profile Formatter.
|
|
|
|
/// </summary>
|
|
|
|
public class PascalCaseJsonProfileFormatter : SystemTextJsonOutputFormatter
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="PascalCaseJsonProfileFormatter"/> class.
|
|
|
|
/// </summary>
|
2021-03-09 04:57:38 +00:00
|
|
|
public PascalCaseJsonProfileFormatter() : base(JsonDefaults.PascalCaseOptions)
|
2020-04-20 00:10:59 +00:00
|
|
|
{
|
|
|
|
SupportedMediaTypes.Clear();
|
|
|
|
// Add application/json for default formatter
|
2020-08-20 17:17:27 +00:00
|
|
|
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json));
|
2020-09-03 18:15:24 +00:00
|
|
|
SupportedMediaTypes.Add(MediaTypeHeaderValue.Parse(JsonDefaults.PascalCaseMediaType));
|
2020-04-20 00:10:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|