2011-04-10 04:44:01 +02:00
|
|
|
|
using System.Web.Mvc;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2011-08-22 03:00:12 +02:00
|
|
|
|
using NzbDrone.Web.Models;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
using Telerik.Web.Mvc;
|
2011-09-05 21:59:39 +02:00
|
|
|
|
using System.Linq;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class LogController : Controller
|
|
|
|
|
{
|
2011-04-10 02:14:51 +02:00
|
|
|
|
private readonly LogProvider _logProvider;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
|
2011-04-10 02:14:51 +02:00
|
|
|
|
public LogController(LogProvider logProvider)
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
|
|
|
|
_logProvider = logProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult Index()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-05 21:59:39 +02:00
|
|
|
|
public ActionResult All()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 04:04:35 +02:00
|
|
|
|
public JsonResult Clear()
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
|
|
|
|
_logProvider.DeleteAll();
|
2011-08-06 04:04:35 +02:00
|
|
|
|
|
2011-09-05 21:59:39 +02:00
|
|
|
|
return Json(new NotificationResult { Title = "Logs Cleared" });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[GridAction]
|
|
|
|
|
public ActionResult _TopAjaxBinding()
|
|
|
|
|
{
|
|
|
|
|
var logs = _logProvider.TopLogs();
|
|
|
|
|
|
|
|
|
|
return View(new GridModel(logs));
|
2010-10-24 09:46:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-03 08:41:50 +02:00
|
|
|
|
[GridAction(EnableCustomBinding = true)]
|
2011-09-05 21:59:39 +02:00
|
|
|
|
public ActionResult _AllAjaxBinding(GridCommand gridCommand)
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
2011-09-03 08:41:50 +02:00
|
|
|
|
var logs = _logProvider.GetPagedLogs(gridCommand.Page, gridCommand.PageSize);
|
|
|
|
|
|
|
|
|
|
return View(new GridModel{ Data = logs.Items, Total = (int)logs.TotalItems });
|
2010-10-24 09:46:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|