2011-02-10 17:22:29 -08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using NzbDrone.Core.Model;
|
2012-01-18 20:05:03 -08:00
|
|
|
|
using NzbDrone.Core.Model.Sabnzbd;
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
2012-01-28 13:43:44 -08:00
|
|
|
|
public class DownloadClientSettingsModel
|
2011-02-10 17:22:29 -08:00
|
|
|
|
{
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public SelectList PrioritySelectList =
|
2012-02-01 15:25:38 -08:00
|
|
|
|
new SelectList(new[] {"Default", "Paused", "Low", "Normal", "High", "Force"});
|
2011-04-09 19:44:01 -07:00
|
|
|
|
|
|
|
|
|
[Required(ErrorMessage = "Please enter a valid host")]
|
2011-02-10 17:22:29 -08:00
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("SABnzbd Host")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Hostname or IP Address running SABnzbd")]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public String SabHost { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[Required(ErrorMessage = "Please enter a valid port")]
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("SABnzbd Port")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Port for SABnzbd web interface")]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public int SabPort { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("SABnzbd API Key")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("API Key for SABNzbd, Found in Config: General")]
|
2011-02-14 17:20:17 -08:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public String SabApiKey { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("SABnzbd Username")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Username for SABnzbd WebUI (Not Required when using APIKey)")]
|
2011-02-14 17:20:17 -08:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public String SabUsername { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("SABnzbd Password")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Password for SABnzbd WebUI (Not required when using APIKey)")]
|
2011-02-14 17:20:17 -08:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public String SabPassword { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
2011-02-14 17:20:17 -08:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-03-06 14:27:52 -08:00
|
|
|
|
[DisplayName("SABnzbd TV Category")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Category to use when sending NZBs to SABnzbd")]
|
2011-04-09 19:44:01 -07:00
|
|
|
|
public String SabTvCategory { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
|
|
|
|
|
[Required(ErrorMessage = "Please select a valid priority")]
|
|
|
|
|
[DisplayName("SABnzbd Priority")]
|
2011-04-26 22:09:24 -07:00
|
|
|
|
[Description("Priority to use when sending NZBs to SABnzbd")]
|
2012-01-18 20:05:03 -08:00
|
|
|
|
public SabPriorityType SabTvPriority { get; set; }
|
2011-06-07 00:08:37 -07:00
|
|
|
|
|
2012-01-28 13:43:44 -08:00
|
|
|
|
[DisplayName("Download Client TV Directory")]
|
|
|
|
|
[Description("The directory where your download client downloads TV shows to (NzbDrone will sort them for you)")]
|
2011-06-07 00:08:37 -07:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-01-28 13:43:44 -08:00
|
|
|
|
public string DownloadClientDropDirectory { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Blackhole Directory")]
|
|
|
|
|
[Description("The directory where your download client will pickup NZB files")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
|
|
|
public string BlackholeDirectory { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Download Client")]
|
|
|
|
|
[Description("What method do you download NZBs with?")]
|
|
|
|
|
public int DownloadClient { get; set; }
|
2011-06-08 18:45:06 -07:00
|
|
|
|
|
2011-08-26 10:45:59 -07:00
|
|
|
|
public SelectList SabTvCategorySelectList { get; set; }
|
2012-01-28 13:43:44 -08:00
|
|
|
|
public SelectList DownloadClientSelectList { get; set; }
|
2011-02-10 17:22:29 -08:00
|
|
|
|
}
|
|
|
|
|
}
|