Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SimpleWorkerRequest.cs « System.Web.Hosting « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7793e189eef5840e195cac70ffca59727bd0dc56 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// 
// System.Web.Hosting
//
// Author:
//   Patrik Torstensson (Patrik.Torstensson@labs2.com)
//   (class signature from Bob Smith <bob@thestuff.net> (C) )
//
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;
         _Query = Query;

         _AppVirtualPath = System.Threading.Thread.GetDomain().GetData(".ASP.Net.App.VirtualPath").ToString();
         _AppInstallPath = AppDomain.CurrentDomain.GetData(".ASP.Net.App.InstallPath").ToString();
         _AppPhysicalPath = CheckAndAddSlash(AppDomain.CurrentDomain.GetData(".ASP.Net.App.Path").ToString());

         _Output = Output;

         if (_AppPhysicalPath == null) {
            // needs to be in a initialized app domain
            throw new HttpException("Invalid app domain");
         }

         _HasInstallInfo = true;
      }

      public SimpleWorkerRequest(string AppVirtualPath, string AppPhysicalPath, string Page, string Query, TextWriter Output) {
         if (AppDomain.CurrentDomain.GetData(".ASP.Net.App.Path") == null) {
            // needs to be in a initialized app domain
            throw new HttpException("Invalid app domain");
         }

         _Page = Page;
         _Query = Query;
         _AppVirtualPath = AppVirtualPath;
         _AppPhysicalPath = CheckAndAddSlash(AppPhysicalPath);
         _Output = Output;

         _HasInstallInfo = true;
      }

      [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;
         }
      }

      public override void EndOfRequest() {
      }

      public override void FlushResponse(bool finalFlush) {
         _Output.Flush();
      }

      public override string GetAppPath() {
         return _AppVirtualPath;
      }

      [MonoTODO("Implement security")]
      public override string GetAppPathTranslated() {
         return _AppPhysicalPath;
      }

      public override string GetFilePath() {
         return CreatePath(false);
      }

      [MonoTODO("Implement security")]
      public override string GetFilePathTranslated() {
         return _AppPhysicalPath + _Page.Replace('/', '\\');
      }

      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;
      }

      [MonoTODO("Implement security")]
      public override string GetPathInfo() {
         if (null != _PathInfo) {
            return _PathInfo;
         }

         return System.String.Empty;
      }

      public override string GetQueryString() {
         return _Query;
      }

      public override string GetRawUrl() {
         if (null != _Query && _Query.Length > 0) {
            return CreatePath(true) + "?" + _Query;
         }

         return CreatePath(true);
      }

      public override string GetRemoteAddress() {
         return "127.0.0.1";
      }

      public override int GetRemotePort() {
         return 0;
      }

      public override string GetServerVariable(string name) {
         return System.String.Empty;
      }

      public override string GetUriPath() {
         return CreatePath(true);
      }

      public override IntPtr GetUserToken() {
         return System.IntPtr.Zero;
      }

      public override string MapPath(string path) {
         string sPath = _AppPhysicalPath.Substring(0, _AppPhysicalPath.Length - 1);
         if (path != null && path.Length > 0 && path != "/") {
            return sPath;
         }

         if (path.StartsWith(_AppVirtualPath)) {
            return sPath + path.Substring(_AppVirtualPath.Length).Replace('/', '\\');
         }

         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("\\")) {
            return sPath + "\\";
         }

         return sPath;
      }

      // Create's a path string
      private string CreatePath(bool bIncludePathInfo) {
         string sPath;

         if ("/" == _AppVirtualPath) {
            sPath = _AppVirtualPath + "/" + _Page;
         } else {
            sPath = "/" + _Page;
         }

         if (bIncludePathInfo && null != _PathInfo) {
            return sPath + _PathInfo;
         }

         return sPath;
      }

      // Parses out the string after / know as the "path info"
      private void ParsePathInfo() {
         int iPos = _Page.IndexOf("/");
         if (iPos >= 0) {
            _PathInfo = _Page.Substring(iPos);
            _Page = _Page.Substring(0, iPos);
         }
      }
   }
}