forked from Inumedia/SlackAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RequestStateForTask.cs
93 lines (82 loc) · 2.71 KB
/
RequestStateForTask.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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace SlackAPI
{
public class RequestStateForTask<K>
where K : Response
{
public HttpWebRequest request;
Tuple<string, string>[] Post;
public bool Success;
public RequestStateForTask(HttpWebRequest requestData, Tuple<string, string>[] postParameters)
{
request = requestData;
Post = postParameters;
}
internal Task<K> Execute()
{
if (Post.Length == 0)
{
request.Method = "GET";
return this.ExecuteResult();
}
else
{
return this.ExecutePost();
}
}
private async Task<K> ExecuteResult()
{
HttpWebResponse response = null;
try
{
response = (HttpWebResponse)await this.request.GetResponseAsync();
Success = true;
}
catch (WebException we)
{
//Anything that doesn't return error 200 throws an exception. Sucks. :l
response = (HttpWebResponse)we.Response;
//TODO: Handle timeouts, etc?
}
K responseObj;
using (Stream responseReading = response.GetResponseStream())
{
using (StreamReader reader = new StreamReader(responseReading))
{
string responseData = reader.ReadToEnd();
responseObj = JsonConvert.DeserializeObject<K>(responseData, new JavascriptDateTimeConverter());
}
}
return responseObj;
}
private async Task<K> ExecutePost()
{
request.Method = "POST";
using (Stream requestStream = await request.GetRequestStreamAsync())
{
if (Post.Length > 0)
{
using (StreamWriter writer = new StreamWriter(requestStream))
{
bool first = true;
foreach (Tuple<string, string> postEntry in Post)
{
if (!first)
writer.Write(',');
await writer.WriteAsync(string.Format("{0}={1}", Uri.EscapeDataString(postEntry.Item1), Uri.EscapeDataString(postEntry.Item2)));
first = false;
}
}
}
}
return await this.ExecuteResult();
}
}
}