You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/src/NzbDrone.Core/Indexers/NewznabCategoryFieldConvert...

41 lines
1.2 KiB

using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Indexers
{
public class NewznabCategoryFieldConverter : ISelectOptionsConverter
{
public List<SelectOption> GetSelectOptions()
{
var result = new List<SelectOption>();
foreach (var category in NewznabStandardCategory.ParentCats)
{
result.Add(new SelectOption
{
Value = category.Id,
Name = category.Name,
Hint = $"({category.Id})"
});
if (category.SubCategories != null)
{
foreach (var subcat in category.SubCategories.OrderBy(cat => cat.Id))
{
result.Add(new SelectOption
{
Value = subcat.Id,
Name = subcat.Name,
Hint = $"({subcat.Id})",
ParentValue = category.Id
});
}
}
}
return result;
}
}
}