using System; using System.Collections.Generic; using System.IO; using System.Web.Mvc; using System.Linq; using NLog; using NzbDrone.Core.Helpers; using NzbDrone.Core.Providers; using NzbDrone.Core.Providers.Core; using NzbDrone.Core.Providers.Jobs; using NzbDrone.Core.Repository; using NzbDrone.Web.Models; namespace NzbDrone.Web.Controllers { public class AddSeriesController : Controller { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); private readonly ConfigProvider _configProvider; private readonly QualityProvider _qualityProvider; private readonly RootDirProvider _rootFolderProvider; private readonly SeriesProvider _seriesProvider; private readonly JobProvider _jobProvider; private readonly TvDbProvider _tvDbProvider; private readonly DiskProvider _diskProvider; public AddSeriesController(RootDirProvider rootFolderProvider, ConfigProvider configProvider, QualityProvider qualityProvider, TvDbProvider tvDbProvider, SeriesProvider seriesProvider, JobProvider jobProvider, DiskProvider diskProvider) { _rootFolderProvider = rootFolderProvider; _configProvider = configProvider; _qualityProvider = qualityProvider; _tvDbProvider = tvDbProvider; _seriesProvider = seriesProvider; _jobProvider = jobProvider; _diskProvider = diskProvider; } [HttpPost] public JsonResult ScanNewSeries() { _jobProvider.QueueJob(typeof(ImportNewSeriesJob)); return new JsonResult(); } public ActionResult AddNew() { var rootDirs = _rootFolderProvider.GetAll().Select(r => new RootDirModel { Path = r.Path, CleanPath = r.Path.Replace(Path.DirectorySeparatorChar, '|').Replace(Path.VolumeSeparatorChar, '^').Replace('\'', '`') }).ToList(); ViewData["RootDirs"] = rootDirs; ViewData["DirSep"] = Path.DirectorySeparatorChar.ToString().Replace(Path.DirectorySeparatorChar, '|'); var defaultQuality = _configProvider.DefaultQualityProfile; var qualityProfiles = _qualityProvider.GetAllProfiles(); ViewData["quality"] = new SelectList( qualityProfiles, "QualityProfileId", "Name", defaultQuality); return View(); } public ActionResult Index() { var rootDirs = _rootFolderProvider.GetAll(); var profiles = _qualityProvider.GetAllProfiles(); var defaultQuality = Convert.ToInt32(_configProvider.DefaultQualityProfile); var selectList = new SelectList(profiles, "QualityProfileId", "Name", defaultQuality); ViewData["qualities"] = selectList; ViewData["ShowRootDirs"] = false; //There are no RootDirs Show the RootDirs Panel if (rootDirs.Count == 0) ViewData["ShowRootDirs"] = true; return View(rootDirs); } public ActionResult AddExisting() { var rootDirs = _rootFolderProvider.GetAll(); var unmappedList = new List(); foreach (var folder in rootDirs) { unmappedList.AddRange(_rootFolderProvider.GetUnmappedFolders(folder.Path)); } return View(unmappedList); } public ActionResult RenderPartial(string path) { var suggestions = GetSuggestionList(new DirectoryInfo(path).Name); ViewData["guid"] = Guid.NewGuid(); ViewData["path"] = path; ViewData["javaPath"] = path.Replace(Path.DirectorySeparatorChar, '|').Replace(Path.VolumeSeparatorChar, '^').Replace('\'', '`'); var defaultQuality = _configProvider.DefaultQualityProfile; var qualityProfiles = _qualityProvider.GetAllProfiles(); ViewData["quality"] = new SelectList( qualityProfiles, "QualityProfileId", "Name", defaultQuality); return PartialView("AddSeriesItem", suggestions); } [HttpPost] public JsonResult AddNewSeries(string rootPath, string seriesName, int seriesId, int qualityProfileId) { try { var path = rootPath.Replace('|', Path.DirectorySeparatorChar).Replace('^', Path.VolumeSeparatorChar).Replace( '`', '\'') + Path.DirectorySeparatorChar + MediaFileProvider.CleanFilename(seriesName); //Create the folder for the new series and then Add it _diskProvider.CreateDirectory(path); _seriesProvider.AddSeries(path, seriesId, qualityProfileId); ScanNewSeries(); return new JsonResult { Data = "ok" }; } catch (Exception) { return new JsonResult { Data = "failed" }; } } public JsonResult AddSeries(string path, int seriesId, int qualityProfileId) { //Get TVDB Series Name //Create new folder for series //Add the new series to the Database _seriesProvider.AddSeries( path.Replace('|', Path.DirectorySeparatorChar).Replace('^', Path.VolumeSeparatorChar).Replace('`', '\''), seriesId, qualityProfileId); ScanNewSeries(); return new JsonResult { Data = "ok" }; } [HttpPost] public ActionResult _textLookUp(string text, int? filterMode) { var suggestions = GetSuggestionList(text); return new JsonResult { JsonRequestBehavior = JsonRequestBehavior.AllowGet, Data = suggestions }; } public SelectList GetSuggestionList(string searchString) { var dataVal = _tvDbProvider.SearchSeries(searchString); int selectId = 0; if (dataVal.Count != 0) { selectId = dataVal[0].Id; } return new SelectList(dataVal, "Id", "SeriesName", selectId); } //Root Directory [HttpPost] public JsonResult SaveRootDir(int id, string path) { if (String.IsNullOrWhiteSpace(path)) return new JsonResult { Data = "failed" }; try { if (id == 0) id = _rootFolderProvider.Add(new RootDir { Path = path }); else _rootFolderProvider.Update(new RootDir { Id = id, Path = path }); } catch (Exception ex) { Logger.Debug("Failed to save Root Dir"); Logger.DebugException(ex.Message, ex); return new JsonResult { Data = "failed" }; } return new JsonResult { Data = id }; } public PartialViewResult AddRootDir() { var model = new RootDirModel { Id = 0, Path = "", CleanPath = "", SelectList = new SelectList(new List { "" }, "") }; ViewData["guid"] = Guid.NewGuid(); return PartialView("RootDir", model); } public ActionResult GetRootDirView(RootDir rootDir) { var model = new RootDirModel { Id = rootDir.Id, Path = rootDir.Path, SelectList = new SelectList(new List { rootDir.Path }, rootDir.Path) }; ViewData["guid"] = Guid.NewGuid(); return PartialView("RootDir", model); } public JsonResult DeleteRootDir(int rootDirId) { try { _rootFolderProvider.Remove(rootDirId); } catch (Exception) { return new JsonResult { Data = "failed" }; } return new JsonResult { Data = "ok" }; } } }