2012-01-23 02:24:16 +00:00
|
|
|
|
using System;
|
2012-02-09 17:41:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Linq.Dynamic;
|
2012-01-23 02:24:16 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Web.Mvc;
|
2012-04-23 06:31:11 +00:00
|
|
|
|
using DataTables.Mvc.Core;
|
2012-04-21 05:02:18 +00:00
|
|
|
|
using DataTables.Mvc.Core.Models;
|
2012-01-23 02:24:16 +00:00
|
|
|
|
using NzbDrone.Common;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2011-08-22 01:00:12 +00:00
|
|
|
|
using NzbDrone.Web.Models;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class LogController : Controller
|
|
|
|
|
{
|
2011-04-10 00:14:51 +00:00
|
|
|
|
private readonly LogProvider _logProvider;
|
2012-03-07 02:59:43 +00:00
|
|
|
|
private readonly EnvironmentProvider _environmentProvider;
|
2012-01-23 02:24:16 +00:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2012-04-21 08:16:15 +00:00
|
|
|
|
public LogController(LogProvider logProvider, EnvironmentProvider environmentProvider,
|
2012-04-23 06:31:11 +00:00
|
|
|
|
DiskProvider diskProvider)
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
|
|
|
|
_logProvider = logProvider;
|
2012-03-07 02:59:43 +00:00
|
|
|
|
_environmentProvider = environmentProvider;
|
2012-01-23 02:24:16 +00:00
|
|
|
|
_diskProvider = diskProvider;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 02:24:16 +00:00
|
|
|
|
public FileContentResult File()
|
|
|
|
|
{
|
|
|
|
|
string log = string.Empty;
|
|
|
|
|
|
2012-03-07 02:59:43 +00:00
|
|
|
|
if (_diskProvider.FileExists(_environmentProvider.GetArchivedLogFileName()))
|
2012-01-23 02:24:16 +00:00
|
|
|
|
{
|
2012-03-07 02:59:43 +00:00
|
|
|
|
log = _diskProvider.ReadAllText(_environmentProvider.GetArchivedLogFileName());
|
2012-01-23 02:24:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-07 02:59:43 +00:00
|
|
|
|
log += _diskProvider.ReadAllText(_environmentProvider.GetLogFileName());
|
2012-01-23 02:24:16 +00:00
|
|
|
|
|
|
|
|
|
return new FileContentResult(Encoding.ASCII.GetBytes(log), "text/plain");
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 02:04:35 +00:00
|
|
|
|
public JsonResult Clear()
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
|
|
|
|
_logProvider.DeleteAll();
|
2011-08-06 02:04:35 +00:00
|
|
|
|
|
2012-01-19 05:01:47 +00:00
|
|
|
|
return JsonNotificationResult.Info("Logs Cleared");
|
2011-09-05 19:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-28 06:37:47 +00:00
|
|
|
|
public ActionResult AjaxBinding(DataTablesPageRequest pageRequest)
|
2012-02-09 17:41:51 +00:00
|
|
|
|
{
|
2013-01-08 08:57:38 +00:00
|
|
|
|
var pageResult = _logProvider.GetPagedItems(pageRequest);
|
|
|
|
|
var totalItems = _logProvider.Count();
|
2012-02-09 17:41:51 +00:00
|
|
|
|
|
2013-01-08 08:57:38 +00:00
|
|
|
|
var items = pageResult.Items.Select(l => new LogModel
|
2012-02-09 17:41:51 +00:00
|
|
|
|
{
|
2013-01-08 08:57:38 +00:00
|
|
|
|
Time = l.Time.ToString(),
|
|
|
|
|
Level = l.Level,
|
|
|
|
|
Source = l.Logger,
|
|
|
|
|
Message = l.Message,
|
|
|
|
|
Method = l.Method,
|
|
|
|
|
ExceptionType = l.ExceptionType,
|
|
|
|
|
Exception = l.Exception
|
|
|
|
|
});
|
2012-02-09 17:41:51 +00:00
|
|
|
|
|
|
|
|
|
return Json(new
|
|
|
|
|
{
|
2012-07-28 06:37:47 +00:00
|
|
|
|
sEcho = pageRequest.Echo,
|
2013-01-08 08:57:38 +00:00
|
|
|
|
iTotalRecords = totalItems,
|
|
|
|
|
iTotalDisplayRecords = pageResult.TotalItems,
|
|
|
|
|
aaData = items
|
2012-02-09 17:41:51 +00:00
|
|
|
|
},
|
|
|
|
|
JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|