| | 1 | | using System; |
| | 2 | | using System.Globalization; |
| | 3 | | using System.Text.Json; |
| | 4 | | using System.Text.Json.Serialization; |
| | 5 | |
|
| | 6 | | namespace Jellyfin.Extensions.Json.Converters |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// Converts a GUID object or value to/from JSON. |
| | 10 | | /// </summary> |
| | 11 | | public class JsonGuidConverter : JsonConverter<Guid> |
| | 12 | | { |
| | 13 | | /// <inheritdoc /> |
| | 14 | | public override Guid Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) |
| 127 | 15 | | => reader.IsNull() |
| 127 | 16 | | ? Guid.Empty |
| 127 | 17 | | : ReadInternal(ref reader); |
| | 18 | |
|
| | 19 | | // TODO: optimize by parsing the UTF8 bytes instead of converting to string first |
| | 20 | | internal static Guid ReadInternal(ref Utf8JsonReader reader) |
| 137 | 21 | | => Guid.Parse(reader.GetString()!); // null got handled higher up the call stack |
| | 22 | |
|
| | 23 | | /// <inheritdoc /> |
| | 24 | | public override void Write(Utf8JsonWriter writer, Guid value, JsonSerializerOptions options) |
| 86 | 25 | | => WriteInternal(writer, value); |
| | 26 | |
|
| | 27 | | internal static void WriteInternal(Utf8JsonWriter writer, Guid value) |
| 95 | 28 | | => writer.WriteStringValue(value.ToString("N", CultureInfo.InvariantCulture)); |
| | 29 | | } |
| | 30 | | } |