using System.Diagnostics;
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.Extensions.Options;
namespace CrupestApi.Commons.Crud;
// TODO: Register this.
///
/// Contains all you need to do with json.
///
public class EntityJsonHelper where TEntity : class
{
private readonly TableInfo _table;
private readonly IOptionsMonitor _jsonSerializerOptions;
public EntityJsonHelper(TableInfoFactory tableInfoFactory, IOptionsMonitor jsonSerializerOptions)
{
_table = tableInfoFactory.Get(typeof(TEntity));
_jsonSerializerOptions = jsonSerializerOptions;
}
public virtual Dictionary ConvertEntityToDictionary(object? entity, bool includeNonColumnProperties = false)
{
Debug.Assert(entity is null || entity is TEntity);
var result = new Dictionary();
foreach (var propertyInfo in _table.ColumnProperties)
{
var value = propertyInfo.GetValue(entity);
result[propertyInfo.Name] = value;
}
if (includeNonColumnProperties)
{
foreach (var propertyInfo in _table.NonColumnProperties)
{
var value = propertyInfo.GetValue(entity);
result[propertyInfo.Name] = value;
}
}
return result;
}
public virtual string ConvertEntityToJson(object? entity)
{
Debug.Assert(entity is null || entity is TEntity);
var dictionary = ConvertEntityToDictionary(entity);
return JsonSerializer.Serialize(dictionary, _jsonSerializerOptions.CurrentValue);
}
public virtual IInsertClause ConvertJsonElementToInsertClauses(JsonElement rootElement)
{
var insertClause = InsertClause.Create();
if (rootElement.ValueKind != JsonValueKind.Object)
{
throw new UserException("The root element must be an object.");
}
foreach (var column in _table.PropertyColumns)
{
object? value = null;
if (rootElement.TryGetProperty(column.ColumnName, out var propertyElement))
{
value = propertyElement.ValueKind switch
{
JsonValueKind.Null or JsonValueKind.Undefined => null,
JsonValueKind.Number => propertyElement.GetDouble(),
JsonValueKind.True => true,
JsonValueKind.False => false,
JsonValueKind.String => propertyElement.GetString(),
_ => throw new Exception($"Bad json value of property {column.ColumnName}.")
};
}
if (column.IsGenerated && value is not null)
{
throw new UserException($"The property {column.ColumnName} is generated. You cannot specify its value.");
}
if (column.IsNotNull && !column.CanBeGenerated && value is null)
{
throw new UserException($"The property {column.ColumnName} can't be null or generated. But you specify a null value.");
}
insertClause.Add(column.ColumnName, value);
}
return insertClause;
}
public IInsertClause ConvertJsonToEntityForInsert(string json)
{
var document = JsonSerializer.Deserialize(json, _jsonSerializerOptions.CurrentValue)!;
return ConvertJsonElementToInsertClauses(document.RootElement);
}
}