mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
0b586de226
A bunch of files changed removing System.Linq, thanks Resharper :(
208 lines
6.7 KiB
C#
208 lines
6.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Web.Mvc;
|
|
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()
|
|
{
|
|
ViewData["RootDirs"] = _rootFolderProvider.GetAll().Select(c => c.Path).OrderBy(e => e).ToList();
|
|
|
|
var defaultQuality = _configProvider.DefaultQualityProfile;
|
|
var qualityProfiles = _qualityProvider.All();
|
|
|
|
ViewData["qualityList"] = qualityProfiles;
|
|
|
|
ViewData["quality"] = new SelectList(
|
|
qualityProfiles,
|
|
"QualityProfileId",
|
|
"Name",
|
|
defaultQuality);
|
|
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
public ActionResult ExistingSeries()
|
|
{
|
|
var result = new ExistingSeriesModel();
|
|
|
|
var unmappedList = new List<String>();
|
|
|
|
foreach (var folder in _rootFolderProvider.GetAll())
|
|
{
|
|
unmappedList.AddRange(_rootFolderProvider.GetUnmappedFolders(folder.Path));
|
|
}
|
|
|
|
result.ExistingSeries = new List<Tuple<string, string>>();
|
|
|
|
foreach (var folder in unmappedList)
|
|
{
|
|
var foldername = new DirectoryInfo(folder).Name;
|
|
var tvdbResult = _tvDbProvider.SearchSeries(foldername).FirstOrDefault();
|
|
|
|
var title = String.Empty;
|
|
if (tvdbResult != null)
|
|
{
|
|
title = tvdbResult.SeriesName;
|
|
}
|
|
|
|
result.ExistingSeries.Add(new Tuple<string, string>(folder, title));
|
|
}
|
|
|
|
var defaultQuality = Convert.ToInt32(_configProvider.DefaultQualityProfile);
|
|
result.Quality = new SelectList(_qualityProvider.All(), "QualityProfileId", "Name", defaultQuality);
|
|
|
|
return View(result);
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult AddNewSeries(string path, string seriesName, int qualityProfileId)
|
|
{
|
|
path = Path.Combine(path, MediaFileProvider.CleanFilename(seriesName));
|
|
return AddExistingSeries(path, seriesName, qualityProfileId);
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult AddExistingSeries(string path, string seriesName, int qualityProfileId)
|
|
{
|
|
try
|
|
{
|
|
//Create the folder for the new series and then Add it
|
|
_diskProvider.CreateDirectory(path);
|
|
|
|
var series = _tvDbProvider.SearchSeries(seriesName).Where(s => s.SeriesName == seriesName).Single();
|
|
|
|
_seriesProvider.AddSeries(path, series.Id, qualityProfileId);
|
|
ScanNewSeries();
|
|
return Json(new NotificationResult() { Title = seriesName, Text = "Was added successfully" });
|
|
}
|
|
|
|
catch (Exception ex)
|
|
{
|
|
return Json(new NotificationResult() { Title = "Failed", Text = ex.Message, NotificationType = NotificationType.Error});
|
|
}
|
|
}
|
|
|
|
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" };
|
|
}
|
|
|
|
|
|
//Root Directory
|
|
[HttpPost]
|
|
public JsonResult SaveRootDir(string path)
|
|
{
|
|
if (String.IsNullOrWhiteSpace(path))
|
|
return new JsonResult { Data = "failed" };
|
|
|
|
try
|
|
{
|
|
_rootFolderProvider.Add(new RootDir { 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 = "ok" };
|
|
}
|
|
|
|
[HttpGet]
|
|
public JsonResult LookupSeries(string q)
|
|
{
|
|
|
|
var dataVal = _tvDbProvider.SearchSeries(q);
|
|
|
|
return Json(dataVal.Select(c => new KeyValuePair<int, string>(c.Id, c.SeriesName)), JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
public ActionResult RootList()
|
|
{
|
|
IEnumerable<String> rootDir = _rootFolderProvider.GetAll().Select(c => c.Path).OrderBy(e => e);
|
|
return PartialView("RootList", rootDir);
|
|
}
|
|
|
|
public ActionResult RootDir()
|
|
{
|
|
return PartialView("RootDir");
|
|
}
|
|
|
|
public JsonResult DeleteRootDir(string path)
|
|
{
|
|
try
|
|
{
|
|
var id = _rootFolderProvider.GetAll().Where(c => c.Path == path).First().Id;
|
|
_rootFolderProvider.Remove(id);
|
|
}
|
|
|
|
catch (Exception)
|
|
{
|
|
return new JsonResult { Data = "failed" };
|
|
}
|
|
|
|
return new JsonResult { Data = "ok" };
|
|
}
|
|
}
|
|
} |