-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRequest.cs
269 lines (240 loc) · 6.71 KB
/
Request.cs
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
using System;
using System.IO;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Text;
namespace RealtyCloudAPI
{
internal class Request
{
public delegate void AsyncResponseCallback(bool success, object value, string errMsg);
private HttpWebRequest request;
public Request(string[] path, string[,] requestData, X509Certificate certificate = null)
{
StringBuilder sb = new StringBuilder(128);
RequestBuilder(sb, path, requestData);
request = (HttpWebRequest)WebRequest.Create(sb.ToString());
request.Method = "GET";
request.Timeout = 100000;
request.Credentials = CredentialCache.DefaultCredentials;
if(certificate != null) request.ClientCertificates = new X509CertificateCollection(new X509Certificate[] { certificate });
else request.ServerCertificateValidationCallback += ValidateCertificate;
}
public void SetAPIKey(string key)
{
request.Headers.Set("API-Key", key);
}
#region POST
public object POSTRequest(byte[] data)
{
request.Method = "POST";
request.ContentType = "application/json";
request.ContentLength = data.Length;
request.GetRequestStream().Write(data, 0, data.Length);
return SyncResponse(HttpStatusCode.Created);
}
public void POSTRequestAsync(byte[] data, AsyncResponseCallback callback)
{
if(callback == null) throw new ArgumentNullException("callback");
request.Method = "POST";
request.ContentType = "application/json";
request.ContentLength = data.Length;
request.BeginGetRequestStream(OnRequetStream, new RequestInfo() { data = data, callback = callback });
}
private void OnRequetStream(IAsyncResult ar)
{
var info = (RequestInfo)ar.AsyncState;
try
{
info.stream = request.EndGetRequestStream(ar);
info.stream.BeginWrite(info.data, 0, info.data.Length, OnWriteEnd, info);
}
catch(Exception)
{
info.InvokeMessage(false, "Async: get request stream error");
throw;
}
}
private void OnWriteEnd(IAsyncResult ar)
{
var info = (RequestInfo)ar.AsyncState;
try
{
info.stream.EndWrite(ar);
request.BeginGetResponse(OnResponse, new ResponseInfo() { callback = info.callback, responseCode = HttpStatusCode.Created });
}
catch(Exception)
{
info.InvokeMessage(false, "Async: get request stream error");
throw;
}
}
#endregion
#region GET
public object GETRequest()
{
return SyncResponse(HttpStatusCode.OK);
}
public void GETRequestAsync(AsyncResponseCallback callback)
{
if(callback == null) throw new ArgumentNullException("callback");
request.BeginGetResponse(OnResponse, new ResponseInfo() { callback = callback, responseCode = HttpStatusCode.OK });
}
#endregion
#region response
private object SyncResponse(HttpStatusCode responseCode)
{
using(var response = (HttpWebResponse)request.GetResponse())
{
if(response.StatusCode == responseCode)
{
string str;
using(var reader = new StreamReader(response.GetResponseStream()))
{
str = reader.ReadToEnd();
}
object obj;
if(JSON.TryParse(str, out obj))
{
return obj;
}
else
{
System.Diagnostics.Debug.WriteLine("Invalid JSON string: " + str);
}
return null;
}
else
{
using(var reader = new StreamReader(response.GetResponseStream()))
{
throw new WebException("Network exception: " + (int)response.StatusCode + " " + reader.ReadToEnd(), null, WebExceptionStatus.UnknownError, response);
}
}
}
}
private void OnResponse(IAsyncResult ar)
{
var info = (ResponseInfo)ar.AsyncState;
try
{
var response = (HttpWebResponse)request.EndGetResponse(ar);
if(response.StatusCode == info.responseCode)
{
info.response = response;
info.dataStream = new MemoryStream(ResponseInfo.BUFFER_SIZE);
info.dataBuffer = new byte[ResponseInfo.BUFFER_SIZE];
info.responseStream = response.GetResponseStream();
info.responseStream.BeginRead(info.dataBuffer, 0, ResponseInfo.BUFFER_SIZE, OnRead, info);
}
else
{
using(var reader = new StreamReader(response.GetResponseStream()))
{
throw new WebException("Network exception: " + (int)response.StatusCode + " " + reader.ReadToEnd(), null, WebExceptionStatus.UnknownError, response);
}
}
}
catch(Exception)
{
info.InvokeMessage(false, "Async: get response error");
throw;
}
}
private void OnRead(IAsyncResult ar)
{
var info = (ResponseInfo)ar.AsyncState;
try
{
int read = info.responseStream.EndRead(ar);
if(read > 0)
{
info.dataStream.Write(info.dataBuffer, 0, read);
info.responseStream.BeginRead(info.dataBuffer, 0, ResponseInfo.BUFFER_SIZE, OnRead, info);
}
else
{
info.responseStream.Close();
info.response.Close();
if(info.dataStream.Length > 0)
{
info.dataStream.Position = 0;
string str;
using(var reader = new StreamReader(info.dataStream))
{
str = reader.ReadToEnd();
}
object obj;
if(JSON.TryParse(str, out obj))
{
info.InvokeValue(obj);
}
else
{
System.Diagnostics.Debug.WriteLine("Invalid JSON string: " + str);
info.InvokeMessage(true, "Invalid JSON string");
}
}
else info.InvokeMessage(false, "Async: data is emty");
}
}
catch(Exception)
{
info.InvokeMessage(false, "Async: read error");
throw;
}
}
#endregion
private static bool ValidateCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{
return true;
}
private static void RequestBuilder(StringBuilder sb, string[] path, string[,] request)
{
for(int i = 0; i < path.Length; i++)
{
if(i > 0) sb.Append('/');
sb.Append(path[i]);
}
if(request.Length > 0)
{
sb.Append('?');
for(int i = 0; i < request.GetLength(0); i++)
{
sb.Append(request[i, 0]);
sb.Append('=');
sb.Append(Uri.EscapeDataString(request[i, 1]));
}
}
}
private class RequestInfo
{
public byte[] data;
public Stream stream;
public AsyncResponseCallback callback;
public void InvokeMessage(bool success, string errMsg)
{
callback.Invoke(success, null, errMsg);
}
}
private class ResponseInfo
{
public const int BUFFER_SIZE = 1024;
public HttpStatusCode responseCode;
public HttpWebResponse response;
public Stream responseStream;
public MemoryStream dataStream;
public byte[] dataBuffer;
public AsyncResponseCallback callback;
public void InvokeMessage(bool success, string errMsg)
{
callback.Invoke(success, null, errMsg);
}
public void InvokeValue(object value)
{
callback.Invoke(true, value, "");
}
}
}
}