-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormsByAirClient.cs
353 lines (298 loc) · 14.3 KB
/
FormsByAirClient.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
using FormsByAir.SDK.Model;
using RestSharp;
using System;
using System.Collections.Generic;
using System.Linq;
namespace FormsByAir.SDK
{
public class FormsByAirClient
{
private string ApiKey;
private string EndPoint = "https://formsbyair.com";
private RestClient client;
public FormsByAirClient(string apiKey, string endPoint = null)
{
ApiKey = apiKey;
client = new RestClient(endPoint ?? EndPoint);
client.UserAgent = "FormsByAir Connect";
}
public void SetDelivered(string documentDeliveryId)
{
var request = new RestRequest("api/v1/documents/deliveries/{id}/delivered", Method.PUT);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentDeliveryId);
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public void RedeliverDocument(string documentId)
{
var request = new RestRequest("api/v1/documents/{id}/redeliver", Method.PUT);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public void Redeliver(string documentDeliveryId)
{
var request = new RestRequest("api/v1/documents/deliveries/{id}/redeliver", Method.PUT);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentDeliveryId);
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public void LogDeliveryException(string documentDeliveryId, string message, string stackTrace)
{
var request = new RestRequest("api/v1/documents/deliveries/exceptions", Method.POST);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddJsonBody(new DeliveryException { DocumentDeliveryId = documentDeliveryId, Message = message, StackTrace = stackTrace });
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.Created)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public void UpdateWorkflowStatus(string documentId, string workflowStatusId)
{
var request = new RestRequest("api/v1/documents/{id}/workflowstatus", Method.PUT);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
request.AddJsonBody(new Document { WorkflowStatusId = workflowStatusId });
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public Schema GetDocument(string documentId)
{
var request = new RestRequest("api/v1/documents/{id}", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
var response = client.Execute<DocumentResponse>(request);
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return null;
}
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
response.Data.Schema.Form.SetParent();
return response.Data.Schema;
}
public DocumentInformation GetDocumentInformation(string documentId)
{
var request = new RestRequest("api/v1/documents/{id}/information", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
var response = client.Execute<DocumentInformation>(request);
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return null;
}
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data;
}
public void DeleteDocument(string documentId, string comment = null)
{
var request = new RestRequest("api/v1/documents/{id}", Method.DELETE);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
if (!string.IsNullOrEmpty(comment))
{
request.AddQueryParameter("comment", comment);
}
var response = client.Execute<DocumentResponse>(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
}
public List<Document> GetDocuments(string documentStatusId = null, string formId = null, int? currentPage = null, int? itemsPerPage = null)
{
var request = new RestRequest("api/v1/documents", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
if (!string.IsNullOrEmpty(documentStatusId))
{
request.AddQueryParameter("documentStatusId", documentStatusId);
}
if (!string.IsNullOrEmpty(formId))
{
request.AddQueryParameter("formId", formId);
}
if (currentPage.HasValue)
{
request.AddQueryParameter("currentPage", currentPage.Value.ToString());
}
if (itemsPerPage.HasValue)
{
request.AddQueryParameter("itemsPerPage", itemsPerPage.Value.ToString());
}
var response = client.Execute<List<Document>>(request);
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return null;
}
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data;
}
public Entity GetSubscriptionMap(string subscriptionId)
{
var request = new RestRequest("api/v1/subscriptions/{id}/map", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", subscriptionId);
var response = client.Execute<Entity>(request);
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return null;
}
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data;
}
public FileDelivery GetFile(DocumentDelivery documentDelivery, bool attachments = true)
{
var request = new RestRequest("documents/deliveries/{id}", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddUrlSegment("id", documentDelivery.DocumentDeliveryId);
request.AddQueryParameter("attachments", attachments.ToString());
var response = client.Execute(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
var contentDisposition = response.Headers.SingleOrDefault(a => a.Name == "Content-Disposition").Value.ToString().Split(';');
var filename = contentDisposition.Single(a => a.Contains("filename=")).Replace("filename=", "").Replace("\"", "").Trim();
var fileDelivery = new FileDelivery();
fileDelivery.FileName = filename;
fileDelivery.File = response.RawBytes;
fileDelivery.FilePath = documentDelivery.Subscription.FilePath;
return fileDelivery;
}
public List<DocumentDelivery> GetFileDeliveriesForDocument(string documentId)
{
var request = new RestRequest("api/v1/documents/{id}/deliveries/files", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddUrlSegment("id", documentId);
var response = client.Execute<List<DocumentDelivery>>(request);
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
return null;
}
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data;
}
public List<DocumentDelivery> GetPendingDocumentDeliveries()
{
var request = new RestRequest("api/v1/documents/deliveries/pending", Method.GET);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
var response = client.Execute<List<DocumentDelivery>>(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data;
}
public string GenerateRequest(DocumentRequest documentRequest)
{
var request = new RestRequest("api/v1/documents/request", Method.POST);
request.AddHeader("Authorization", "Bearer " + ApiKey);
request.AddHeader("Content-Type", "application/json");
request.AddJsonBody(documentRequest);
var response = client.Execute<DocumentRequestResponse>(request);
if (response.ErrorException != null)
{
throw new Exception(response.ErrorException.Message);
}
if (response.StatusCode != System.Net.HttpStatusCode.Created)
{
throw new Exception(string.IsNullOrEmpty(response.Content) ? response.StatusDescription : response.Content);
}
return response.Data.DocumentId;
}
}
}