OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
OSHttpHandler.cs
Go to the documentation of this file.
1 /*
2  * Copyright (c) Contributors, http://opensimulator.org/
3  * See CONTRIBUTORS.TXT for a full list of copyright holders.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of the OpenSimulator Project nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 using System;
29 using System.Collections.Generic;
30 using System.IO;
31 using System.Text.RegularExpressions;
32 
33 namespace OpenSim.Framework.Servers.HttpServer
34 {
53  public enum OSHttpHandlerResult
54  {
56  Pass,
57  Done,
58  }
59 
67  public delegate bool OSHttpContentTypeChecker(OSHttpRequest req);
68 
69  public abstract class OSHttpHandler
70  {
77  public virtual Regex Method
78  {
79  get { return _method; }
80  }
81  protected Regex _method;
82 
89  public virtual Regex Path
90  {
91  get { return _path; }
92  }
93  protected Regex _path;
94 
99  public virtual Dictionary<string, Regex> Query
100  {
101  get { return _query; }
102  }
103  protected Dictionary<string, Regex> _query;
104 
109  public virtual Dictionary<string, Regex> Headers
110  {
111  get { return _headers; }
112  }
113  protected Dictionary<string, Regex> _headers;
114 
124  public virtual Regex IPEndPointWhitelist
125  {
126  get { return _ipEndPointRegex; }
127  }
128  protected Regex _ipEndPointRegex;
129 
130 
140  public OSHttpHandler(Regex method, Regex path, Dictionary<string, Regex> query,
141  Dictionary<string, Regex> headers, Regex contentType, Regex whitelist)
142  {
143  _method = method;
144  _path = path;
145  _query = query;
146  _ipEndPointRegex = whitelist;
147 
148  if (null == _headers && null != contentType)
149  {
150  _headers = new Dictionary<string, Regex>();
151  _headers.Add("content-type", contentType);
152  }
153  }
154 
155 
165  public abstract OSHttpHandlerResult Process(OSHttpRequest request);
166 
167  public override string ToString()
168  {
169  StringWriter sw = new StringWriter();
170  sw.WriteLine("{0}", base.ToString());
171  sw.WriteLine(" method regex {0}", null == Method ? "null" : Method.ToString());
172  sw.WriteLine(" path regex {0}", null == Path ? "null": Path.ToString());
173  foreach (string tag in Headers.Keys)
174  {
175  sw.WriteLine(" header {0} : {1}", tag, Headers[tag].ToString());
176  }
177  sw.WriteLine(" IP whitelist {0}", null == IPEndPointWhitelist ? "null" : IPEndPointWhitelist.ToString());
178  sw.WriteLine();
179  sw.Close();
180  return sw.ToString();
181  }
182  }
183 }
delegate bool OSHttpContentTypeChecker(OSHttpRequest req)
An OSHttpHandler that matches on the "content-type" header can supply an OSHttpContentTypeChecker del...
OSHttpHandler(Regex method, Regex path, Dictionary< string, Regex > query, Dictionary< string, Regex > headers, Regex contentType, Regex whitelist)
Base class constructor.