blob: 61193966ab3853caaab01d492221bf8e44fa2a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
using System.Diagnostics;
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.Extensions.Options;
namespace CrupestApi.Commons.Crud;
// TODO: Register this.
/// <summary>
/// Contains all you need to do with json.
/// </summary>
public class EntityJsonHelper<TEntity> where TEntity : class
{
private readonly TableInfo _table;
private readonly JsonSerializerOptions _jsonSerializerOptions;
public EntityJsonHelper(TableInfoFactory tableInfoFactory)
{
_table = tableInfoFactory.Get(typeof(TEntity));
_jsonSerializerOptions = new JsonSerializerOptions();
_jsonSerializerOptions.AllowTrailingCommas = true;
_jsonSerializerOptions.PropertyNameCaseInsensitive = true;
_jsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
foreach (var type in _table.Columns.Select(c => c.ColumnType))
{
if (type.JsonConverter is not null)
{
_jsonSerializerOptions.Converters.Add(type.JsonConverter);
}
}
}
public virtual Dictionary<string, object?> ConvertEntityToDictionary(object? entity)
{
Debug.Assert(entity is null || entity is TEntity);
var result = new Dictionary<string, object?>();
foreach (var column in _table.PropertyColumns)
{
var propertyInfo = column.PropertyInfo;
var value = propertyInfo!.GetValue(entity);
result[column.ColumnName] = 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);
}
public virtual TEntity ConvertDictionaryToEntityForInsert(IReadOnlyDictionary<string, object?> dictionary)
{
var result = Activator.CreateInstance<TEntity>()!;
foreach (var column in _table.PropertyColumns)
{
var propertyInfo = column.PropertyInfo!;
var value = dictionary.GetValueOrDefault(column.ColumnName);
if (column.IsGenerated)
{
if (value is not null)
{
throw new UserException($"{propertyInfo.Name} is auto generated. Don't specify it.");
}
}
if (value is null)
{
if (column.IsNotNull && !column.CanBeGenerated)
{
throw new UserException($"{propertyInfo.Name} can't be null.");
}
propertyInfo.SetValue(result, null);
}
else
{
// Check type
var columnType = column.ColumnType;
if (columnType.ClrType.IsAssignableFrom(value.GetType()))
propertyInfo.SetValue(result, value);
else
throw new UserException($"{propertyInfo.Name} is of wrong type.");
}
}
return result;
}
public TEntity ConvertJsonToEntityForInsert(string json)
{
var dictionary = JsonSerializer.Deserialize<Dictionary<string, object?>>(json, _jsonSerializerOptions)!;
return ConvertDictionaryToEntityForInsert(dictionary);
}
}
|