2013-05-29 02:49:17 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-07-19 03:50:12 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-05-29 00:44:29 +00:00
|
|
|
|
using NzbDrone.Common.Reflection;
|
|
|
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.ClientSchema
|
|
|
|
|
{
|
|
|
|
|
public static class SchemaDeserializer
|
|
|
|
|
{
|
2013-05-29 06:24:45 +00:00
|
|
|
|
public static T DeserializeSchema<T>(T model, List<Field> fields)
|
2013-05-29 00:44:29 +00:00
|
|
|
|
{
|
|
|
|
|
var properties = model.GetType().GetSimpleProperties();
|
|
|
|
|
|
|
|
|
|
foreach (var propertyInfo in properties)
|
|
|
|
|
{
|
|
|
|
|
var fieldAttribute = propertyInfo.GetAttribute<FieldDefinitionAttribute>(false);
|
|
|
|
|
|
|
|
|
|
if (fieldAttribute != null)
|
|
|
|
|
{
|
|
|
|
|
var field = fields.Find(f => f.Name == propertyInfo.Name);
|
2013-05-29 02:49:17 +00:00
|
|
|
|
|
|
|
|
|
if (propertyInfo.PropertyType == typeof (Int32))
|
|
|
|
|
{
|
|
|
|
|
var intValue = Convert.ToInt32(field.Value);
|
|
|
|
|
propertyInfo.SetValue(model, intValue, null);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-01 00:22:47 +00:00
|
|
|
|
else if (propertyInfo.PropertyType == typeof(Nullable<Int32>))
|
|
|
|
|
{
|
|
|
|
|
var intValue = field.Value.ToString().ParseInt32();
|
|
|
|
|
propertyInfo.SetValue(model, intValue, null);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-29 02:49:17 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
propertyInfo.SetValue(model, field.Value, null);
|
|
|
|
|
}
|
2013-05-29 00:44:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return model;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|