mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
63 lines
2.3 KiB
C#
63 lines
2.3 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Mvc;
|
|||
|
using NzbDrone.Core.Providers;
|
|||
|
using NzbDrone.Core.Repository.Quality;
|
|||
|
using NzbDrone.Web.Models;
|
|||
|
using Telerik.Web.Mvc;
|
|||
|
|
|||
|
namespace NzbDrone.Web.Controllers
|
|||
|
{
|
|||
|
public class HistoryController : Controller
|
|||
|
{
|
|||
|
private IHistoryProvider _historyProvider;
|
|||
|
|
|||
|
public HistoryController(IHistoryProvider historyProvider)
|
|||
|
{
|
|||
|
_historyProvider = historyProvider;
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// GET: /History/
|
|||
|
|
|||
|
public ActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
|
|||
|
public ActionResult Trim()
|
|||
|
{
|
|||
|
_historyProvider.Trim();
|
|||
|
return RedirectToAction("Index");
|
|||
|
}
|
|||
|
|
|||
|
public ActionResult Purge()
|
|||
|
{
|
|||
|
_historyProvider.Purge();
|
|||
|
return RedirectToAction("Index");
|
|||
|
}
|
|||
|
|
|||
|
[GridAction]
|
|||
|
public ActionResult _AjaxBinding()
|
|||
|
{
|
|||
|
var history = _historyProvider.AllItems().Select(h => new HistoryModel
|
|||
|
{
|
|||
|
HistoryId = h.HistoryId,
|
|||
|
SeasonNumber = h.Episode.SeasonNumber,
|
|||
|
EpisodeNumber = h.Episode.EpisodeNumber,
|
|||
|
EpisodeTitle = h.Episode.Title,
|
|||
|
EpisodeOverview = h.Episode.Overview,
|
|||
|
SeriesTitle = h.Episode.Series.Title,
|
|||
|
NzbTitle = h.NzbTitle,
|
|||
|
Quality = h.Quality.ToString("G"),
|
|||
|
IsProper = h.IsProper,
|
|||
|
Date = h.Date
|
|||
|
});
|
|||
|
|
|||
|
return View(new GridModel(history));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|