mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Reflection;
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
namespace NzbDrone.Api.ClientSchema
|
|
{
|
|
public static class SchemaBuilder
|
|
{
|
|
public static List<Field> GenerateSchema(object model)
|
|
{
|
|
var properties = model.GetType().GetSimpleProperties();
|
|
|
|
var result = new List<Field>(properties.Count);
|
|
|
|
foreach (var propertyInfo in properties)
|
|
{
|
|
var fieldAttribute = propertyInfo.GetAttribute<FieldDefinitionAttribute>(false);
|
|
|
|
if (fieldAttribute != null)
|
|
{
|
|
|
|
var field = new Field()
|
|
{
|
|
Name = propertyInfo.Name,
|
|
Label = fieldAttribute.Label,
|
|
HelpText = fieldAttribute.HelpText,
|
|
HelpLink = fieldAttribute.HelpLink,
|
|
Order = fieldAttribute.Order,
|
|
Type = fieldAttribute.Type.ToString().ToLowerInvariant()
|
|
};
|
|
|
|
var value = propertyInfo.GetValue(model, null);
|
|
if (value != null)
|
|
{
|
|
field.Value = value;
|
|
}
|
|
|
|
if (fieldAttribute.Type == FieldType.Select)
|
|
{
|
|
field.SelectOptions = GetSelectOptions(fieldAttribute.SelectOptions);
|
|
}
|
|
|
|
result.Add(field);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<SelectOption> GetSelectOptions(Type selectOptions)
|
|
{
|
|
var options = from Enum e in Enum.GetValues(selectOptions)
|
|
select new SelectOption { Value = Convert.ToInt32(e), Name = e.ToString() };
|
|
|
|
return options.OrderBy(o => o.Value).ToList();
|
|
}
|
|
}
|
|
} |