-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPIHelper.cs
More file actions
221 lines (196 loc) · 8.83 KB
/
APIHelper.cs
File metadata and controls
221 lines (196 loc) · 8.83 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
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
using System;
using System.Text;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web;
using System.Text.Json;
using System.Threading.Tasks;
using SimpletextingAPI.Models;
namespace SimpletextingAPI.Services
{
public static class ApiHelper
{
static int perPage = 500;
private static async Task<List<TItem>> FetchPaginatedApiData<TItem>(string apiKey, string baseUrl, Func<ApiResponse<TItem>, List<TItem>> getContent)
{
var results = new List<TItem>();
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
int page = 0;
bool moreResults = true;
while (moreResults)
{
try
{
string pageUrl = baseUrl.Replace("page=0", $"page={page}");
var response = await client.GetAsync(pageUrl);
if (response.IsSuccessStatusCode)
{
var jsonOptions = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true
};
var jsonResponse = await response.Content.ReadAsStringAsync();
var apiResponse = JsonSerializer.Deserialize<ApiResponse<TItem>>(jsonResponse, jsonOptions);
var items = getContent(apiResponse ?? new ApiResponse<TItem>());
if (items != null && items.Count > 0)
{
results.AddRange(items);
moreResults = items.Count == perPage;
}
else
{
moreResults = false;
}
}
else
{
Console.WriteLine($"API request failed: {response.ReasonPhrase}");
moreResults = false;
}
}
catch (HttpRequestException httpEx)
{
Console.WriteLine($"HTTP request error: {httpEx.Message}");
moreResults = false;
}
catch (JsonException jsonEx)
{
Console.WriteLine($"JSON deserialization error: {jsonEx.Message}");
moreResults = false;
}
catch (Exception ex)
{
Console.WriteLine($"An unexpected error occurred: {ex.Message}");
moreResults = false;
}
page++;
}
}
return results;
}
public static Task<List<User>> FetchApiUsers(string apiKey)
{
string url = $"https://api-app2.simpletexting.com/v2/api/contacts?page=0&size={perPage}";
return FetchPaginatedApiData<User>(
apiKey,
url,
response => response.Content ?? []);
}
public static Task<List<ContactList>> FetchApiContactLists(string apiKey)
{
string url = $"https://api-app2.simpletexting.com/v2/api/contact-lists?page=0&size={perPage}";
return FetchPaginatedApiData<ContactList>(
apiKey,
url,
response => response.Content ?? []);
}
private static async Task<bool> ExecuteHttpRequest(HttpClient client, Func<Task<HttpResponseMessage>> httpCall, string operationDescription)
{
try
{
var response = await httpCall();
if (response.IsSuccessStatusCode)
{
Console.WriteLine($"Success {operationDescription}");
return true;
}
else
{
Console.WriteLine($"Failed {operationDescription}. Status: {response.StatusCode} - {response.ReasonPhrase}");
return false;
}
}
catch (HttpRequestException httpEx)
{
Console.WriteLine($"HTTP request error while {operationDescription}: {httpEx.Message}");
return false;
}
catch (Exception ex)
{
Console.WriteLine($"Unexpected error while {operationDescription}: {ex.Message}");
return false;
}
}
public static async Task RemoveUsers(string apiKey, List<User> users)
{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
foreach (var user in users)
{
var phoneNumber = user.ContactPhone;
var operationDescription = $"removing user: {user.FirstName} {user.LastName}, Phone: {phoneNumber}";
await ExecuteHttpRequest(client,
() => client.DeleteAsync($"https://api-app2.simpletexting.com/v2/api/contacts/{phoneNumber}"),
operationDescription);
}
}
}
public static async Task CreateLists(string apiKey, List<string> lists)
{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
foreach (var list in lists)
{
var requestBody = new { name = list };
var json = JsonSerializer.Serialize(requestBody);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var operationDescription = $"adding list: {list}";
await ExecuteHttpRequest(client,
() => client.PostAsync("https://api-app2.simpletexting.com/v2/api/contact-lists", content),
operationDescription);
}
}
}
public static async Task UpdateUsers(string apiKey, List<User> users)
{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
foreach (var user in users)
{
var requestBody = new
{
firstName = user.FirstName,
lastName = user.LastName,
contactPhone = user.ContactPhone,
listIds = user.ListNames
};
var json = JsonSerializer.Serialize(requestBody);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var operationDescription = $"updating user: {user.FirstName} {user.LastName}, Phone: {user.ContactPhone}";
await ExecuteHttpRequest(client,
() => client.PutAsync($"https://api-app2.simpletexting.com/v2/api/contacts/{user.ContactPhone}?upsert=true&listsReplacement=true", content),
operationDescription);
}
}
}
public static async Task AddUsers(string apiKey, List<User> users)
{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
foreach (var user in users)
{
var requestBody = new
{
firstName = user.FirstName,
lastName = user.LastName,
contactPhone = user.ContactPhone,
listIds = user.ListNames
};
var json = JsonSerializer.Serialize(requestBody);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var operationDescription = $"adding user: {user.FirstName} {user.LastName}, Phone: {user.ContactPhone}";
await ExecuteHttpRequest(client,
() => client.PostAsync("https://api-app2.simpletexting.com/v2/api/contacts", content),
operationDescription);
}
}
}
}
}