From 6ca23c112342d1027f135a9da3423bc85699e433 Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Thu, 17 Jul 2008 16:51:23 +0000 Subject: rearranging variables in OSHttpRequest and adding Query property. --- OpenSim/Framework/Servers/OSHttpRequest.cs | 67 ++++++++++++++++++++---------- 1 file changed, 45 insertions(+), 22 deletions(-) (limited to 'OpenSim/Framework/Servers/OSHttpRequest.cs') diff --git a/OpenSim/Framework/Servers/OSHttpRequest.cs b/OpenSim/Framework/Servers/OSHttpRequest.cs index 7549f08..0a82a04 100644 --- a/OpenSim/Framework/Servers/OSHttpRequest.cs +++ b/OpenSim/Framework/Servers/OSHttpRequest.cs @@ -26,6 +26,7 @@ */ using System; +using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Net; @@ -37,131 +38,150 @@ namespace OpenSim.Framework.Servers { public class OSHttpRequest { - /// - /// soon to be deprecated - /// - private string[] _acceptTypes; - private Encoding _contentEncoding; - private long _contentLength64; - private string _contentType; - // private CookieCollection _cookies; - private NameValueCollection _headers; - private string _httpMethod; - private Stream _inputStream; - // private bool _isSecureConnection; - // private bool _isAuthenticated; - private bool _keepAlive; - private bool _hasbody; - private string _rawUrl; - private Uri _url; - private NameValueCollection _queryString; - private string _userAgent; - private IPEndPoint _ipEndPoint; - private HttpRequest _request; - private HttpClientContext _context; public string[] AcceptTypes { get { return _acceptTypes; } } + private string[] _acceptTypes; + public Encoding ContentEncoding { get { return _contentEncoding; } } + private Encoding _contentEncoding; + public long ContentLength { get { return _contentLength64; } } + private long _contentLength64; + public long ContentLength64 { get { return ContentLength; } } + public string ContentType { get { return _contentType; } } + private string _contentType; // public CookieCollection Cookies // { // get { return _cookies; } // } + // private CookieCollection _cookies; public NameValueCollection Headers { get { return _headers; } } + private NameValueCollection _headers; public string HttpMethod { get { return _httpMethod; } } + private string _httpMethod; + public Stream InputStream { get { return _inputStream; } } + private Stream _inputStream; + // public bool IsSecureConnection // { // get { return _isSecureConnection; } // } + // private bool _isSecureConnection; + // public bool IsAuthenticated // { // get { return _isAuthenticated; } // } + // private bool _isAuthenticated; + public bool HasEntityBody { get { return _hasbody; } } + private bool _hasbody; + public bool KeepAlive { get { return _keepAlive; } } + private bool _keepAlive; + public string RawUrl { get { return _rawUrl; } } + private string _rawUrl; + public Uri Url { get { return _url; } } + private Uri _url; + public string UserAgent { get { return _userAgent; } } + private string _userAgent; + public NameValueCollection QueryString { get { return _queryString; } } + private NameValueCollection _queryString; + + public Hashtable Query + { + get { return _query; } + } + private Hashtable _query; + public IPEndPoint RemoteIPEndPoint { get { return _ipEndPoint; } } + private IPEndPoint _ipEndPoint; internal HttpRequest HttpRequest { get { return _request; } } + private HttpRequest _request; + internal HttpClientContext HttpClientContext { get { return _context; } } + private HttpClientContext _context; + /// /// Internal whiteboard for handlers to store temporary stuff @@ -178,6 +198,7 @@ namespace OpenSim.Framework.Servers { } + public OSHttpRequest(HttpListenerRequest req) { _acceptTypes = req.AcceptTypes; @@ -221,9 +242,11 @@ namespace OpenSim.Framework.Servers if (null != req.Headers["user-agent"]) _userAgent = req.Headers["user-agent"]; _queryString = new NameValueCollection(); + _query = new Hashtable(); foreach (KeyValuePair q in req.QueryString) { _queryString.Add(q.Key, q.Value.Value); + _query[q.Key] = q.Value.Value; } // TODO: requires change to HttpServer.HttpRequest _ipEndPoint = null; -- cgit v1.1