jellyfin/MediaBrowser.Providers/Plugins/Omdb/JsonOmdbNotAvailableInt32Converter.cs

45 lines
1.3 KiB
C#
Raw Normal View History

using System;
2021-01-03 17:35:22 +01:00
using System.ComponentModel;
2020-12-24 16:10:30 +01:00
using System.Text.Json;
using System.Text.Json.Serialization;
namespace MediaBrowser.Providers.Plugins.Omdb
2020-12-24 16:10:30 +01:00
{
/// <summary>
/// Converts a string <c>N/A</c> to <c>string.Empty</c>.
/// </summary>
2021-01-04 15:52:44 +01:00
public class JsonOmdbNotAvailableInt32Converter : JsonConverter<int?>
2020-12-24 16:10:30 +01:00
{
/// <inheritdoc />
2021-01-04 15:52:44 +01:00
public override int? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
2020-12-24 16:10:30 +01:00
{
if (reader.TokenType == JsonTokenType.String)
{
var str = reader.GetString();
2021-02-14 15:11:46 +01:00
if (str == null || str.Equals("N/A", StringComparison.OrdinalIgnoreCase))
2020-12-24 16:10:30 +01:00
{
return null;
}
2021-01-03 17:35:22 +01:00
var converter = TypeDescriptor.GetConverter(typeToConvert);
2021-01-04 15:52:44 +01:00
return (int?)converter.ConvertFromString(str);
2020-12-24 16:10:30 +01:00
}
2021-02-23 14:14:02 +01:00
return JsonSerializer.Deserialize<int>(ref reader, options);
2020-12-24 16:10:30 +01:00
}
/// <inheritdoc />
2021-01-04 15:52:44 +01:00
public override void Write(Utf8JsonWriter writer, int? value, JsonSerializerOptions options)
2020-12-24 16:10:30 +01:00
{
2021-01-04 15:52:44 +01:00
if (value.HasValue)
{
writer.WriteNumberValue(value.Value);
}
else
{
writer.WriteNullValue();
}
2020-12-24 16:10:30 +01:00
}
}
}