mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using System.Buffers;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Common.Json.Converters
|
|
{
|
|
/// <summary>
|
|
/// Converter to allow the serializer to read strings.
|
|
/// </summary>
|
|
public class JsonStringConverter : JsonConverter<string>
|
|
{
|
|
/// <inheritdoc />
|
|
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
{
|
|
return reader.TokenType switch
|
|
{
|
|
JsonTokenType.Null => null,
|
|
JsonTokenType.String => reader.GetString(),
|
|
_ => GetRawValue(reader)
|
|
};
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options)
|
|
{
|
|
writer.WriteStringValue(value);
|
|
}
|
|
|
|
private static string GetRawValue(Utf8JsonReader reader)
|
|
{
|
|
var utf8Bytes = reader.HasValueSequence
|
|
? reader.ValueSequence.ToArray()
|
|
: reader.ValueSpan;
|
|
return Encoding.UTF8.GetString(utf8Bytes);
|
|
}
|
|
}
|
|
} |