-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotFoundHttpRequestHandler.cs
51 lines (44 loc) · 1.69 KB
/
NotFoundHttpRequestHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Collections.Generic;
using System.IO;
using Packet.Interfaces.Server;
namespace Packet.Handlers
{
/// <summary>
/// Represents a HTTP handler that serves 404 not found responses for nonexistent resources.
/// </summary>
public class NotFoundHttpRequestHandler : HttpRequestHandler
{
private readonly IUrlResolver _urlResolver;
private readonly IErrorPageContentRetriever _errorPageContentRetriever;
/// <summary>
/// Initializes a new instance of a HTTP handler that serves 404 not found responses for nonexistent resources.
/// </summary>
/// <param name="urlResolver">The URL resolver service.</param>
/// <param name="errorPageContentRetriever">The error page content retrieval service.</param>
public NotFoundHttpRequestHandler(
IUrlResolver urlResolver,
IErrorPageContentRetriever errorPageContentRetriever)
{
_urlResolver = urlResolver;
_errorPageContentRetriever = errorPageContentRetriever;
}
protected override IHttpResponse AttemptHandle(IHttpRequest request)
{
var resolvedPath = _urlResolver.Resolve(request.Url);
// Defer if file exists.
if (File.Exists(resolvedPath))
{
return null;
}
return new FullHttpResponse(request.Version)
{
StatusCode = 404,
Headers = new Dictionary<string, string>
{
{"Content-Type", "text/html"}
},
Content = _errorPageContentRetriever.GetEncodedErrorPageContent(404)
};
}
}
}