mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
625 lines
28 KiB
C#
625 lines
28 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web.Mvc;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Model;
|
|
using NzbDrone.Core.Helpers;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Providers.Core;
|
|
using NzbDrone.Core.Providers.ExternalNotification;
|
|
using NzbDrone.Core.Providers.Indexer;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
using NzbDrone.Web.Filters;
|
|
using NzbDrone.Web.Models;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
[HandleError]
|
|
public class SettingsController : Controller
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
private readonly ConfigProvider _configProvider;
|
|
private readonly IndexerProvider _indexerProvider;
|
|
private readonly QualityProvider _qualityProvider;
|
|
private readonly AutoConfigureProvider _autoConfigureProvider;
|
|
private readonly SeriesProvider _seriesProvider;
|
|
private readonly ExternalNotificationProvider _externalNotificationProvider;
|
|
private readonly QualityTypeProvider _qualityTypeProvider;
|
|
private readonly ConfigFileProvider _configFileProvider;
|
|
private readonly NewznabProvider _newznabProvider;
|
|
|
|
public SettingsController(ConfigProvider configProvider, IndexerProvider indexerProvider,
|
|
QualityProvider qualityProvider, AutoConfigureProvider autoConfigureProvider,
|
|
SeriesProvider seriesProvider, ExternalNotificationProvider externalNotificationProvider,
|
|
QualityTypeProvider qualityTypeProvider,
|
|
ConfigFileProvider configFileProvider, NewznabProvider newznabProvider)
|
|
{
|
|
_externalNotificationProvider = externalNotificationProvider;
|
|
_qualityTypeProvider = qualityTypeProvider;
|
|
_configFileProvider = configFileProvider;
|
|
_newznabProvider = newznabProvider;
|
|
_configProvider = configProvider;
|
|
_indexerProvider = indexerProvider;
|
|
_qualityProvider = qualityProvider;
|
|
_autoConfigureProvider = autoConfigureProvider;
|
|
_seriesProvider = seriesProvider;
|
|
}
|
|
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Indexers()
|
|
{
|
|
return View(new IndexerSettingsModel
|
|
{
|
|
Retention = _configProvider.Retention,
|
|
|
|
NzbMatrixUsername = _configProvider.NzbMatrixUsername,
|
|
NzbMatrixApiKey = _configProvider.NzbMatrixApiKey,
|
|
|
|
NzbsrusUId = _configProvider.NzbsrusUId,
|
|
NzbsrusHash = _configProvider.NzbsrusHash,
|
|
|
|
NzbsOrgHash = _configProvider.NzbsOrgHash,
|
|
NzbsOrgUId = _configProvider.NzbsOrgUId,
|
|
|
|
NewzbinUsername = _configProvider.NewzbinUsername,
|
|
NewzbinPassword = _configProvider.NewzbinPassword,
|
|
|
|
NzbsOrgEnabled = _indexerProvider.GetSettings(typeof(NzbsOrg)).Enable,
|
|
NzbMatrixEnabled = _indexerProvider.GetSettings(typeof(NzbMatrix)).Enable,
|
|
NzbsRUsEnabled = _indexerProvider.GetSettings(typeof(NzbsRUs)).Enable,
|
|
NewzbinEnabled = _indexerProvider.GetSettings(typeof(Newzbin)).Enable,
|
|
NewznabEnabled = _indexerProvider.GetSettings(typeof(Newznab)).Enable,
|
|
|
|
NewznabDefinitions = _newznabProvider.All(),
|
|
});
|
|
}
|
|
|
|
public ActionResult DownloadClient()
|
|
{
|
|
var tvCategory = _configProvider.SabTvCategory;
|
|
var tvCategorySelectList = new SelectList(new[] { tvCategory });
|
|
|
|
var downloadClientTypes = new List<KeyValuePair<int, string>>();
|
|
|
|
foreach (DownloadClientType downloadClientType in Enum.GetValues(typeof(DownloadClientType)))
|
|
downloadClientTypes.Add(new KeyValuePair<int, string>((int)downloadClientType, downloadClientType.ToString()));
|
|
|
|
var model = new DownloadClientSettingsModel
|
|
{
|
|
SabHost = _configProvider.SabHost,
|
|
SabPort = _configProvider.SabPort,
|
|
SabApiKey = _configProvider.SabApiKey,
|
|
SabUsername = _configProvider.SabUsername,
|
|
SabPassword = _configProvider.SabPassword,
|
|
SabTvCategory = tvCategory,
|
|
SabTvPriority = _configProvider.SabTvPriority,
|
|
DownloadClientDropDirectory = _configProvider.SabDropDirectory,
|
|
SabTvCategorySelectList = tvCategorySelectList,
|
|
DownloadClient = (int)_configProvider.DownloadClient,
|
|
BlackholeDirectory = _configProvider.BlackholeDirectory,
|
|
DownloadClientSelectList = new SelectList(downloadClientTypes, "Key", "Value")
|
|
};
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public ActionResult Quality()
|
|
{
|
|
var profiles = _qualityProvider.All().ToList();
|
|
|
|
var defaultQualityQualityProfileId = Convert.ToInt32(_configProvider.DefaultQualityProfile);
|
|
var qualityProfileSelectList = new SelectList(profiles, "QualityProfileId", "Name");
|
|
var qualityTypesFromDb = _qualityTypeProvider.All();
|
|
|
|
var model = new QualityModel
|
|
{
|
|
DefaultQualityProfileId = defaultQualityQualityProfileId,
|
|
QualityProfileSelectList = qualityProfileSelectList,
|
|
SdtvMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 1).MaxSize,
|
|
DvdMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 2).MaxSize,
|
|
HdtvMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 4).MaxSize,
|
|
WebdlMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 5).MaxSize,
|
|
Bluray720pMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 6).MaxSize,
|
|
Bluray1080pMaxSize = qualityTypesFromDb.Single(q => q.QualityTypeId == 7).MaxSize
|
|
};
|
|
|
|
ViewData["Profiles"] = profiles;
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public ActionResult Notifications()
|
|
{
|
|
var model = new NotificationSettingsModel
|
|
{
|
|
XbmcEnabled = _externalNotificationProvider.GetSettings(typeof(Xbmc)).Enable,
|
|
XbmcNotifyOnGrab = _configProvider.XbmcNotifyOnGrab,
|
|
XbmcNotifyOnDownload = _configProvider.XbmcNotifyOnDownload,
|
|
XbmcUpdateLibrary = _configProvider.XbmcUpdateLibrary,
|
|
XbmcCleanLibrary = _configProvider.XbmcCleanLibrary,
|
|
XbmcHosts = _configProvider.XbmcHosts,
|
|
XbmcUsername = _configProvider.XbmcUsername,
|
|
XbmcPassword = _configProvider.XbmcPassword,
|
|
SmtpEnabled = _externalNotificationProvider.GetSettings(typeof(Smtp)).Enable,
|
|
SmtpNotifyOnGrab = _configProvider.SmtpNotifyOnGrab,
|
|
SmtpNotifyOnDownload = _configProvider.SmtpNotifyOnGrab,
|
|
SmtpServer = _configProvider.SmtpServer,
|
|
SmtpPort = _configProvider.SmtpPort,
|
|
SmtpUseSsl = _configProvider.SmtpUseSsl,
|
|
SmtpUsername = _configProvider.SmtpUsername,
|
|
SmtpPassword = _configProvider.SmtpPassword,
|
|
SmtpFromAddress = _configProvider.SmtpFromAddress,
|
|
SmtpToAddresses = _configProvider.SmtpToAddresses,
|
|
TwitterEnabled = _externalNotificationProvider.GetSettings(typeof(Twitter)).Enable,
|
|
TwitterNotifyOnGrab = _configProvider.TwitterNotifyOnGrab,
|
|
TwitterNotifyOnDownload = _configProvider.TwitterNotifyOnDownload,
|
|
GrowlEnabled = _externalNotificationProvider.GetSettings(typeof(Growl)).Enable,
|
|
GrowlNotifyOnGrab = _configProvider.GrowlNotifyOnGrab,
|
|
GrowlNotifyOnDownload = _configProvider.GrowlNotifyOnDownload,
|
|
GrowlHost = _configProvider.GrowlHost,
|
|
GrowlPassword = _configProvider.GrowlPassword,
|
|
ProwlEnabled = _externalNotificationProvider.GetSettings(typeof(Prowl)).Enable,
|
|
ProwlNotifyOnGrab = _configProvider.ProwlNotifyOnGrab,
|
|
ProwlNotifyOnDownload = _configProvider.ProwlNotifyOnDownload,
|
|
ProwlApiKeys = _configProvider.ProwlApiKeys,
|
|
ProwlPriority = _configProvider.ProwlPriority,
|
|
ProwlPrioritySelectList = GetProwlPrioritySelectList(),
|
|
PlexEnabled = _externalNotificationProvider.GetSettings(typeof(Plex)).Enable,
|
|
PlexNotifyOnGrab = _configProvider.PlexNotifyOnGrab,
|
|
PlexNotifyOnDownload = _configProvider.PlexNotifyOnDownload,
|
|
PlexUpdateLibrary = _configProvider.PlexUpdateLibrary,
|
|
PlexServerHost = _configProvider.PlexServerHost,
|
|
PlexClientHosts = _configProvider.PlexClientHosts,
|
|
PlexUsername = _configProvider.PlexUsername,
|
|
PlexPassword = _configProvider.PlexPassword,
|
|
};
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public ActionResult Naming()
|
|
{
|
|
var model = new EpisodeNamingModel();
|
|
|
|
model.SeriesName = _configProvider.SortingIncludeSeriesName;
|
|
model.EpisodeName = _configProvider.SortingIncludeEpisodeTitle;
|
|
model.ReplaceSpaces = _configProvider.SortingReplaceSpaces;
|
|
model.AppendQuality = _configProvider.SortingAppendQuality;
|
|
model.SeasonFolders = _configProvider.UseSeasonFolder;
|
|
model.SeasonFolderFormat = _configProvider.SortingSeasonFolderFormat;
|
|
model.SeparatorStyle = _configProvider.SortingSeparatorStyle;
|
|
model.NumberStyle = _configProvider.SortingNumberStyle;
|
|
model.MultiEpisodeStyle = _configProvider.SortingMultiEpisodeStyle;
|
|
|
|
model.SeparatorStyles = new SelectList(EpisodeSortingHelper.GetSeparatorStyles(), "Id", "Name");
|
|
model.NumberStyles = new SelectList(EpisodeSortingHelper.GetNumberStyles(), "Id", "Name");
|
|
model.MultiEpisodeStyles = new SelectList(EpisodeSortingHelper.GetMultiEpisodeStyles(), "Id", "Name");
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public ActionResult System()
|
|
{
|
|
var selectedAuthenticationType = _configFileProvider.AuthenticationType;
|
|
var authenticationTypes = new List<AuthenticationType>();
|
|
|
|
foreach (AuthenticationType authenticationType in Enum.GetValues(typeof(AuthenticationType)))
|
|
{
|
|
authenticationTypes.Add(authenticationType);
|
|
}
|
|
|
|
var authTypeSelectList = new SelectList(authenticationTypes, selectedAuthenticationType);
|
|
|
|
var model = new SystemSettingsModel();
|
|
model.Port = _configFileProvider.Port;
|
|
model.LaunchBrowser = _configFileProvider.LaunchBrowser;
|
|
model.AuthenticationType = selectedAuthenticationType;
|
|
model.AuthTypeSelectList = authTypeSelectList;
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public ActionResult Misc()
|
|
{
|
|
var model = new MiscSettingsModel();
|
|
model.EnableBacklogSearching = _configProvider.EnableBacklogSearching;
|
|
model.AutoIgnorePreviouslyDownloadedEpisodes = _configProvider.AutoIgnorePreviouslyDownloadedEpisodes;
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public PartialViewResult AddProfile()
|
|
{
|
|
var qualityProfile = new QualityProfile
|
|
{
|
|
Name = "New Profile",
|
|
Allowed = new List<QualityTypes> { QualityTypes.Unknown },
|
|
Cutoff = QualityTypes.Unknown
|
|
};
|
|
|
|
qualityProfile.QualityProfileId = _qualityProvider.Add(qualityProfile);
|
|
|
|
return GetQualityProfileView(qualityProfile);
|
|
}
|
|
|
|
public PartialViewResult GetQualityProfileView(QualityProfile profile)
|
|
{
|
|
var model = new QualityProfileModel();
|
|
model.QualityProfileId = profile.QualityProfileId;
|
|
model.Name = profile.Name;
|
|
model.Allowed = profile.Allowed;
|
|
model.Sdtv = profile.Allowed.Contains(QualityTypes.SDTV);
|
|
model.Dvd = profile.Allowed.Contains(QualityTypes.DVD);
|
|
model.Hdtv = profile.Allowed.Contains(QualityTypes.HDTV);
|
|
model.Webdl = profile.Allowed.Contains(QualityTypes.WEBDL);
|
|
model.Bluray720p = profile.Allowed.Contains(QualityTypes.Bluray720p);
|
|
model.Bluray1080p = profile.Allowed.Contains(QualityTypes.Bluray1080p);
|
|
model.Cutoff = profile.Cutoff;
|
|
|
|
return PartialView("QualityProfileItem", model);
|
|
}
|
|
|
|
[JsonErrorFilter]
|
|
public JsonResult DeleteQualityProfile(int profileId)
|
|
{
|
|
if (_seriesProvider.GetAllSeries().Where(s => s.QualityProfileId == profileId).Count() != 0)
|
|
return JsonNotificationResult.Oops("Profile is still in use.");
|
|
|
|
_qualityProvider.Delete(profileId);
|
|
|
|
return new JsonResult();
|
|
}
|
|
|
|
public PartialViewResult AddNewznabProvider()
|
|
{
|
|
var newznab = new NewznabDefinition
|
|
{
|
|
Enable = false,
|
|
Name = "Newznab Provider"
|
|
};
|
|
|
|
var id = _newznabProvider.Save(newznab);
|
|
newznab.Id = id;
|
|
|
|
ViewData["ProviderId"] = id;
|
|
|
|
return PartialView("NewznabProvider", newznab);
|
|
}
|
|
|
|
public ActionResult GetNewznabProviderView(NewznabDefinition provider)
|
|
{
|
|
ViewData["ProviderId"] = provider.Id;
|
|
|
|
return PartialView("NewznabProvider", provider);
|
|
}
|
|
|
|
[JsonErrorFilter]
|
|
public EmptyResult DeleteNewznabProvider(int providerId)
|
|
{
|
|
_newznabProvider.Delete(providerId);
|
|
return new EmptyResult();
|
|
}
|
|
|
|
public QualityModel GetUpdatedProfileList()
|
|
{
|
|
var profiles = _qualityProvider.All().ToList();
|
|
var defaultQualityQualityProfileId =
|
|
Convert.ToInt32(_configProvider.GetValue("DefaultQualityProfile", profiles[0].QualityProfileId));
|
|
var selectList = new SelectList(profiles, "QualityProfileId", "Name");
|
|
|
|
return new QualityModel { DefaultQualityProfileId = defaultQualityQualityProfileId, QualityProfileSelectList = selectList };
|
|
}
|
|
|
|
public JsonResult AutoConfigureSab()
|
|
{
|
|
try
|
|
{
|
|
var info = _autoConfigureProvider.AutoConfigureSab();
|
|
|
|
if (info != null)
|
|
return Json(info, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
catch (Exception)
|
|
{
|
|
}
|
|
|
|
return JsonNotificationResult.Error("Auto-Configure Failed", "Please enter your SAB Settings Manually");
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveIndexers(IndexerSettingsModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configProvider.Retention = data.Retention;
|
|
|
|
var nzbsOrgSettings = _indexerProvider.GetSettings(typeof(NzbsOrg));
|
|
nzbsOrgSettings.Enable = data.NzbsOrgEnabled;
|
|
_indexerProvider.SaveSettings(nzbsOrgSettings);
|
|
|
|
var nzbMatrixSettings = _indexerProvider.GetSettings(typeof(NzbMatrix));
|
|
nzbMatrixSettings.Enable = data.NzbMatrixEnabled;
|
|
_indexerProvider.SaveSettings(nzbMatrixSettings);
|
|
|
|
var nzbsRUsSettings = _indexerProvider.GetSettings(typeof(NzbsRUs));
|
|
nzbsRUsSettings.Enable = data.NzbsRUsEnabled;
|
|
_indexerProvider.SaveSettings(nzbsRUsSettings);
|
|
|
|
var newzbinSettings = _indexerProvider.GetSettings(typeof(Newzbin));
|
|
newzbinSettings.Enable = data.NewzbinEnabled;
|
|
_indexerProvider.SaveSettings(newzbinSettings);
|
|
|
|
var newznabSettings = _indexerProvider.GetSettings(typeof(Newznab));
|
|
newznabSettings.Enable = data.NewznabEnabled;
|
|
_indexerProvider.SaveSettings(newznabSettings);
|
|
|
|
_configProvider.NzbsOrgUId = data.NzbsOrgUId;
|
|
_configProvider.NzbsOrgHash = data.NzbsOrgHash;
|
|
|
|
_configProvider.NzbMatrixUsername = data.NzbMatrixUsername;
|
|
_configProvider.NzbMatrixApiKey = data.NzbMatrixApiKey;
|
|
|
|
_configProvider.NzbsrusUId = data.NzbsrusUId;
|
|
_configProvider.NzbsrusHash = data.NzbsrusHash;
|
|
|
|
_configProvider.NewzbinUsername = data.NewzbinUsername;
|
|
_configProvider.NewzbinPassword = data.NewzbinPassword;
|
|
|
|
if (data.NewznabDefinitions != null)
|
|
_newznabProvider.SaveAll(data.NewznabDefinitions);
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveDownloadClient(DownloadClientSettingsModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configProvider.SabHost = data.SabHost;
|
|
_configProvider.SabPort = data.SabPort;
|
|
_configProvider.SabApiKey = data.SabApiKey;
|
|
_configProvider.SabPassword = data.SabPassword;
|
|
_configProvider.SabTvCategory = data.SabTvCategory;
|
|
_configProvider.SabUsername = data.SabUsername;
|
|
_configProvider.SabTvPriority = data.SabTvPriority;
|
|
_configProvider.SabDropDirectory = data.DownloadClientDropDirectory;
|
|
_configProvider.BlackholeDirectory = data.BlackholeDirectory;
|
|
_configProvider.DownloadClient = (DownloadClientType)data.DownloadClient;
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return JsonNotificationResult.Oops("Invalid Data");
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveQuality(QualityModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configProvider.DefaultQualityProfile = data.DefaultQualityProfileId;
|
|
|
|
//Saves only the Default Quality, skips User Profiles since none exist
|
|
if (data.Profiles == null)
|
|
return GetSuccessResult();
|
|
|
|
foreach (var profileModel in data.Profiles)
|
|
{
|
|
Logger.Debug(String.Format("Updating Profile: {0}", profileModel));
|
|
|
|
var profile = new QualityProfile();
|
|
profile.QualityProfileId = profileModel.QualityProfileId;
|
|
profile.Name = profileModel.Name;
|
|
profile.Cutoff = profileModel.Cutoff;
|
|
|
|
profile.Allowed = new List<QualityTypes>();
|
|
|
|
if (profileModel.Sdtv)
|
|
profile.Allowed.Add(QualityTypes.SDTV);
|
|
|
|
if (profileModel.Dvd)
|
|
profile.Allowed.Add(QualityTypes.DVD);
|
|
|
|
if (profileModel.Hdtv)
|
|
profile.Allowed.Add(QualityTypes.HDTV);
|
|
|
|
if (profileModel.Webdl)
|
|
profile.Allowed.Add(QualityTypes.WEBDL);
|
|
|
|
if (profileModel.Bluray720p)
|
|
profile.Allowed.Add(QualityTypes.Bluray720p);
|
|
|
|
if (profileModel.Bluray1080p)
|
|
profile.Allowed.Add(QualityTypes.Bluray1080p);
|
|
|
|
//If the Cutoff value selected is not in the allowed list then return an error
|
|
if (!profile.Allowed.Contains(profile.Cutoff))
|
|
return GetInvalidModelResult();
|
|
|
|
_qualityProvider.Update(profile);
|
|
}
|
|
|
|
var qualityTypesFromDb = _qualityTypeProvider.All();
|
|
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 1).MaxSize = data.SdtvMaxSize;
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 2).MaxSize = data.DvdMaxSize;
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 4).MaxSize = data.HdtvMaxSize;
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 5).MaxSize = data.WebdlMaxSize;
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 6).MaxSize = data.Bluray720pMaxSize;
|
|
qualityTypesFromDb.Single(q => q.QualityTypeId == 7).MaxSize = data.Bluray1080pMaxSize;
|
|
|
|
_qualityTypeProvider.UpdateAll(qualityTypesFromDb);
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveNotifications(NotificationSettingsModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
//XBMC Enabled
|
|
var xbmcSettings = _externalNotificationProvider.GetSettings(typeof(Xbmc));
|
|
xbmcSettings.Enable = data.XbmcEnabled;
|
|
_externalNotificationProvider.SaveSettings(xbmcSettings);
|
|
|
|
_configProvider.XbmcNotifyOnGrab = data.XbmcNotifyOnGrab;
|
|
_configProvider.XbmcNotifyOnDownload = data.XbmcNotifyOnDownload;
|
|
_configProvider.XbmcUpdateLibrary = data.XbmcUpdateLibrary;
|
|
_configProvider.XbmcCleanLibrary = data.XbmcCleanLibrary;
|
|
_configProvider.XbmcHosts = data.XbmcHosts;
|
|
_configProvider.XbmcUsername = data.XbmcUsername;
|
|
_configProvider.XbmcPassword = data.XbmcPassword;
|
|
|
|
//SMTP
|
|
var smtpSettings = _externalNotificationProvider.GetSettings(typeof(Smtp));
|
|
smtpSettings.Enable = data.SmtpEnabled;
|
|
_externalNotificationProvider.SaveSettings(smtpSettings);
|
|
|
|
_configProvider.SmtpNotifyOnGrab = data.SmtpNotifyOnGrab;
|
|
_configProvider.SmtpNotifyOnDownload = data.SmtpNotifyOnDownload;
|
|
_configProvider.SmtpServer = data.SmtpServer;
|
|
_configProvider.SmtpPort = data.SmtpPort;
|
|
_configProvider.SmtpUseSsl = data.SmtpUseSsl;
|
|
_configProvider.SmtpUsername = data.SmtpUsername;
|
|
_configProvider.SmtpPassword = data.SmtpPassword;
|
|
_configProvider.SmtpFromAddress = data.SmtpFromAddress;
|
|
_configProvider.SmtpToAddresses = data.SmtpToAddresses;
|
|
|
|
//Twitter
|
|
var twitterSettings = _externalNotificationProvider.GetSettings(typeof(Twitter));
|
|
twitterSettings.Enable = data.TwitterEnabled;
|
|
_externalNotificationProvider.SaveSettings(twitterSettings);
|
|
|
|
_configProvider.TwitterNotifyOnGrab = data.TwitterNotifyOnGrab;
|
|
_configProvider.TwitterNotifyOnDownload = data.TwitterNotifyOnDownload;
|
|
|
|
//Growl
|
|
var growlSettings = _externalNotificationProvider.GetSettings(typeof(Growl));
|
|
growlSettings.Enable = data.GrowlEnabled;
|
|
_externalNotificationProvider.SaveSettings(growlSettings);
|
|
|
|
_configProvider.GrowlNotifyOnGrab = data.GrowlNotifyOnGrab;
|
|
_configProvider.GrowlNotifyOnDownload = data.GrowlNotifyOnDownload;
|
|
_configProvider.GrowlHost = data.GrowlHost;
|
|
_configProvider.GrowlPassword = data.GrowlPassword;
|
|
|
|
//Prowl
|
|
var prowlSettings = _externalNotificationProvider.GetSettings(typeof(Prowl));
|
|
prowlSettings.Enable = data.ProwlEnabled;
|
|
_externalNotificationProvider.SaveSettings(prowlSettings);
|
|
|
|
_configProvider.ProwlNotifyOnGrab = data.ProwlNotifyOnGrab;
|
|
_configProvider.ProwlNotifyOnDownload = data.ProwlNotifyOnDownload;
|
|
_configProvider.ProwlApiKeys = data.ProwlApiKeys;
|
|
_configProvider.ProwlPriority = data.ProwlPriority;
|
|
|
|
//Plex
|
|
var plexSettings = _externalNotificationProvider.GetSettings(typeof(Plex));
|
|
plexSettings.Enable = data.PlexEnabled;
|
|
_externalNotificationProvider.SaveSettings(plexSettings);
|
|
|
|
_configProvider.PlexNotifyOnGrab = data.PlexNotifyOnGrab;
|
|
_configProvider.PlexNotifyOnDownload = data.PlexNotifyOnDownload;
|
|
_configProvider.PlexUpdateLibrary = data.PlexUpdateLibrary;
|
|
_configProvider.PlexServerHost = data.PlexServerHost;
|
|
_configProvider.PlexClientHosts = data.PlexClientHosts;
|
|
_configProvider.PlexUsername = data.PlexUsername;
|
|
_configProvider.PlexPassword = data.PlexPassword;
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveNaming(EpisodeNamingModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configProvider.SortingIncludeSeriesName = data.SeriesName;
|
|
_configProvider.SortingIncludeEpisodeTitle = data.EpisodeName;
|
|
_configProvider.SortingReplaceSpaces = data.ReplaceSpaces;
|
|
_configProvider.SortingAppendQuality = data.AppendQuality;
|
|
_configProvider.UseSeasonFolder = data.SeasonFolders;
|
|
_configProvider.SortingSeasonFolderFormat = data.SeasonFolderFormat;
|
|
_configProvider.SortingSeparatorStyle = data.SeparatorStyle;
|
|
_configProvider.SortingNumberStyle = data.NumberStyle;
|
|
_configProvider.SortingMultiEpisodeStyle = data.MultiEpisodeStyle;
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveSystem(SystemSettingsModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configFileProvider.Port = data.Port;
|
|
_configFileProvider.LaunchBrowser = data.LaunchBrowser;
|
|
_configFileProvider.AuthenticationType = data.AuthenticationType;
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult SaveMisc(MiscSettingsModel data)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
_configProvider.EnableBacklogSearching = data.EnableBacklogSearching;
|
|
_configProvider.AutoIgnorePreviouslyDownloadedEpisodes = data.AutoIgnorePreviouslyDownloadedEpisodes;
|
|
|
|
return GetSuccessResult();
|
|
}
|
|
|
|
return GetInvalidModelResult();
|
|
}
|
|
|
|
private JsonResult GetSuccessResult()
|
|
{
|
|
return JsonNotificationResult.Info("Settings Saved");
|
|
}
|
|
|
|
private JsonResult GetInvalidModelResult()
|
|
{
|
|
return JsonNotificationResult.Oops("Invalid post data");
|
|
}
|
|
|
|
private SelectList GetProwlPrioritySelectList()
|
|
{
|
|
var list = new List<ProwlPrioritySelectListModel>();
|
|
list.Add(new ProwlPrioritySelectListModel { Name = "Very Low", Value = -2 });
|
|
list.Add(new ProwlPrioritySelectListModel { Name = "Moderate", Value = -1 });
|
|
list.Add(new ProwlPrioritySelectListModel { Name = "Normal", Value = 0 });
|
|
list.Add(new ProwlPrioritySelectListModel { Name = "High", Value = 1 });
|
|
list.Add(new ProwlPrioritySelectListModel { Name = "Emergency", Value = 2 });
|
|
|
|
return new SelectList(list, "Value", "Name");
|
|
}
|
|
}
|
|
} |