2010-09-23 05:19:47 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-05-14 09:49:57 +02:00
|
|
|
|
using System.IO;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web.Mvc;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
using NLog;
|
2011-03-03 09:50:33 +01:00
|
|
|
|
using NzbDrone.Core.Helpers;
|
2011-02-11 02:22:29 +01:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-05-13 06:46:26 +02:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-02-05 07:07:25 +01:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2011-04-04 05:50:12 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Indexer;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-02-05 07:07:25 +01:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-09-24 07:21:45 +02:00
|
|
|
|
using NzbDrone.Web.Models;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
2010-10-08 05:35:04 +02:00
|
|
|
|
[HandleError]
|
2010-09-23 05:19:47 +02:00
|
|
|
|
public class SettingsController : Controller
|
|
|
|
|
{
|
2011-03-28 23:57:06 +02:00
|
|
|
|
private const string SETTINGS_SAVED = "Settings Saved.";
|
|
|
|
|
private const string SETTINGS_FAILED = "Error Saving Settings, please fix any errors";
|
2011-04-10 04:44:01 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
private readonly ConfigProvider _configProvider;
|
|
|
|
|
private readonly IndexerProvider _indexerProvider;
|
|
|
|
|
private readonly QualityProvider _qualityProvider;
|
|
|
|
|
private readonly RootDirProvider _rootDirProvider;
|
2011-04-25 09:42:29 +02:00
|
|
|
|
private readonly AutoConfigureProvider _autoConfigureProvider;
|
2011-05-13 06:46:26 +02:00
|
|
|
|
private readonly NotificationProvider _notificationProvider;
|
2011-05-14 09:49:57 +02:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
2010-09-24 07:21:45 +02:00
|
|
|
|
|
2011-04-10 03:34:36 +02:00
|
|
|
|
public SettingsController(ConfigProvider configProvider, IndexerProvider indexerProvider,
|
2011-04-25 09:42:29 +02:00
|
|
|
|
QualityProvider qualityProvider, RootDirProvider rootDirProvider,
|
2011-05-14 09:49:57 +02:00
|
|
|
|
AutoConfigureProvider autoConfigureProvider, NotificationProvider notificationProvider,
|
|
|
|
|
DiskProvider diskProvider)
|
2010-09-24 07:21:45 +02:00
|
|
|
|
{
|
2010-09-28 06:25:41 +02:00
|
|
|
|
_configProvider = configProvider;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
_indexerProvider = indexerProvider;
|
2011-02-03 03:49:52 +01:00
|
|
|
|
_qualityProvider = qualityProvider;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
_rootDirProvider = rootDirProvider;
|
2011-04-25 09:42:29 +02:00
|
|
|
|
_autoConfigureProvider = autoConfigureProvider;
|
2011-05-13 06:46:26 +02:00
|
|
|
|
_notificationProvider = notificationProvider;
|
2011-05-14 09:49:57 +02:00
|
|
|
|
_diskProvider = diskProvider;
|
2010-09-24 07:21:45 +02:00
|
|
|
|
}
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2011-05-16 08:27:02 +02:00
|
|
|
|
public ActionResult Test()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult TestPartial()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 07:10:22 +01:00
|
|
|
|
public ActionResult Index(string viewName)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2011-01-29 07:10:22 +01:00
|
|
|
|
if (viewName != null)
|
|
|
|
|
ViewData["viewName"] = viewName;
|
|
|
|
|
|
|
|
|
|
else
|
2011-03-09 08:40:48 +01:00
|
|
|
|
return RedirectToAction("General");
|
2011-01-29 07:10:22 +01:00
|
|
|
|
|
2011-03-09 08:40:48 +01:00
|
|
|
|
return View("Index");
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult General()
|
|
|
|
|
{
|
|
|
|
|
ViewData["viewName"] = "General";
|
2011-03-28 23:57:06 +02:00
|
|
|
|
|
2011-01-29 07:10:22 +01:00
|
|
|
|
return View("Index", new SettingsModel
|
|
|
|
|
{
|
2011-03-28 23:57:06 +02:00
|
|
|
|
Directories = _rootDirProvider.GetAll()
|
2011-01-29 07:10:22 +01:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult Indexers()
|
|
|
|
|
{
|
|
|
|
|
ViewData["viewName"] = "Indexers";
|
2011-04-20 01:46:21 +02:00
|
|
|
|
|
2011-02-11 02:22:29 +01:00
|
|
|
|
return View("Index", new IndexerSettingsModel
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-04-25 21:02:29 +02:00
|
|
|
|
NzbMatrixUsername = _configProvider.NzbMatrixUsername,
|
|
|
|
|
NzbMatrixApiKey = _configProvider.NzbMatrixApiKey,
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-04-22 19:09:06 +02:00
|
|
|
|
NzbsrusUId = _configProvider.NzbsrusUId,
|
|
|
|
|
NzbsrusHash = _configProvider.NzbsrusHash,
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-04-22 19:09:06 +02:00
|
|
|
|
NzbsOrgHash = _configProvider.NzbsOrgHash,
|
|
|
|
|
NzbsOrgUId = _configProvider.NzbsOrgUId,
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
NewzbinUsername = _configProvider.NewzbinUsername,
|
|
|
|
|
NewzbinPassword = _configProvider.NewzbinPassword,
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
NzbsOrgEnabled = _indexerProvider.GetSettings(typeof(NzbsOrgProvider)).Enable,
|
|
|
|
|
NzbMatrixEnabled = _indexerProvider.GetSettings(typeof(NzbMatrixProvider)).Enable,
|
|
|
|
|
NzbsRUsEnabled = _indexerProvider.GetSettings(typeof(NzbsRUsProvider)).Enable,
|
|
|
|
|
NewzbinEnabled = _indexerProvider.GetSettings(typeof(NewzbinProvider)).Enable
|
2011-01-29 07:10:22 +01:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult Downloads()
|
|
|
|
|
{
|
|
|
|
|
ViewData["viewName"] = "Downloads";
|
2011-02-11 02:22:29 +01:00
|
|
|
|
|
|
|
|
|
var model = new DownloadSettingsModel
|
|
|
|
|
{
|
2011-05-16 09:32:01 +02:00
|
|
|
|
SyncFrequency = _configProvider.SyncFrequency,
|
|
|
|
|
DownloadPropers = _configProvider.DownloadPropers,
|
|
|
|
|
Retention = _configProvider.Retention,
|
2011-04-25 21:02:29 +02:00
|
|
|
|
SabHost = _configProvider.SabHost,
|
2011-05-16 09:32:01 +02:00
|
|
|
|
SabPort =_configProvider.SabPort,
|
2011-04-25 21:02:29 +02:00
|
|
|
|
SabApiKey = _configProvider.SabApiKey,
|
|
|
|
|
SabUsername = _configProvider.SabUsername,
|
|
|
|
|
SabPassword = _configProvider.SabPassword,
|
|
|
|
|
SabTvCategory = _configProvider.SabTvCategory,
|
2011-05-16 09:32:01 +02:00
|
|
|
|
SabTvPriority = _configProvider.SabTvPriority,
|
|
|
|
|
UseBlackHole = _configProvider.UseBlackhole,
|
2011-04-25 21:02:29 +02:00
|
|
|
|
BlackholeDirectory = _configProvider.BlackholeDirectory
|
2011-02-11 02:22:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("Index", model);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-03 03:49:52 +01:00
|
|
|
|
public ActionResult Quality()
|
|
|
|
|
{
|
2011-02-03 19:28:14 +01:00
|
|
|
|
ViewData["viewName"] = "Quality";
|
2011-02-03 03:49:52 +01:00
|
|
|
|
|
2011-02-05 07:07:25 +01:00
|
|
|
|
var qualityTypes = new List<QualityTypes>();
|
2011-02-03 03:49:52 +01:00
|
|
|
|
|
2011-04-19 02:12:06 +02:00
|
|
|
|
foreach (QualityTypes qual in Enum.GetValues(typeof(QualityTypes)))
|
2011-02-05 07:07:25 +01:00
|
|
|
|
{
|
|
|
|
|
qualityTypes.Add(qual);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-06 03:52:49 +01:00
|
|
|
|
ViewData["Qualities"] = qualityTypes;
|
|
|
|
|
|
|
|
|
|
var userProfiles = _qualityProvider.GetAllProfiles().Where(q => q.UserProfile).ToList();
|
|
|
|
|
var profiles = _qualityProvider.GetAllProfiles().ToList();
|
2011-02-11 02:22:29 +01:00
|
|
|
|
|
2011-04-10 04:44:01 +02:00
|
|
|
|
var defaultQualityQualityProfileId =
|
2011-04-25 21:02:29 +02:00
|
|
|
|
Convert.ToInt32(_configProvider.DefaultQualityProfile);
|
2011-02-05 07:07:25 +01:00
|
|
|
|
|
2011-02-17 18:45:02 +01:00
|
|
|
|
var selectList = new SelectList(profiles, "QualityProfileId", "Name");
|
2011-02-05 07:07:25 +01:00
|
|
|
|
|
|
|
|
|
var model = new QualityModel
|
2011-04-10 04:44:01 +02:00
|
|
|
|
{
|
|
|
|
|
Profiles = profiles,
|
|
|
|
|
UserProfiles = userProfiles,
|
|
|
|
|
DefaultQualityProfileId = defaultQualityQualityProfileId,
|
|
|
|
|
SelectList = selectList
|
|
|
|
|
};
|
2011-02-03 03:49:52 +01:00
|
|
|
|
|
|
|
|
|
return View("Index", model);
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:32:36 +01:00
|
|
|
|
public ActionResult Notifications()
|
|
|
|
|
{
|
|
|
|
|
ViewData["viewName"] = "Notifications";
|
|
|
|
|
|
|
|
|
|
var model = new NotificationSettingsModel
|
2011-04-10 04:44:01 +02:00
|
|
|
|
{
|
|
|
|
|
XbmcEnabled = Convert.ToBoolean(_configProvider.GetValue("XbmcEnabled", false, true)),
|
2011-04-25 21:02:29 +02:00
|
|
|
|
XbmcNotifyOnGrab = Convert.ToBoolean(_configProvider.GetValue("XbmcNotifyOnGrab", false, true)),
|
|
|
|
|
XbmcNotifyOnDownload = Convert.ToBoolean(_configProvider.GetValue("XbmcNotifyOnDownload", false, true)),
|
|
|
|
|
XbmcNotifyOnRename = Convert.ToBoolean(_configProvider.GetValue("XbmcNotifyOnRename", false, true)),
|
|
|
|
|
XbmcNotificationImage = Convert.ToBoolean(_configProvider.GetValue("XbmcNotificationImage", false, true)),
|
2011-04-10 04:44:01 +02:00
|
|
|
|
XbmcDisplayTime = Convert.ToInt32(_configProvider.GetValue("XbmcDisplayTime", 3, true)),
|
2011-04-25 21:02:29 +02:00
|
|
|
|
XbmcUpdateOnDownload = Convert.ToBoolean(_configProvider.GetValue("XbmcUpdateOnDownload ", false, true)),
|
|
|
|
|
XbmcUpdateOnRename = Convert.ToBoolean(_configProvider.GetValue("XbmcUpdateOnRename", false, true)),
|
|
|
|
|
XbmcFullUpdate = Convert.ToBoolean(_configProvider.GetValue("XbmcFullUpdate", false, true)),
|
|
|
|
|
XbmcCleanOnDownload = Convert.ToBoolean(_configProvider.GetValue("XbmcCleanOnDownload", false, true)),
|
|
|
|
|
XbmcCleanOnRename = Convert.ToBoolean(_configProvider.GetValue("XbmcCleanOnRename", false, true)),
|
2011-04-10 04:44:01 +02:00
|
|
|
|
XbmcHosts = _configProvider.GetValue("XbmcHosts", "localhost:80", true),
|
|
|
|
|
XbmcUsername = _configProvider.GetValue("XbmcUsername", String.Empty, true),
|
|
|
|
|
XbmcPassword = _configProvider.GetValue("XbmcPassword", String.Empty, true)
|
|
|
|
|
};
|
2011-03-07 08:32:36 +01:00
|
|
|
|
|
|
|
|
|
return View("Index", model);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 05:07:22 +01:00
|
|
|
|
public ActionResult EpisodeSorting()
|
|
|
|
|
{
|
|
|
|
|
ViewData["viewName"] = "EpisodeSorting";
|
|
|
|
|
|
|
|
|
|
var model = new EpisodeSortingModel();
|
|
|
|
|
|
|
|
|
|
model.ShowName = Convert.ToBoolean(_configProvider.GetValue("Sorting_ShowName", true, true));
|
|
|
|
|
model.EpisodeName = Convert.ToBoolean(_configProvider.GetValue("Sorting_EpisodeName", true, true));
|
|
|
|
|
model.ReplaceSpaces = Convert.ToBoolean(_configProvider.GetValue("Sorting_ReplaceSpaces", false, true));
|
|
|
|
|
model.AppendQuality = Convert.ToBoolean(_configProvider.GetValue("Sorting_AppendQuality", false, true));
|
|
|
|
|
model.UseAirByDate = Convert.ToBoolean(_configProvider.GetValue("Sorting_UseAirByDate", true, true));
|
2011-04-01 08:36:34 +02:00
|
|
|
|
model.SeasonFolders = _configProvider.UseSeasonFolder;
|
2011-02-26 05:07:22 +01:00
|
|
|
|
model.SeasonFolderFormat = _configProvider.GetValue("Sorting_SeasonFolderFormat", "Season %s", true);
|
|
|
|
|
model.SeparatorStyle = Convert.ToInt32(_configProvider.GetValue("Sorting_SeparatorStyle", 0, true));
|
|
|
|
|
model.NumberStyle = Convert.ToInt32(_configProvider.GetValue("Sorting_NumberStyle", 2, true));
|
|
|
|
|
model.MultiEpisodeStyle = Convert.ToInt32(_configProvider.GetValue("Sorting_MultiEpisodeStyle", 0, true));
|
|
|
|
|
|
|
|
|
|
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("Index", model);
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-05 19:27:14 +01:00
|
|
|
|
public ViewResult AddUserProfile()
|
|
|
|
|
{
|
2011-02-06 08:13:17 +01:00
|
|
|
|
var qualityTypes = new List<QualityTypes>();
|
|
|
|
|
|
2011-04-19 02:12:06 +02:00
|
|
|
|
foreach (QualityTypes qual in Enum.GetValues(typeof(QualityTypes)))
|
2011-02-06 08:13:17 +01:00
|
|
|
|
{
|
|
|
|
|
qualityTypes.Add(qual);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ViewData["Qualities"] = qualityTypes;
|
|
|
|
|
|
2011-04-22 02:30:19 +02:00
|
|
|
|
var qualityProfile = new QualityProfile
|
|
|
|
|
{
|
|
|
|
|
Name = "New Profile",
|
|
|
|
|
UserProfile = true,
|
2011-04-22 19:09:06 +02:00
|
|
|
|
Allowed = new List<QualityTypes> { QualityTypes.Unknown },
|
2011-04-22 02:30:19 +02:00
|
|
|
|
Cutoff = QualityTypes.Unknown,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var id = _qualityProvider.Add(qualityProfile);
|
|
|
|
|
qualityProfile.QualityProfileId = id;
|
|
|
|
|
qualityProfile.Allowed = null;
|
|
|
|
|
|
|
|
|
|
ViewData["ProfileId"] = id;
|
|
|
|
|
|
|
|
|
|
return View("UserProfileSection", qualityProfile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult GetQualityProfileView(QualityProfile profile)
|
|
|
|
|
{
|
|
|
|
|
var qualityTypes = new List<QualityTypes>();
|
|
|
|
|
|
|
|
|
|
foreach (QualityTypes qual in Enum.GetValues(typeof(QualityTypes)))
|
|
|
|
|
{
|
|
|
|
|
qualityTypes.Add(qual);
|
|
|
|
|
}
|
|
|
|
|
ViewData["Qualities"] = qualityTypes;
|
|
|
|
|
ViewData["ProfileId"] = profile.QualityProfileId;
|
|
|
|
|
|
|
|
|
|
return PartialView("UserProfileSection", profile);
|
2011-02-05 19:27:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-09 08:40:48 +01:00
|
|
|
|
public ViewResult AddRootDir()
|
|
|
|
|
{
|
2011-04-27 17:34:53 +02:00
|
|
|
|
var rootDir = new RootDir { Path = String.Empty };
|
|
|
|
|
|
|
|
|
|
var id = _rootDirProvider.Add(rootDir);
|
|
|
|
|
rootDir.Id = id;
|
|
|
|
|
|
|
|
|
|
ViewData["RootDirId"] = id;
|
|
|
|
|
|
|
|
|
|
return View("RootDir", rootDir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult GetRootDirView(RootDir rootDir)
|
|
|
|
|
{
|
|
|
|
|
ViewData["RootDirId"] = rootDir.Id;
|
|
|
|
|
|
|
|
|
|
return PartialView("RootDir", rootDir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JsonResult DeleteRootDir(int rootDirId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_rootDirProvider.Remove(rootDirId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return new JsonResult { Data = "failed" };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new JsonResult { Data = "ok" };
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 07:10:22 +01:00
|
|
|
|
public ActionResult SubMenu()
|
|
|
|
|
{
|
|
|
|
|
return PartialView();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-12 07:10:38 +01:00
|
|
|
|
public QualityModel GetUpdatedProfileList()
|
|
|
|
|
{
|
|
|
|
|
var profiles = _qualityProvider.GetAllProfiles().ToList();
|
2011-04-10 04:44:01 +02:00
|
|
|
|
var defaultQualityQualityProfileId =
|
|
|
|
|
Convert.ToInt32(_configProvider.GetValue("DefaultQualityProfile", profiles[0].QualityProfileId, true));
|
2011-02-17 18:45:02 +01:00
|
|
|
|
var selectList = new SelectList(profiles, "QualityProfileId", "Name");
|
2011-02-16 05:44:19 +01:00
|
|
|
|
|
2011-04-19 02:12:06 +02:00
|
|
|
|
return new QualityModel { DefaultQualityProfileId = defaultQualityQualityProfileId, SelectList = selectList };
|
2011-02-12 07:10:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-22 02:30:19 +02:00
|
|
|
|
public JsonResult DeleteQualityProfile(int profileId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_qualityProvider.Delete(profileId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return new JsonResult { Data = "failed" };
|
|
|
|
|
}
|
2011-04-22 19:09:06 +02:00
|
|
|
|
|
2011-04-22 02:30:19 +02:00
|
|
|
|
return new JsonResult { Data = "ok" };
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-11 08:46:26 +02:00
|
|
|
|
public JsonResult AutoConfigureSab()
|
2011-04-25 09:42:29 +02:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2011-05-11 08:46:26 +02:00
|
|
|
|
var info = _autoConfigureProvider.AutoConfigureSab();
|
|
|
|
|
return Json(info, JsonRequestBehavior.AllowGet);
|
2011-04-25 09:42:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return new JsonResult { Data = "failed" };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-14 09:49:57 +02:00
|
|
|
|
public JsonResult JsonAutoCompletePath(string term)
|
|
|
|
|
{
|
|
|
|
|
var windowsSep = term.LastIndexOf('\\');
|
|
|
|
|
|
|
|
|
|
if (windowsSep > -1)
|
|
|
|
|
{
|
|
|
|
|
var start = term.Substring(windowsSep + 1);
|
|
|
|
|
var dirs = _diskProvider.GetDirectories(term.Substring(0, windowsSep + 1)).Where(d => new DirectoryInfo(d).Name.ToLower().StartsWith(start.ToLower())).Take(10);
|
|
|
|
|
return Json(dirs.ToArray(), JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var index = term.LastIndexOf('/');
|
|
|
|
|
|
|
|
|
|
if (index > -1)
|
|
|
|
|
{
|
|
|
|
|
var start = term.Substring(index + 1);
|
|
|
|
|
var dirs = _diskProvider.GetDirectories(term.Substring(0, index + 1)).Where(d => new DirectoryInfo(d).Name.ToLower().StartsWith(start.ToLower())).Take(10);
|
|
|
|
|
return Json(dirs.ToArray(), JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Json(new JsonResult(), JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 07:10:22 +01:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public ActionResult SaveGeneral(SettingsModel data)
|
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-04-27 17:34:53 +02:00
|
|
|
|
try
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-03-09 08:40:48 +01:00
|
|
|
|
foreach (var dir in data.Directories)
|
|
|
|
|
{
|
2011-04-27 17:34:53 +02:00
|
|
|
|
_rootDirProvider.Update(dir);
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-27 17:34:53 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Failed to save Root Dirs");
|
|
|
|
|
Logger.DebugException(ex.Message, ex);
|
2011-05-13 06:46:26 +02:00
|
|
|
|
|
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-04-27 17:34:53 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
2011-02-11 02:22:29 +01:00
|
|
|
|
|
2011-05-16 09:32:01 +02:00
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
|
|
|
|
|
2011-04-27 17:34:53 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2010-09-24 07:21:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpPost]
|
2011-02-11 02:22:29 +01:00
|
|
|
|
public ActionResult SaveIndexers(IndexerSettingsModel data)
|
2010-09-24 07:21:45 +02:00
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-02-15 02:20:17 +01:00
|
|
|
|
if (ModelState.IsValid)
|
2010-09-24 07:21:45 +02:00
|
|
|
|
{
|
2011-04-20 01:46:21 +02:00
|
|
|
|
var nzbsOrgSettings = _indexerProvider.GetSettings(typeof(NzbsOrgProvider));
|
|
|
|
|
nzbsOrgSettings.Enable = data.NzbsOrgEnabled;
|
|
|
|
|
_indexerProvider.SaveSettings(nzbsOrgSettings);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
var nzbMatrixSettings = _indexerProvider.GetSettings(typeof(NzbMatrixProvider));
|
|
|
|
|
nzbMatrixSettings.Enable = data.NzbMatrixEnabled;
|
|
|
|
|
_indexerProvider.SaveSettings(nzbMatrixSettings);
|
|
|
|
|
|
|
|
|
|
var nzbsRUsSettings = _indexerProvider.GetSettings(typeof(NzbsRUsProvider));
|
|
|
|
|
nzbsRUsSettings.Enable = data.NzbsRUsEnabled;
|
|
|
|
|
_indexerProvider.SaveSettings(nzbsRUsSettings);
|
|
|
|
|
|
|
|
|
|
var newzbinSettings = _indexerProvider.GetSettings(typeof(NewzbinProvider));
|
|
|
|
|
newzbinSettings.Enable = data.NewzbinEnabled;
|
|
|
|
|
_indexerProvider.SaveSettings(newzbinSettings);
|
2011-01-31 02:30:59 +01:00
|
|
|
|
|
2011-04-19 02:12:06 +02:00
|
|
|
|
_configProvider.NzbsOrgUId = data.NzbsOrgUId;
|
2011-04-22 19:09:06 +02:00
|
|
|
|
_configProvider.NzbsOrgHash = data.NzbsOrgHash;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
_configProvider.NzbMatrixUsername = data.NzbMatrixUsername;
|
|
|
|
|
_configProvider.NzbMatrixApiKey = data.NzbMatrixApiKey;
|
|
|
|
|
|
|
|
|
|
_configProvider.NzbsrusUId = data.NzbsrusUId;
|
2011-04-22 19:09:06 +02:00
|
|
|
|
_configProvider.NzbsrusHash = data.NzbsrusHash;
|
2011-04-20 01:46:21 +02:00
|
|
|
|
|
|
|
|
|
_configProvider.NewzbinUsername = data.NewzbinUsername;
|
|
|
|
|
_configProvider.NewzbinPassword = data.NewzbinPassword;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-29 07:10:22 +01:00
|
|
|
|
[HttpPost]
|
2011-02-11 02:22:29 +01:00
|
|
|
|
public ActionResult SaveDownloads(DownloadSettingsModel data)
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-02-11 02:22:29 +01:00
|
|
|
|
if (ModelState.IsValid)
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-05-16 09:32:01 +02:00
|
|
|
|
_configProvider.SyncFrequency = data.SyncFrequency;
|
|
|
|
|
_configProvider.DownloadPropers = data.DownloadPropers;
|
|
|
|
|
_configProvider.Retention = data.Retention;
|
2011-03-31 03:42:27 +02:00
|
|
|
|
_configProvider.SabHost = data.SabHost;
|
2011-05-16 09:32:01 +02:00
|
|
|
|
_configProvider.SabPort = data.SabPort;
|
2011-03-31 03:42:27 +02:00
|
|
|
|
_configProvider.SabApiKey = data.SabApiKey;
|
|
|
|
|
_configProvider.SabPassword = data.SabPassword;
|
|
|
|
|
_configProvider.SabTvCategory = data.SabTvCategory;
|
|
|
|
|
_configProvider.SabUsername = data.SabUsername;
|
2011-05-16 09:32:01 +02:00
|
|
|
|
_configProvider.SabTvPriority = data.SabTvPriority;
|
2011-05-09 05:31:01 +02:00
|
|
|
|
_configProvider.UseBlackhole = data.UseBlackHole;
|
2011-03-31 03:42:27 +02:00
|
|
|
|
_configProvider.BlackholeDirectory = data.BlackholeDirectory;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-02-11 02:22:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-04 03:58:02 +01:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public ActionResult SaveQuality(QualityModel data)
|
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-02-15 02:20:17 +01:00
|
|
|
|
if (ModelState.IsValid)
|
2011-02-04 03:58:02 +01:00
|
|
|
|
{
|
2011-02-17 18:45:02 +01:00
|
|
|
|
_configProvider.SetValue("DefaultQualityProfile", data.DefaultQualityProfileId.ToString());
|
2011-02-15 02:20:17 +01:00
|
|
|
|
|
|
|
|
|
//Saves only the Default Quality, skips User Profiles since none exist
|
|
|
|
|
if (data.UserProfiles == null)
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-02-15 02:20:17 +01:00
|
|
|
|
|
|
|
|
|
foreach (var profile in data.UserProfiles)
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug(String.Format("Updating User Profile: {0}", profile));
|
2011-02-06 08:13:17 +01:00
|
|
|
|
|
2011-02-15 02:20:17 +01:00
|
|
|
|
profile.Allowed = new List<QualityTypes>();
|
|
|
|
|
foreach (var quality in profile.AllowedString.Split(','))
|
2011-02-15 01:45:31 +01:00
|
|
|
|
{
|
2011-04-19 02:12:06 +02:00
|
|
|
|
var qType = (QualityTypes)Enum.Parse(typeof(QualityTypes), quality);
|
2011-02-15 02:20:17 +01:00
|
|
|
|
profile.Allowed.Add(qType);
|
|
|
|
|
}
|
2011-02-15 01:45:31 +01:00
|
|
|
|
|
2011-02-15 02:20:17 +01:00
|
|
|
|
//If the Cutoff value selected is not in the allowed list then use the last allowed value, this should be validated on submit
|
|
|
|
|
if (!profile.Allowed.Contains(profile.Cutoff))
|
|
|
|
|
return Content("Error Saving Settings, please fix any errors");
|
|
|
|
|
//profile.Cutoff = profile.Allowed.Last();
|
2011-02-06 08:13:17 +01:00
|
|
|
|
|
2011-04-22 19:09:06 +02:00
|
|
|
|
_qualityProvider.Update(profile);
|
2011-02-06 08:13:17 +01:00
|
|
|
|
}
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-04-22 02:30:19 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-02-04 03:58:02 +01:00
|
|
|
|
}
|
2011-02-05 07:07:25 +01:00
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2011-02-11 02:22:29 +01:00
|
|
|
|
}
|
2011-02-26 05:07:22 +01:00
|
|
|
|
|
2011-03-07 08:32:36 +01:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public ActionResult SaveNotifications(NotificationSettingsModel data)
|
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-03-07 08:32:36 +01:00
|
|
|
|
if (ModelState.IsValid)
|
|
|
|
|
{
|
|
|
|
|
_configProvider.SetValue("XbmcEnabled", data.XbmcEnabled.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcNotifyOnGrab", data.XbmcNotifyOnGrab.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcNotifyOnDownload", data.XbmcNotifyOnDownload.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcNotifyOnRename", data.XbmcNotifyOnRename.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcNotificationImage", data.XbmcNotificationImage.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcDisplayTime", data.XbmcDisplayTime.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcUpdateOnDownload", data.XbmcUpdateOnDownload.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcUpdateOnRename", data.XbmcUpdateOnRename.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcFullUpdate", data.XbmcFullUpdate.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcCleanOnDownload", data.XbmcCleanOnDownload.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcCleanOnRename", data.XbmcCleanOnRename.ToString());
|
|
|
|
|
_configProvider.SetValue("XbmcHosts", data.XbmcHosts);
|
|
|
|
|
_configProvider.SetValue("XbmcUsername", data.XbmcUsername);
|
|
|
|
|
_configProvider.SetValue("XbmcPassword", data.XbmcPassword);
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-03-07 08:32:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2011-03-07 08:32:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 05:07:22 +01:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public ActionResult SaveEpisodeSorting(EpisodeSortingModel data)
|
|
|
|
|
{
|
2011-05-13 06:46:26 +02:00
|
|
|
|
var basicNotification = new BasicNotification();
|
|
|
|
|
basicNotification.Type = BasicNotificationType.Info;
|
|
|
|
|
basicNotification.AutoDismiss = true;
|
|
|
|
|
|
2011-02-26 05:07:22 +01:00
|
|
|
|
if (ModelState.IsValid)
|
|
|
|
|
{
|
|
|
|
|
_configProvider.SetValue("Sorting_ShowName", data.ShowName.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_EpisodeName", data.EpisodeName.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_ReplaceSpaces", data.ReplaceSpaces.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_AppendQuality", data.AppendQuality.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_UseAirByDate", data.UseAirByDate.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_SeasonFolder", data.SeasonFolders.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_SeasonFolderFormat", data.SeasonFolderFormat);
|
|
|
|
|
_configProvider.SetValue("Sorting_SeparatorStyle", data.SeparatorStyle.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_NumberStyle", data.NumberStyle.ToString());
|
|
|
|
|
_configProvider.SetValue("Sorting_MultiEpisodeStyle", data.MultiEpisodeStyle.ToString());
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_SAVED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_SAVED);
|
2011-02-26 05:07:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-13 06:46:26 +02:00
|
|
|
|
basicNotification.Title = SETTINGS_FAILED;
|
|
|
|
|
_notificationProvider.Register(basicNotification);
|
2011-03-28 23:57:06 +02:00
|
|
|
|
return Content(SETTINGS_FAILED);
|
2011-02-26 05:07:22 +01:00
|
|
|
|
}
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|