File: RestHandlerFactory.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (55 lines) | stat: -rw-r--r-- 2,425 bytes parent folder | download | duplicates (7)
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
//------------------------------------------------------------------------------
// <copyright file="RestHandlerFactory.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
 


namespace System.Web.Script.Services {

    internal class RestHandlerFactory : IHttpHandlerFactory {
        internal const string ClientProxyRequestPathInfo = "/js";
        internal const string ClientDebugProxyRequestPathInfo = "/jsdebug";

        public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated) {
            if (context == null) {
                throw new ArgumentNullException("context");
            }

            if (IsClientProxyRequest(context.Request.PathInfo)) {
                // It's a request for client side proxies
                return new RestClientProxyHandler();
            }
            else {
                // The request is an actual call to a server method
                return RestHandler.CreateHandler(context);
            }
        }

        public virtual void ReleaseHandler(IHttpHandler handler) {
        }

        // Detects if this is a request we want to intercept, i.e. invocation or proxy request
        internal static bool IsRestRequest(HttpContext context) {
            return IsRestMethodCall(context.Request) || IsClientProxyRequest(context.Request.PathInfo);
        }

        // Detects if this is a method invocation, i.e. webservice call or page method call
        internal static bool IsRestMethodCall(HttpRequest request) {
            return
                !String.IsNullOrEmpty(request.PathInfo) &&
                (request.ContentType.StartsWith("application/json;", StringComparison.OrdinalIgnoreCase) ||
                string.Equals(request.ContentType, "application/json", StringComparison.OrdinalIgnoreCase));
        }

        internal static bool IsClientProxyDebugRequest(string pathInfo) {
            return string.Equals(pathInfo, ClientDebugProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase);
        }

        internal static bool IsClientProxyRequest(string pathInfo) {
            return (string.Equals(pathInfo, ClientProxyRequestPathInfo, StringComparison.OrdinalIgnoreCase) ||
                IsClientProxyDebugRequest(pathInfo));
        }
    }
}