forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpHandlerFactory.cs
More file actions
318 lines (261 loc) · 12.9 KB
/
Copy pathHttpHandlerFactory.cs
File metadata and controls
318 lines (261 loc) · 12.9 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using ServiceStack.Host;
using ServiceStack.Host.Handlers;
using ServiceStack.Text;
using ServiceStack.VirtualPath;
using ServiceStack.Web;
namespace ServiceStack
{
public class HttpHandlerFactory : IHttpHandlerFactory
{
public static string WebHostPhysicalPath;
public static string DefaultRootFileName;
private static IHttpHandler DefaultHttpHandler;
private static RedirectHttpHandler NonRootModeDefaultHttpHandler;
private static IHttpHandler ForbiddenHttpHandler;
private static IHttpHandler NotFoundHttpHandler;
private static readonly IHttpHandler StaticFilesHandler = new StaticFileHandler();
[ThreadStatic]
public static string DebugLastHandlerArgs;
internal static void Init()
{
try
{
var isIntegratedPipeline = false;
#if !NETSTANDARD2_0
//MONO doesn't implement this property
var pi = typeof(HttpRuntime).GetProperty("UsingIntegratedPipeline");
if (pi != null)
{
isIntegratedPipeline = (bool) pi.GetGetMethod().Invoke(null, TypeConstants.EmptyObjectArray);
}
#endif
var appHost = HostContext.AppHost;
var config = appHost.Config;
var isAspNetHost = HostContext.IsAspNetHost;
WebHostPhysicalPath = appHost.VirtualFileSources.RootDirectory.RealPath;
//Apache+mod_mono treats path="servicestack*" as path="*" so takes over root path, so we need to serve matching resources
var hostedAtRootPath = config.HandlerFactoryPath == null;
//DefaultHttpHandler not supported in IntegratedPipeline mode
if (!isIntegratedPipeline && isAspNetHost && !hostedAtRootPath && !Env.IsMono)
DefaultHttpHandler = new DefaultHttpHandler();
var rootFiles = appHost.VirtualFileSources.GetRootFiles().ToList();
foreach (var file in rootFiles)
{
var fileNameLower = file.Name.ToLowerInvariant();
if (DefaultRootFileName == null && config.DefaultDocuments.Contains(fileNameLower))
{
//Can't serve Default.aspx pages so ignore and allow for next default document
if (!fileNameLower.EndsWith(".aspx"))
{
DefaultRootFileName = fileNameLower;
StaticFileHandler.SetDefaultFile(file.VirtualPath, file.ReadAllBytes(), file.LastModified);
if (DefaultHttpHandler == null)
DefaultHttpHandler = new StaticFileHandler(file);
}
}
}
if (!string.IsNullOrEmpty(config.DefaultRedirectPath))
{
DefaultHttpHandler = new RedirectHttpHandler { RelativeUrl = config.DefaultRedirectPath };
NonRootModeDefaultHttpHandler = new RedirectHttpHandler { RelativeUrl = config.DefaultRedirectPath };
}
if (DefaultHttpHandler == null && !string.IsNullOrEmpty(config.MetadataRedirectPath))
{
DefaultHttpHandler = new RedirectHttpHandler { RelativeUrl = config.MetadataRedirectPath };
NonRootModeDefaultHttpHandler = new RedirectHttpHandler { RelativeUrl = config.MetadataRedirectPath };
}
if (DefaultHttpHandler == null)
DefaultHttpHandler = NotFoundHttpHandler;
var debugDefaultHandler = DefaultHttpHandler is RedirectHttpHandler defaultRedirectHanlder
? defaultRedirectHanlder.RelativeUrl
: typeof(DefaultHttpHandler).GetOperationName();
ForbiddenHttpHandler = appHost.GetCustomErrorHttpHandler(HttpStatusCode.Forbidden);
if (ForbiddenHttpHandler == null)
{
ForbiddenHttpHandler = new ForbiddenHttpHandler
{
WebHostPhysicalPath = WebHostPhysicalPath,
WebHostUrl = config.WebHostUrl,
DefaultRootFileName = DefaultRootFileName,
DefaultHandler = debugDefaultHandler,
};
}
NotFoundHttpHandler = appHost.GetCustomErrorHttpHandler(HttpStatusCode.NotFound);
if (NotFoundHttpHandler == null)
{
NotFoundHttpHandler = new NotFoundHttpHandler
{
WebHostPhysicalPath = WebHostPhysicalPath,
WebHostUrl = config.WebHostUrl,
DefaultRootFileName = DefaultRootFileName,
DefaultHandler = debugDefaultHandler,
};
}
}
catch (Exception ex)
{
HostContext.AppHost.OnStartupException(ex);
}
}
#if !NETSTANDARD2_0
// Entry point for ASP.NET
public IHttpHandler GetHandler(HttpContext ctx, string requestType, string url, string pathTranslated)
{
var appHost = HostContext.AppHost;
DebugLastHandlerArgs = requestType + "|" + url + "|" + pathTranslated;
var httpReq = new Host.AspNet.AspNetRequest(ctx.Request.RequestContext.HttpContext, url.SanitizedVirtualPath());
foreach (var rawHttpHandler in appHost.RawHttpHandlersArray)
{
var handler = rawHttpHandler(httpReq);
if (handler != null)
return handler;
}
var pathInfo = httpReq.PathInfo;
//WebDev Server auto requests '/default.aspx' so recorrect path to different default document
var mode = appHost.Config.HandlerFactoryPath;
if (mode == null && (url == "/default.aspx" || url == "/Default.aspx"))
pathInfo = "/";
//Default Request /
if (string.IsNullOrEmpty(pathInfo) || pathInfo == "/")
{
//e.g. to Process View Engiine requests
var catchAllHandler = GetCatchAllHandlerIfAny(appHost, httpReq.HttpMethod, pathInfo, httpReq.GetPhysicalPath());
if (catchAllHandler != null) return catchAllHandler;
//If the fallback route can handle it, let it
var restPath = appHost.Config.FallbackRestPath?.Invoke(httpReq);
if (restPath != null)
{
var sanitizedPath = RestHandler.GetSanitizedPathInfo(pathInfo, out var contentType);
return new RestHandler { RestPath = restPath, RequestName = restPath.RequestType.GetOperationName(), ResponseContentType = contentType };
}
if (mode == null)
return DefaultHttpHandler;
if (DefaultRootFileName != null)
return StaticFilesHandler;
return NonRootModeDefaultHttpHandler;
}
return GetHandlerForPathInfo(httpReq, pathTranslated)
?? NotFoundHttpHandler;
}
#endif
// Entry point for HttpListener and .NET Core
public static IHttpHandler GetHandler(IHttpRequest httpReq)
{
var appHost = HostContext.AppHost;
foreach (var rawHttpHandler in appHost.RawHttpHandlersArray)
{
var handler = rawHttpHandler(httpReq);
if (handler != null)
return handler;
}
var mode = appHost.Config.HandlerFactoryPath;
var pathInfo = httpReq.PathInfo;
//Default Request /
if (string.IsNullOrEmpty(pathInfo) || pathInfo == "/")
{
//e.g. to Process View Engiine requests
var catchAllHandler = GetCatchAllHandlerIfAny(appHost, httpReq.HttpMethod, pathInfo, httpReq.GetPhysicalPath());
if (catchAllHandler != null) return catchAllHandler;
//If the fallback route can handle it, let it
RestPath restPath = appHost.Config.FallbackRestPath?.Invoke(httpReq);
if (restPath != null)
{
var sanitizedPath = RestHandler.GetSanitizedPathInfo(pathInfo, out var contentType);
return new RestHandler { RestPath = restPath, RequestName = restPath.RequestType.GetOperationName(), ResponseContentType = contentType };
}
if (mode == null)
return DefaultHttpHandler;
if (DefaultRootFileName != null)
return StaticFilesHandler;
return NonRootModeDefaultHttpHandler;
}
return GetHandlerForPathInfo(httpReq, httpReq.GetPhysicalPath())
?? NotFoundHttpHandler;
}
// no handler registered
// serve the file from the filesystem, restricting to a safelist of extensions
public static bool ShouldAllow(string pathInfo)
{
if (string.IsNullOrEmpty(pathInfo) || pathInfo == "/")
return true;
var config = HostContext.Config;
foreach (var path in config.ForbiddenPaths)
{
if (pathInfo.StartsWith(path))
return false;
}
var parts = pathInfo.SplitOnLast('.');
if (parts.Length == 1 || string.IsNullOrEmpty(parts[1]))
return false;
var fileExt = parts[1];
if (config.AllowFileExtensions.Contains(fileExt))
return true;
foreach (var pathGlob in config.AllowFilePaths)
{
if (pathInfo.GlobPath(pathGlob))
return true;
}
return false;
}
public static IHttpHandler GetHandlerForPathInfo(IHttpRequest httpReq, string filePath)
{
var appHost = HostContext.AppHost;
var pathInfo = httpReq.PathInfo;
var httpMethod = httpReq.Verb;
var pathParts = pathInfo.TrimStart('/').Split('/');
if (pathParts.Length == 0) return NotFoundHttpHandler;
var restPath = RestHandler.FindMatchingRestPath(httpReq, out var contentType);
if (restPath != null)
return new RestHandler { RestPath = restPath, RequestName = restPath.RequestType.GetOperationName(), ResponseContentType = contentType };
var catchAllHandler = GetCatchAllHandlerIfAny(appHost, httpMethod, pathInfo, filePath);
if (catchAllHandler != null)
return catchAllHandler;
var isFile = httpReq.IsFile();
var isDirectory = httpReq.IsDirectory();
if (!isFile && !isDirectory && Env.IsMono)
isDirectory = StaticFileHandler.MonoDirectoryExists(filePath, filePath.Substring(0, filePath.Length - pathInfo.Length));
if (isFile || isDirectory)
{
//If pathInfo is for Directory try again with redirect including '/' suffix
if (appHost.Config.RedirectDirectoriesToTrailingSlashes && isDirectory && !httpReq.OriginalPathInfo.EndsWith("/"))
return new RedirectHttpHandler { RelativeUrl = pathInfo + "/" };
if (isDirectory)
return StaticFilesHandler;
return ShouldAllow(pathInfo)
? StaticFilesHandler
: ForbiddenHttpHandler;
}
if (appHost.Config.FallbackRestPath != null)
{
restPath = appHost.Config.FallbackRestPath(httpReq);
if (restPath != null)
return new RestHandler { RestPath = restPath, RequestName = restPath.RequestType.GetOperationName(), ResponseContentType = contentType };
}
foreach (var httpHandlerResolver in appHost.FallbackHandlersArray)
{
var httpHandler = httpHandlerResolver(httpMethod, pathInfo, filePath);
if (httpHandler != null)
return httpHandler;
}
return null;
}
private static IHttpHandler GetCatchAllHandlerIfAny(ServiceStackHost appHost, string httpMethod, string pathInfo, string filePath)
{
foreach (var httpHandlerResolver in appHost.CatchAllHandlersArray)
{
var httpHandler = httpHandlerResolver(httpMethod, pathInfo, filePath);
if (httpHandler != null)
return httpHandler;
}
return null;
}
public void ReleaseHandler(IHttpHandler handler)
{
}
}
}