2012-07-28 08:37:47 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Linq.Dynamic;
|
2011-03-23 06:19:23 +01:00
|
|
|
|
using System.Web.Mvc;
|
2012-02-09 01:26:34 +01:00
|
|
|
|
using System.Web.Script.Serialization;
|
2012-07-28 08:37:47 +02:00
|
|
|
|
using DataTables.Mvc.Core.Models;
|
2012-02-27 05:47:49 +01:00
|
|
|
|
using NzbDrone.Core.Helpers;
|
2011-12-02 02:33:17 +01:00
|
|
|
|
using NzbDrone.Core.Jobs;
|
2011-03-23 06:19:23 +01:00
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Web.Models;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HistoryController : Controller
|
|
|
|
|
{
|
2011-04-10 04:44:01 +02:00
|
|
|
|
private readonly HistoryProvider _historyProvider;
|
2011-08-27 02:59:51 +02:00
|
|
|
|
private readonly JobProvider _jobProvider;
|
2011-03-23 06:19:23 +01:00
|
|
|
|
|
2011-08-27 02:59:51 +02:00
|
|
|
|
public HistoryController(HistoryProvider historyProvider, JobProvider jobProvider)
|
2011-03-23 06:19:23 +01:00
|
|
|
|
{
|
|
|
|
|
_historyProvider = historyProvider;
|
2011-08-27 02:59:51 +02:00
|
|
|
|
_jobProvider = jobProvider;
|
2011-03-23 06:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult Index()
|
2012-02-11 06:00:22 +01:00
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-28 08:37:47 +02:00
|
|
|
|
public ActionResult AjaxBinding(DataTablesPageRequest pageRequest)
|
2011-03-23 06:19:23 +01:00
|
|
|
|
{
|
2012-07-28 08:37:47 +02:00
|
|
|
|
var pageResult = _historyProvider.GetPagedItems(pageRequest);
|
|
|
|
|
var totalItems = _historyProvider.Count();
|
|
|
|
|
|
|
|
|
|
var items = pageResult.Items.Select(h => new HistoryModel
|
2012-02-08 09:17:40 +01:00
|
|
|
|
{
|
|
|
|
|
HistoryId = h.HistoryId,
|
|
|
|
|
SeriesId = h.SeriesId,
|
2012-07-28 08:37:47 +02:00
|
|
|
|
EpisodeNumbering = string.Format("{0}x{1:00}", h.SeasonNumber, h.EpisodeNumber),
|
|
|
|
|
EpisodeTitle = h.EpisodeTitle,
|
|
|
|
|
EpisodeOverview = h.EpisodeOverview,
|
2012-02-08 09:17:40 +01:00
|
|
|
|
SeriesTitle = h.SeriesTitle,
|
2012-02-27 05:47:49 +01:00
|
|
|
|
SeriesTitleSorter = SortHelper.SkipArticles(h.SeriesTitle),
|
2012-02-08 09:17:40 +01:00
|
|
|
|
NzbTitle = h.NzbTitle,
|
|
|
|
|
Quality = h.Quality.ToString(),
|
|
|
|
|
IsProper = h.IsProper,
|
2012-02-09 01:26:34 +01:00
|
|
|
|
Date = h.Date.ToString(),
|
2012-02-14 19:48:13 +01:00
|
|
|
|
DateSorter = h.Date.ToString("MM/dd/yyyy h:mm:ss tt"),
|
2012-02-08 09:17:40 +01:00
|
|
|
|
Indexer = h.Indexer,
|
2012-05-03 00:42:21 +02:00
|
|
|
|
EpisodeId = h.EpisodeId,
|
2012-08-08 01:46:23 +02:00
|
|
|
|
NzbInfoUrl = h.NzbInfoUrl,
|
|
|
|
|
ReleaseGroup = h.ReleaseGroup
|
2012-07-28 08:37:47 +02:00
|
|
|
|
});
|
2012-02-08 09:17:40 +01:00
|
|
|
|
|
2012-02-11 06:00:22 +01:00
|
|
|
|
return Json(new
|
|
|
|
|
{
|
2012-07-28 08:37:47 +02:00
|
|
|
|
sEcho = pageRequest.Echo,
|
|
|
|
|
iTotalRecords = totalItems,
|
|
|
|
|
iTotalDisplayRecords = pageResult.TotalItems,
|
|
|
|
|
aaData = items
|
2012-02-11 06:00:22 +01:00
|
|
|
|
},
|
|
|
|
|
JsonRequestBehavior.AllowGet);
|
2011-03-23 06:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 04:04:35 +02:00
|
|
|
|
public JsonResult Trim()
|
2011-03-23 06:19:23 +01:00
|
|
|
|
{
|
|
|
|
|
_historyProvider.Trim();
|
2012-01-19 06:01:47 +01:00
|
|
|
|
return JsonNotificationResult.Info("Trimmed History");
|
2011-03-23 06:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 04:04:35 +02:00
|
|
|
|
public JsonResult Purge()
|
2011-03-23 06:19:23 +01:00
|
|
|
|
{
|
|
|
|
|
_historyProvider.Purge();
|
2012-01-19 06:01:47 +01:00
|
|
|
|
return JsonNotificationResult.Info("History Cleared");
|
2011-03-23 06:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-27 02:59:51 +02:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public JsonResult Delete(int historyId)
|
|
|
|
|
{
|
|
|
|
|
//Delete the existing item from history
|
|
|
|
|
_historyProvider.Delete(historyId);
|
|
|
|
|
|
2012-01-19 06:01:47 +01:00
|
|
|
|
return JsonNotificationResult.Info("History Item Deleted");
|
2011-08-27 02:59:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public JsonResult Redownload(int historyId, int episodeId)
|
|
|
|
|
{
|
|
|
|
|
//Delete the existing item from history
|
|
|
|
|
_historyProvider.Delete(historyId);
|
|
|
|
|
|
|
|
|
|
//Queue a job to download the replacement episode
|
|
|
|
|
_jobProvider.QueueJob(typeof(EpisodeSearchJob), episodeId);
|
|
|
|
|
|
2012-02-26 22:47:04 +01:00
|
|
|
|
return JsonNotificationResult.Queued("Episode search");
|
2011-08-27 02:59:51 +02:00
|
|
|
|
}
|
2011-03-23 06:19:23 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|