mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
// ==========================================================================
|
|
// NamedStringIdConverter.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Squidex.Infrastructure.Json
|
|
{
|
|
public sealed class NamedStringIdConverter : JsonClassConverter<NamedId<string>>
|
|
{
|
|
protected override void WriteValue(JsonWriter writer, NamedId<string> value, JsonSerializer serializer)
|
|
{
|
|
writer.WriteValue($"{value.Id},{value.Name}");
|
|
}
|
|
|
|
protected override NamedId<string> ReadValue(JsonReader reader, JsonSerializer serializer)
|
|
{
|
|
if (reader.TokenType != JsonToken.String)
|
|
{
|
|
throw new JsonException($"Expected String, but got {reader.TokenType}.");
|
|
}
|
|
|
|
var parts = reader.Value.ToString().Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
if (parts.Length < 2)
|
|
{
|
|
throw new JsonException("Named id must have more than 2 parts divided by colon.");
|
|
}
|
|
|
|
return new NamedId<string>(parts[0], string.Join(",", parts.Skip(1)));
|
|
}
|
|
}
|
|
}
|
|
|