65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using MediaBrowser.Common.Json.Converters;
|
|
|
|
namespace MediaBrowser.Common.Json
|
|
{
|
|
/// <summary>
|
|
/// Helper class for having compatible JSON throughout the codebase.
|
|
/// </summary>
|
|
public static class JsonDefaults
|
|
{
|
|
/// <summary>
|
|
/// Gets the default <see cref="JsonSerializerOptions" /> options.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// When changing these options, update
|
|
/// Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
|
|
/// -> AddJellyfinApi
|
|
/// -> AddJsonOptions
|
|
/// </remarks>
|
|
/// <returns>The default <see cref="JsonSerializerOptions" /> options.</returns>
|
|
public static JsonSerializerOptions GetOptions()
|
|
{
|
|
var options = new JsonSerializerOptions
|
|
{
|
|
ReadCommentHandling = JsonCommentHandling.Disallow,
|
|
WriteIndented = false
|
|
};
|
|
|
|
options.Converters.Add(new JsonGuidConverter());
|
|
options.Converters.Add(new JsonStringEnumConverter());
|
|
options.Converters.Add(new JsonNonStringKeyDictionaryConverterFactory());
|
|
options.Converters.Add(new JsonInt64Converter());
|
|
|
|
return options;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets CamelCase json options.
|
|
/// </summary>
|
|
public static JsonSerializerOptions CamelCase
|
|
{
|
|
get
|
|
{
|
|
var options = GetOptions();
|
|
options.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
|
|
return options;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets PascalCase json options.
|
|
/// </summary>
|
|
public static JsonSerializerOptions PascalCase
|
|
{
|
|
get
|
|
{
|
|
var options = GetOptions();
|
|
options.PropertyNamingPolicy = null;
|
|
return options;
|
|
}
|
|
}
|
|
}
|
|
}
|