2011-02-11 03:22:29 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using NzbDrone.Core.Repository;
|
2012-02-24 19:22:13 +03:00
|
|
|
using NzbDrone.Web.Helpers.Validation;
|
2011-02-11 03:22:29 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
{
|
|
|
|
public class IndexerSettingsModel
|
|
|
|
{
|
|
|
|
[DataType(DataType.Text)]
|
2011-04-20 02:46:21 +03:00
|
|
|
[DisplayName("Username")]
|
2011-07-01 23:33:03 +03:00
|
|
|
[Description("Username for NZB Matrix")]
|
2011-02-15 03:20:17 +02:00
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-02-26 00:21:41 +03:00
|
|
|
[RequiredIf("NzbMatrixEnabled", true, ErrorMessage = "Username Required when NZBMatrix is enabled")]
|
2011-04-10 05:44:01 +03:00
|
|
|
public String NzbMatrixUsername { get; set; }
|
2011-02-11 03:22:29 +02:00
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
2011-04-20 02:46:21 +03:00
|
|
|
[DisplayName("API Key")]
|
2011-07-01 23:33:03 +03:00
|
|
|
[Description("API Key for NZB Matrix")]
|
2011-02-15 03:20:17 +02:00
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-02-24 19:22:13 +03:00
|
|
|
[RequiredIf("NzbMatrixEnabled", true, ErrorMessage = "API Key Required when NZBMatrix is enabled")]
|
2011-04-10 05:44:01 +03:00
|
|
|
public String NzbMatrixApiKey { get; set; }
|
2011-02-11 03:22:29 +02:00
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
2012-07-31 00:21:05 +03:00
|
|
|
[DisplayName("User ID")]
|
2011-07-01 23:33:03 +03:00
|
|
|
[Description("User ID for NZBsRus")]
|
2011-02-15 03:20:17 +02:00
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-07-31 00:21:05 +03:00
|
|
|
[RequiredIf("NzbsRUsEnabled", true, ErrorMessage = "User ID Required when NzbsRus is enabled")]
|
2011-04-10 05:44:01 +03:00
|
|
|
public String NzbsrusUId { get; set; }
|
2011-02-11 03:22:29 +02:00
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
2012-07-31 00:21:05 +03:00
|
|
|
[DisplayName("API Key")]
|
|
|
|
[Description("API Key for NZBsRus")]
|
2011-02-15 03:20:17 +02:00
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-07-31 00:21:05 +03:00
|
|
|
[RequiredIf("NzbsRUsEnabled", true, ErrorMessage = "API Key Required when NzbsRus is enabled")]
|
2011-04-10 05:44:01 +03:00
|
|
|
public String NzbsrusHash { get; set; }
|
2011-02-11 03:22:29 +02:00
|
|
|
|
2012-04-14 09:44:34 +03: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-20 02:46:21 +03:00
|
|
|
[DisplayName("NZB Matrix")]
|
2011-09-23 03:18:41 +03:00
|
|
|
[Description("Enable downloading episodes from NZB Matrix")]
|
2011-04-20 02:46:21 +03:00
|
|
|
public bool NzbMatrixEnabled { get; set; }
|
|
|
|
|
|
|
|
[DisplayName("NZBsRUs")]
|
2011-09-23 03:18:41 +03:00
|
|
|
[Description("Enable downloading episodes from NZBsRus")]
|
2011-04-20 02:46:21 +03:00
|
|
|
public bool NzbsRUsEnabled { get; set; }
|
|
|
|
|
2011-11-13 23:51:15 +03:00
|
|
|
[DisplayName("Newznab")]
|
|
|
|
[Description("Enable downloading episodes from Newznab Providers")]
|
|
|
|
public bool NewznabEnabled { get; set; }
|
|
|
|
|
2012-04-14 09:44:34 +03: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 03:04:08 +03: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 12:32:33 +03: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 22:16:43 +03: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 23:51:15 +03:00
|
|
|
public List<NewznabDefinition> NewznabDefinitions { get; set; }
|
2011-02-11 03:22:29 +02:00
|
|
|
}
|
|
|
|
}
|