-
Notifications
You must be signed in to change notification settings - Fork 0
/
ORiellyHttpClientAdapter.cs
128 lines (110 loc) · 4.24 KB
/
ORiellyHttpClientAdapter.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
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace SafariBooksDownload
{
public class ORiellyHttpClientAdapter
{
private readonly HttpClient client;
private readonly CookieContainer cookieContainer;
public ORiellyHttpClientAdapter()
{
cookieContainer = new CookieContainer();
LoadCookiesFromFile(Config.COOKIES_FILE);
var handler = new HttpClientHandler
{
CookieContainer = cookieContainer,
UseCookies = true,
AllowAutoRedirect = false
};
client = new HttpClient(handler);
client.DefaultRequestHeaders.Add("Accept", @"*/*"); // Example
client.DefaultRequestHeaders.Add("Accept-Encoding", @"deflate"); // Example
client.DefaultRequestHeaders.Add("Referer", @"https://learning.oreilly.com/"); // Example
}
public async Task<HttpResponseMessage> GetAsync(string url)
{
try
{
client.DefaultRequestHeaders.Add("Host", new Uri(url).Host);
var response = await client.GetAsync(url);
UpdateCookies(response); // Update cookies after the request
return response;
}
catch (HttpRequestException e)
{
Console.WriteLine($"Request error: {e.Message}");
return null;
}
}
public async Task<HttpResponseMessage> PostAsync(string url, HttpContent content)
{
try
{
var response = await client.PostAsync(url, content);
UpdateCookies(response); // Update cookies after the request
return response;
}
catch (HttpRequestException e)
{
Console.WriteLine($"Request error: {e.Message}");
return null;
}
}
private string GetCookiesHeader()
{
var cookies = cookieContainer.GetCookies(new Uri(Config.SAFARI_BASE_URL));
return string.Join("; ", cookies.Cast<Cookie>().Select(c => $"{c.Name}={c.Value}"));
}
private void LoadCookiesFromFile(string filePath)
{
//if (File.Exists(filePath))
{
var cookieData = File.ReadAllText(filePath);
var cookies = JsonConvert.DeserializeObject<Dictionary<string, string>>(cookieData);
foreach (var cookie in cookies)
{
cookieContainer.Add(new Uri(Config.SAFARI_BASE_URL), new Cookie(cookie.Key, cookie.Value));
Console.WriteLine(cookie.Key);
}
}
}
private bool UpdateCookies(HttpResponseMessage response)
{
var updatedCookies = false;
IEnumerable<string> cookies;
if (response.Headers.TryGetValues("Set-Cookie", out cookies))
{
foreach (var cookie in cookies)
{
var cookieData = cookie.Split(';')[0];
var cookieKeyValue = cookieData.Split('=');
if (cookieKeyValue.Length == 2)
{
cookieContainer.Add(new Uri(Config.SAFARI_BASE_URL), new Cookie(cookieKeyValue[0], cookieKeyValue[1]));
updatedCookies = true;
}
}
}
if (updatedCookies)
{
SaveCookiesToFile(Config.COOKIES_FILE);
LoadCookiesFromFile(Config.COOKIES_FILE);
}
return updatedCookies;
}
private void SaveCookiesToFile(string filePath)
{
var cookies = new Dictionary<string, string>();
foreach (Cookie cookie in cookieContainer.GetCookies(new Uri(Config.SAFARI_BASE_URL)))
{
cookies[cookie.Name] = cookie.Value;
}
File.WriteAllText(filePath, JsonConvert.SerializeObject(cookies));
}
}
}