2011-02-11 01:22:29 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
2012-02-24 16:22:13 +00:00
|
|
|
|
using NzbDrone.Web.Helpers.Validation;
|
2011-02-11 01:22:29 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class IndexerSettingsModel
|
|
|
|
|
{
|
|
|
|
|
[DataType(DataType.Text)]
|
2012-07-30 21:21:05 +00:00
|
|
|
|
[DisplayName("User ID")]
|
2011-07-01 20:33:03 +00:00
|
|
|
|
[Description("User ID for NZBsRus")]
|
2011-02-15 01:20:17 +00:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-07-30 21:21:05 +00:00
|
|
|
|
[RequiredIf("NzbsRUsEnabled", true, ErrorMessage = "User ID Required when NzbsRus is enabled")]
|
2011-04-10 02:44:01 +00:00
|
|
|
|
public String NzbsrusUId { get; set; }
|
2011-02-11 01:22:29 +00:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
2012-07-30 21:21:05 +00:00
|
|
|
|
[DisplayName("API Key")]
|
|
|
|
|
[Description("API Key for NZBsRus")]
|
2011-02-15 01:20:17 +00:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-07-30 21:21:05 +00:00
|
|
|
|
[RequiredIf("NzbsRUsEnabled", true, ErrorMessage = "API Key Required when NzbsRus is enabled")]
|
2011-04-10 02:44:01 +00:00
|
|
|
|
public String NzbsrusHash { get; set; }
|
2011-02-11 01:22:29 +00:00
|
|
|
|
|
2012-04-14 06:44:34 +00:00
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("UID")]
|
|
|
|
|
[Description("UserID for File Sharing Talk")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
|
|
|
[RequiredIf("FileSharingTalkEnabled", true, ErrorMessage = "UserID Required when File Sharing Talk is enabled")]
|
|
|
|
|
public String FileSharingTalkUid { get; set; }
|
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("Secret")]
|
|
|
|
|
[Description("Password Secret for File Sharing Talk")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
|
|
|
[RequiredIf("FileSharingTalkEnabled", true, ErrorMessage = "Password Secret Required when File Sharing Talk is enabled")]
|
|
|
|
|
public String FileSharingTalkSecret { get; set; }
|
|
|
|
|
|
2011-04-19 23:46:21 +00:00
|
|
|
|
[DisplayName("NZBsRUs")]
|
2011-09-23 00:18:41 +00:00
|
|
|
|
[Description("Enable downloading episodes from NZBsRus")]
|
2011-04-19 23:46:21 +00:00
|
|
|
|
public bool NzbsRUsEnabled { get; set; }
|
|
|
|
|
|
2011-11-13 20:51:15 +00:00
|
|
|
|
[DisplayName("Newznab")]
|
|
|
|
|
[Description("Enable downloading episodes from Newznab Providers")]
|
|
|
|
|
public bool NewznabEnabled { get; set; }
|
|
|
|
|
|
2012-04-14 06:44:34 +00:00
|
|
|
|
[DisplayName("Womble's Index")]
|
|
|
|
|
[Description("Enable downloading episodes from Womble's Index")]
|
|
|
|
|
public bool WomblesEnabled { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("File Sharing Talk")]
|
|
|
|
|
[Description("Enable downloading episodes from File Sharing Talk")]
|
|
|
|
|
public bool FileSharingTalkEnabled { get; set; }
|
|
|
|
|
|
2012-04-15 00:04:08 +00:00
|
|
|
|
[DisplayName("NzbIndex")]
|
|
|
|
|
[Description("Enable downloading episodes from NzbIndex")]
|
|
|
|
|
public bool NzbIndexEnabled { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("NzbClub")]
|
|
|
|
|
[Description("Enable downloading episodes from NzbClub")]
|
|
|
|
|
public bool NzbClubEnabled { get; set; }
|
|
|
|
|
|
2012-02-17 09:32:33 +00:00
|
|
|
|
[Required(ErrorMessage = "Please enter a valid number of days")]
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("Retention")]
|
|
|
|
|
[Description("Usenet provider retention in days (0 = unlimited)")]
|
|
|
|
|
public int Retention { get; set; }
|
|
|
|
|
|
2012-10-07 19:16:43 +00:00
|
|
|
|
[DisplayName("RSS Sync Interval")]
|
|
|
|
|
[Description("Check for new episodes every X minutes")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
|
|
|
[Required(AllowEmptyStrings = false, ErrorMessage = "You must enter a valid time in minutes")]
|
|
|
|
|
[Range(15, 240, ErrorMessage = "Interval must be between 15 and 240 minutes")]
|
|
|
|
|
public int RssSyncInterval { get; set; }
|
|
|
|
|
|
2011-11-13 20:51:15 +00:00
|
|
|
|
public List<NewznabDefinition> NewznabDefinitions { get; set; }
|
2011-02-11 01:22:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|