mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
|
using System.IO;
|
||
|
using Newtonsoft.Json;
|
||
|
using Newtonsoft.Json.Serialization;
|
||
|
|
||
|
namespace NzbDrone.Common
|
||
|
{
|
||
|
public interface IJsonSerializer
|
||
|
{
|
||
|
T Deserialize<T>(string json) where T : class, new();
|
||
|
string Serialize(object obj);
|
||
|
void Serialize<TModel>(TModel model, Stream outputStream);
|
||
|
}
|
||
|
|
||
|
public class JsonSerializer : IJsonSerializer
|
||
|
{
|
||
|
private readonly Newtonsoft.Json.JsonSerializer _jsonNetSerializer;
|
||
|
|
||
|
public JsonSerializer()
|
||
|
{
|
||
|
var setting = new JsonSerializerSettings
|
||
|
{
|
||
|
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
|
||
|
NullValueHandling = NullValueHandling.Ignore,
|
||
|
Formatting = Formatting.Indented,
|
||
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate
|
||
|
};
|
||
|
|
||
|
_jsonNetSerializer = new Newtonsoft.Json.JsonSerializer()
|
||
|
{
|
||
|
DateTimeZoneHandling = setting.DateTimeZoneHandling,
|
||
|
NullValueHandling = NullValueHandling.Ignore,
|
||
|
Formatting = Formatting.Indented,
|
||
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
|
||
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public T Deserialize<T>(string json) where T : class, new()
|
||
|
{
|
||
|
return JsonConvert.DeserializeObject<T>(json);
|
||
|
}
|
||
|
|
||
|
public string Serialize(object obj)
|
||
|
{
|
||
|
return JsonConvert.SerializeObject(obj);
|
||
|
}
|
||
|
|
||
|
|
||
|
public void Serialize<TModel>(TModel model, Stream outputStream)
|
||
|
{
|
||
|
var jsonTextWriter = new JsonTextWriter(new StreamWriter(outputStream));
|
||
|
_jsonNetSerializer.Serialize(jsonTextWriter, model);
|
||
|
jsonTextWriter.Flush();
|
||
|
}
|
||
|
}
|
||
|
}
|