Lidarr/src/NzbDrone.Api/ClientSchema/SchemaBuilder.cs

157 lines
5.4 KiB
C#
Raw Normal View History

2013-06-13 07:20:33 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json.Linq;
2013-09-22 23:40:36 +00:00
using NzbDrone.Common.EnsureThat;
using NzbDrone.Common.Extensions;
2013-05-01 06:43:14 +00:00
using NzbDrone.Common.Reflection;
2013-05-03 05:24:52 +00:00
using NzbDrone.Core.Annotations;
2013-05-01 06:43:14 +00:00
namespace NzbDrone.Api.ClientSchema
{
public static class SchemaBuilder
{
2013-09-22 23:40:36 +00:00
public static List<Field> ToSchema(object model)
2013-05-01 06:43:14 +00:00
{
2013-11-30 23:53:07 +00:00
Ensure.That(model, () => model).IsNotNull();
2013-09-22 23:40:36 +00:00
2013-05-01 06:43:14 +00:00
var properties = model.GetType().GetSimpleProperties();
var result = new List<Field>(properties.Count);
foreach (var propertyInfo in properties)
{
2013-05-03 05:24:52 +00:00
var fieldAttribute = propertyInfo.GetAttribute<FieldDefinitionAttribute>(false);
2013-05-01 06:43:14 +00:00
2013-05-03 05:24:52 +00:00
if (fieldAttribute != null)
{
2013-05-01 06:43:14 +00:00
var field = new Field
{
Name = propertyInfo.Name,
Label = fieldAttribute.Label,
HelpText = fieldAttribute.HelpText,
HelpLink = fieldAttribute.HelpLink,
Order = fieldAttribute.Order,
Advanced = fieldAttribute.Advanced,
Type = fieldAttribute.Type.ToString().ToLowerInvariant()
};
2013-05-01 06:43:14 +00:00
2013-05-03 05:24:52 +00:00
var value = propertyInfo.GetValue(model, null);
if (value != null)
{
field.Value = value;
2013-05-03 05:24:52 +00:00
}
2013-06-13 07:20:33 +00:00
if (fieldAttribute.Type == FieldType.Select)
{
field.SelectOptions = GetSelectOptions(fieldAttribute.SelectOptions);
}
2013-05-03 05:24:52 +00:00
result.Add(field);
}
2013-05-01 06:43:14 +00:00
}
return result.OrderBy(r => r.Order).ToList();
2013-05-01 06:43:14 +00:00
}
2013-06-13 07:20:33 +00:00
public static object ReadFromSchema(List<Field> fields, Type targetType)
2013-09-22 23:40:36 +00:00
{
2013-11-30 23:53:07 +00:00
Ensure.That(targetType, () => targetType).IsNotNull();
2013-09-22 23:40:36 +00:00
var properties = targetType.GetSimpleProperties();
var target = Activator.CreateInstance(targetType);
foreach (var propertyInfo in properties)
{
var fieldAttribute = propertyInfo.GetAttribute<FieldDefinitionAttribute>(false);
if (fieldAttribute != null)
{
var field = fields.Find(f => f.Name == propertyInfo.Name);
if (propertyInfo.PropertyType == typeof(int))
2013-09-22 23:40:36 +00:00
{
2013-12-12 00:41:58 +00:00
var value = Convert.ToInt32(field.Value);
propertyInfo.SetValue(target, value, null);
}
else if (propertyInfo.PropertyType == typeof(long))
2013-12-12 00:41:58 +00:00
{
var value = Convert.ToInt64(field.Value);
propertyInfo.SetValue(target, value, null);
2013-09-22 23:40:36 +00:00
}
2015-10-03 19:19:25 +00:00
else if (propertyInfo.PropertyType == typeof(int?))
2013-09-22 23:40:36 +00:00
{
2013-12-12 00:41:58 +00:00
var value = field.Value.ToString().ParseInt32();
propertyInfo.SetValue(target, value, null);
}
else if (propertyInfo.PropertyType == typeof(Nullable<Int64>))
{
var value = field.Value.ToString().ParseInt64();
propertyInfo.SetValue(target, value, null);
2013-09-22 23:40:36 +00:00
}
else if (propertyInfo.PropertyType == typeof(IEnumerable<int>))
{
IEnumerable<int> value;
if (field.Value.GetType() == typeof(JArray))
{
value = ((JArray)field.Value).Select(s => s.Value<int>());
}
else
{
value = field.Value.ToString().Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(s => Convert.ToInt32(s));
}
propertyInfo.SetValue(target, value, null);
}
else if (propertyInfo.PropertyType == typeof(IEnumerable<string>))
{
IEnumerable<string> value;
if (field.Value.GetType() == typeof(JArray))
{
value = ((JArray)field.Value).Select(s => s.Value<string>());
}
else
{
value = field.Value.ToString().Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
}
propertyInfo.SetValue(target, value, null);
}
2013-09-22 23:40:36 +00:00
else
{
propertyInfo.SetValue(target, field.Value, null);
}
}
}
return target;
}
public static T ReadFromSchema<T>(List<Field> fields)
2013-09-22 23:40:36 +00:00
{
return (T)ReadFromSchema(fields, typeof(T));
2013-09-22 23:40:36 +00:00
}
2013-06-13 07:20:33 +00:00
private static List<SelectOption> GetSelectOptions(Type selectOptions)
{
var options = from Enum e in Enum.GetValues(selectOptions)
2013-09-22 23:40:36 +00:00
select new SelectOption { Value = Convert.ToInt32(e), Name = e.ToString() };
2013-06-13 07:20:33 +00:00
return options.OrderBy(o => o.Value).ToList();
}
2013-05-01 06:43:14 +00:00
}
}