Lidarr/NzbDrone.Api/ErrorManagement/ErrorHandler.cs

35 lines
1.1 KiB
C#
Raw Normal View History

2013-07-19 03:47:55 +00:00
using Nancy;
using Nancy.ErrorHandling;
2013-02-23 20:35:26 +00:00
using NzbDrone.Api.Extensions;
2013-02-19 01:13:42 +00:00
namespace NzbDrone.Api.ErrorManagement
{
public class ErrorHandler : IStatusCodeHandler
{
public bool HandlesStatusCode(HttpStatusCode statusCode, NancyContext context)
{
return true;
}
public void Handle(HttpStatusCode statusCode, NancyContext context)
{
if (statusCode == HttpStatusCode.SeeOther || statusCode == HttpStatusCode.OK)
return;
if (statusCode == HttpStatusCode.Continue)
{
context.Response = new Response { StatusCode = statusCode };
return;
}
2013-05-22 00:58:57 +00:00
if (statusCode == HttpStatusCode.Unauthorized)
return;
if (context.Response.ContentType == "text/html" || context.Response.ContentType == "text/plain")
context.Response = new ErrorModel
{
Message = statusCode.ToString()
}.AsResponse(statusCode);
}
}
}