| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- //
- // System.Web.Hosting
- //
- // Authors:
- // Patrik Torstensson ([email protected])
- // (class signature from Bob Smith <[email protected]> (C) )
- // Gonzalo Paniagua Javier ([email protected])
- //
- using System;
- using System.IO;
- using System.Text;
- namespace System.Web.Hosting
- {
- [MonoTODO("Implement security demands on the path usage functions (and review)")]
- public class SimpleWorkerRequest : HttpWorkerRequest
- {
- private string _Page;
- private string _Query;
- private string _PathInfo;
- private string _AppVirtualPath;
- private string _AppPhysicalPath;
- private string _AppInstallPath;
- private TextWriter _Output;
- private bool _HasInstallInfo;
- private SimpleWorkerRequest ()
- {
- }
- public SimpleWorkerRequest (string Page, string Query, TextWriter Output)
- {
- _Page = Page;
- ParsePathInfo ();
- _Query = Query;
- AppDomain current = AppDomain.CurrentDomain;
- object o = current.GetData (".appPath");
- if (o == null)
- throw new HttpException ("Cannot get .appPath");
- _AppPhysicalPath = o.ToString ();
- o = current.GetData (".hostingVirtualPath");
- if (o == null)
- throw new HttpException ("Cannot get .hostingVirtualPath");
- _AppVirtualPath = CheckAndAddVSlash (o.ToString ());
- o = current.GetData (".hostingInstallDir");
- if (o == null)
- throw new HttpException ("Cannot get .hostingInstallDir");
- _AppInstallPath = o.ToString ();
- _Output = Output;
- if (_AppPhysicalPath == null)
- throw new HttpException ("Invalid app domain");
- _HasInstallInfo = true;
- }
- public SimpleWorkerRequest (string AppVirtualPath,
- string AppPhysicalPath,
- string Page,
- string Query,
- TextWriter Output)
- {
- if (AppDomain.CurrentDomain.GetData (".appPath") == null)
- throw new HttpException ("Invalid app domain");
- _Page = Page;
- ParsePathInfo ();
- _Query = Query;
- _AppVirtualPath = AppVirtualPath;
- _AppPhysicalPath = CheckAndAddSlash (AppPhysicalPath);
- _Output = Output;
- _HasInstallInfo = false;
- }
- [MonoTODO("Implement security")]
- public override string MachineInstallDirectory
- {
- get {
- if (_HasInstallInfo)
- return _AppInstallPath;
- return null;
- }
- }
- [MonoTODO("Get config path from Web.Config class")]
- public override string MachineConfigPath
- {
- get {
- return "MachineConfigPath"; //FIXME
- }
- }
- public override void EndOfRequest ()
- {
- }
- public override void FlushResponse (bool finalFlush)
- {
- }
- public override string GetAppPath ()
- {
- return _AppVirtualPath;
- }
- public override string GetAppPathTranslated ()
- {
- return _AppPhysicalPath;
- }
- public override string GetFilePath ()
- {
- return CreatePath (false);
- }
- public override string GetFilePathTranslated ()
- {
- if (Path.DirectorySeparatorChar != '/')
- return _AppPhysicalPath + _Page.Replace ('/', Path.DirectorySeparatorChar);
- return _AppPhysicalPath + _Page;
- }
- public override string GetHttpVerbName ()
- {
- return "GET";
- }
- public override string GetHttpVersion ()
- {
- return "HTTP/1.0";
- }
- public override string GetLocalAddress ()
- {
- return "127.0.0.1";
- }
- public override int GetLocalPort ()
- {
- return 80;
- }
- public override string GetPathInfo ()
- {
- return (null != _PathInfo) ? _PathInfo : String.Empty;
- }
- public override string GetQueryString ()
- {
- return _Query;
- }
- public override string GetRawUrl ()
- {
- string path = CreatePath (true);
- if (null != _Query && _Query.Length > 0)
- return path + "?" + _Query;
- return path;
- }
- public override string GetRemoteAddress()
- {
- return "127.0.0.1";
- }
- public override int GetRemotePort()
- {
- return 0;
- }
- public override string GetServerVariable(string name)
- {
- return String.Empty;
- }
- public override string GetUriPath()
- {
- return CreatePath (true);
- }
- public override IntPtr GetUserToken()
- {
- return IntPtr.Zero;
- }
- public override string MapPath (string path)
- {
- string sPath = _AppPhysicalPath.Substring (0, _AppPhysicalPath.Length - 1);
- if (path != null && path.Length > 0 && path [0] != '/')
- return sPath;
-
- char sep = Path.DirectorySeparatorChar;
- if (path.StartsWith(_AppVirtualPath)) {
- if (sep == '/')
- return _AppPhysicalPath + path.Substring (_AppVirtualPath.Length);
- else
- return _AppPhysicalPath + path.Substring (_AppVirtualPath.Length).Replace ('/', sep);
- }
- return null;
- }
- public override void SendKnownResponseHeader (int index, string value)
- {
- }
- public override void SendResponseFromFile (IntPtr handle, long offset, long length)
- {
- }
- public override void SendResponseFromFile (string filename, long offset, long length)
- {
- }
- public override void SendResponseFromMemory (byte [] data, int length)
- {
- _Output.Write (Encoding.Default.GetChars (data, 0, length));
- }
- public override void SendStatus(int statusCode, string statusDescription)
- {
- }
- public override void SendUnknownResponseHeader(string name, string value)
- {
- }
- // Create's a path string
- private string CheckAndAddSlash(string sPath)
- {
- if (null == sPath)
- return null;
- if (!sPath.EndsWith ("" + Path.DirectorySeparatorChar))
- return sPath + Path.DirectorySeparatorChar;
- return sPath;
- }
- // Creates a path string
- private string CheckAndAddVSlash(string sPath)
- {
- if (null == sPath)
- return null;
- if (!sPath.EndsWith ("/"))
- return sPath + "/";
- return sPath;
- }
- // Create's a path string
- private string CreatePath (bool bIncludePathInfo)
- {
- string sPath;
- if ("/" != _AppVirtualPath)
- sPath = "/" + _Page;
- else
- sPath = String.Empty;
- if (bIncludePathInfo && null != _PathInfo)
- return sPath + _PathInfo;
- return sPath;
- }
- // Parses out the string after / known as the "path info"
- private void ParsePathInfo ()
- {
- /* int iPos = _Page.LastIndexOf("/");
- if (iPos >= 0) {
- _PathInfo = _Page.Substring (iPos);
- _Page = _Page.Substring (0, iPos);
- }*/
- }
- }
- }
|