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