/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the OpenSimulator Project nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Net; using System.Reflection; using System.Text; using OSHttpServer; using log4net; using System.Runtime.CompilerServices; namespace OpenSim.Framework.Servers.HttpServer { public class OSHttpRequest : IOSHttpRequest { //private static readonly ILog _log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); protected readonly IHttpRequest m_request = null; public string[] AcceptTypes { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.AcceptTypes; } } public Encoding ContentEncoding { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_contentEncoding; } } private Encoding m_contentEncoding; public long ContentLength { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.ContentLength; } } public long ContentLength64 { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.ContentLength; } } public string ContentType { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_contentType; } } private string m_contentType; public bool HasEntityBody { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.ContentLength != 0; } } public NameValueCollection Headers { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Headers; } } public string HttpMethod { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Method; } } public Stream InputStream { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Body; } } public bool IsSecured { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Context.IsSecured; } } public bool KeepAlive { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return ConnectionType.KeepAlive == m_request.Connection; } } public NameValueCollection QueryString { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.QueryString;} } private Hashtable m_queryAsHashtable = null; public Hashtable Query { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { if (m_queryAsHashtable == null) BuildQueryHashtable(); return m_queryAsHashtable; } } //faster than Query private Dictionary _queryAsDictionay = null; public Dictionary QueryAsDictionary { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { if (_queryAsDictionay == null) BuildQueryDictionary(); return _queryAsDictionay; } } private HashSet m_queryFlags = null; public HashSet QueryFlags { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { if (m_queryFlags == null) BuildQueryDictionary(); return m_queryFlags; } } /// /// POST request values, if applicable /// // public Hashtable Form { get; private set; } public string RawUrl { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Uri.AbsolutePath; } } public IPEndPoint RemoteIPEndPoint { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.RemoteIPEndPoint; } } public IPEndPoint LocalIPEndPoint { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.LocalIPEndPoint; } } public Uri Url { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Uri; } } public string UriPath { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.UriPath; } } public string UserAgent { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_userAgent; } } private string m_userAgent; public double ArrivalTS { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.ArrivalTS;} } internal IHttpRequest IHttpRequest { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request; } } internal IHttpClientContext IHttpClientContext { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return m_request.Context; } } /// /// Internal whiteboard for handlers to store temporary stuff /// into. /// internal Dictionary Whiteboard { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return _whiteboard; } } private Dictionary _whiteboard = new Dictionary(); public OSHttpRequest() {} public OSHttpRequest(IHttpRequest req) { m_request = req; if (null != req.Headers["content-encoding"]) { try { m_contentEncoding = Encoding.GetEncoding(m_request.Headers["content-encoding"]); } catch { // ignore } } if (null != req.Headers["content-type"]) m_contentType = m_request.Headers["content-type"]; if (null != req.Headers["user-agent"]) m_userAgent = req.Headers["user-agent"]; //Form = new Hashtable(); //foreach (HttpInputItem item in req.Form) //{ // _log.DebugFormat("[OSHttpRequest]: Got form item {0}={1}", item.Name, item.Value); // Form.Add(item.Name, item.Value); //} } private void BuildQueryDictionary() { NameValueCollection q = m_request.QueryString; _queryAsDictionay = new Dictionary(); m_queryFlags = new HashSet(); for(int i = 0; i < q.Count; ++i) { try { var name = q.GetKey(i); if(!string.IsNullOrEmpty(name)) _queryAsDictionay[name] = q[i]; else m_queryFlags.Add(q[i]); } catch {} } } private void BuildQueryHashtable() { NameValueCollection q = m_request.QueryString; m_queryAsHashtable = new Hashtable(); m_queryFlags = new HashSet(); for (int i = 0; i < q.Count; ++i) { try { var name = q.GetKey(i); if (!string.IsNullOrEmpty(name)) m_queryAsHashtable[name] = q[i]; else m_queryFlags.Add(q[i]); } catch { } } } public override string ToString() { StringBuilder me = new StringBuilder(); me.Append($"OSHttpRequest: {HttpMethod} {RawUrl}\n"); foreach (string k in Headers.AllKeys) { me.Append($" {k}: {Headers[k]}\n"); } if (null != RemoteIPEndPoint) { me.Append($" IP: {RemoteIPEndPoint}\n"); } return me.ToString(); } } }