-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathProxyHTTP.cs
More file actions
119 lines (101 loc) · 3.66 KB
/
Copy pathProxyHTTP.cs
File metadata and controls
119 lines (101 loc) · 3.66 KB
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
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace SMSApi.Api
{
public class ProxyHTTP : Proxy
{
private readonly string baseUrl;
private IClient authentication;
public ProxyHTTP(string baseUrl)
{
this.baseUrl = baseUrl;
}
public void Authentication(IClient client)
{
authentication = client;
}
public HttpResponseEntity Execute(string uri, NameValueCollection data, RequestMethod method)
{
return Execute(uri, data, new Dictionary<string, Stream>(), method);
}
public HttpResponseEntity Execute(
string uri,
NameValueCollection data,
Stream file,
RequestMethod method)
{
return Execute(uri, data, new Dictionary<string, Stream> { { "file", file } }, method);
}
public HttpResponseEntity Execute(
string uri,
NameValueCollection data,
Dictionary<string, Stream> files,
RequestMethod method)
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
HttpClient client = CreateClient();
try
{
return client.SendRequest(method, uri, data, files).Result;
}
catch (System.Exception e)
{
throw new ProxyException("Failed to get response from " + uri, e);
}
}
public async Task<HttpResponseEntity> ExecuteAsync(
string uri,
NameValueCollection data,
RequestMethod method,
CancellationToken cancellationToken = default
)
{
return await ExecuteAsync(uri, data, new Dictionary<string, Stream>(), method);
}
public async Task<HttpResponseEntity> ExecuteAsync(
string uri,
NameValueCollection data,
Stream file,
RequestMethod method,
CancellationToken cancellationToken = default
)
{
return await ExecuteAsync(uri, data, new Dictionary<string, Stream> { { "file", file } }, method);
}
public async Task<HttpResponseEntity> ExecuteAsync(
string uri,
NameValueCollection data,
Dictionary<string, Stream> files,
RequestMethod method,
CancellationToken cancellationToken = default
)
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
HttpClient client = CreateClient();
try
{
return await client.SendRequest(method, uri, data, files, cancellationToken);
}
catch (System.Exception e)
{
throw new ProxyException("Failed to get response from " + uri, e);
}
}
private HttpClient CreateClient()
{
var client = new HttpClient();
client.BaseAddress = new Uri(baseUrl);
client.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", authentication.GetClientAgent());
if (authentication == null) return client;
var authHeader = authentication.DefaultRequestHeaders;
client.DefaultRequestHeaders.Add(authHeader.Key, authHeader.Value);
return client;
}
}
}