mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
32 lines
994 B
C#
32 lines
994 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Controllers
|
|
{
|
|
[Route("[controller]/[action]")]
|
|
public class ErrorController : Controller
|
|
{
|
|
public IActionResult Handle(int? statusCode = null)
|
|
{
|
|
if (Request.Headers.TryGetValue("Accept", out var v) && v.Any(v => v.Contains("text/html", StringComparison.OrdinalIgnoreCase)))
|
|
{
|
|
if (statusCode.HasValue)
|
|
{
|
|
var specialPages = new[] { 404, 429, 500 };
|
|
if (specialPages.Any(a => a == statusCode.Value))
|
|
{
|
|
var viewName = statusCode.ToString();
|
|
return View(viewName);
|
|
}
|
|
}
|
|
return View(statusCode);
|
|
}
|
|
return this.StatusCode(statusCode.Value);
|
|
}
|
|
}
|
|
}
|