mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
4f2f5a3d71
SabProvider - Added AddById (Newzbin) Fixes to RssItemProcessingProvider Can either download NZB to file or send to SAB...
120 lines
2.9 KiB
C#
120 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class DownloadSettingsModel
|
|
{
|
|
[Required]
|
|
[Range(15, 120, ErrorMessage = "Must be between 15 and 120 minutes")]
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("Sync Frequency")]
|
|
public int SyncFrequency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DisplayName("Download Propers")]
|
|
public bool DownloadPropers
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[Required (ErrorMessage = "Please enter a valid number")]
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("Retention")]
|
|
public int Retention
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[Required (ErrorMessage = "Please enter a valid host")]
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("SABnzbd Host")]
|
|
public String SabHost
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[Required(ErrorMessage = "Please enter a valid port")]
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("SABnzbd Port")]
|
|
public int SabPort
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("SABnzbd API Key")]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
public String SabApiKey
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("SABnzbd Username")]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
public String SabUsername
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataType(DataType.Text)]
|
|
[DisplayName("SABnzbd Password")]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
public String SabPassword
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataType(DataType.Text)]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
[DisplayName("SABnzbd TV Category")]
|
|
public String SabTvCategory
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[Required(ErrorMessage = "Please select a valid priority")]
|
|
[DisplayName("SABnzbd Priority")]
|
|
public SabnzbdPriorityType SabTvPriority
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DisplayName("Use Blackhole")]
|
|
public bool UseBlackHole
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataType(DataType.Text)]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
[DisplayName("Blackhole Directory")]
|
|
public String BlackholeDirectory
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public SelectList PrioritySelectList = new SelectList(new string[] { "Default", "Paused", "Low", "Normal", "High", "Top" });
|
|
}
|
|
} |