-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathQueueWebService.cs
More file actions
475 lines (411 loc) · 12 KB
/
QueueWebService.cs
File metadata and controls
475 lines (411 loc) · 12 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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
using System;
using System.Text;
using System.Threading.Tasks;
using Waher.Content;
using Waher.Content.Html;
using Waher.Content.Markdown;
using Waher.Content.Multipart;
using Waher.Events;
using Waher.IoTGateway;
using Waher.Networking.HTTP;
using Waher.Persistence;
using Waher.Runtime.Collections;
using Waher.Runtime.IO;
using Waher.Script;
namespace Waher.WebService.Queue
{
/// <summary>
/// Provides a REST web service interface for access to local queues.
/// </summary>
public class QueueWebService : HttpAsynchronousResource,
IHttpGetMethod, IHttpPostMethod, IHttpPutMethod, IHttpDeleteMethod
{
private const string RootPrivilege = "Admin.Queues.";
private readonly HttpAuthenticationScheme[] authenticationSchemes;
/// <summary>
/// Provides a REST web service interface for access to local queues.
/// </summary>
/// <param name="ResourceName">Resource name.</param>
/// <param name="AuthenticationSchemes">Authentication schemes.</param>
public QueueWebService(string ResourceName,
params HttpAuthenticationScheme[] AuthenticationSchemes)
: base(ResourceName)
{
this.authenticationSchemes = AuthenticationSchemes;
}
/// <summary>
/// If the resource handles sub-paths.
/// </summary>
public override bool HandlesSubPaths => true;
/// <summary>
/// If the resource uses user sessions.
/// </summary>
public override bool UserSessions => false;
/// <summary>
/// Any authentication schemes used to authenticate users before access is granted to the corresponding resource.
/// </summary>
/// <param name="Request">Current request</param>
public override HttpAuthenticationScheme[] GetAuthenticationSchemes(HttpRequest Request)
{
if (Request.Header.Method.ToUpper() == "GET")
return null;
else
return this.authenticationSchemes;
}
/// <summary>
/// If the GET method is allowed.
/// </summary>
public bool AllowsGET => true;
/// <summary>
/// If the POST method is allowed.
/// </summary>
public bool AllowsPOST => true;
/// <summary>
/// If the PUT method is allowed.
/// </summary>
public bool AllowsPUT => true;
/// <summary>
/// If the DELETE method is allowed.
/// </summary>
public bool AllowsDELETE => true;
/// <summary>
/// Executes the GET method on the resource.
/// </summary>
/// <param name="Request">HTTP Request</param>
/// <param name="Response">HTTP Response</param>
/// <exception cref="HttpException">If an error occurred when processing the method.</exception>
public async Task GET(HttpRequest Request, HttpResponse Response)
{
byte[] Data = Resources.LoadResource(
typeof(QueueWebService).Namespace + ".Data.ApiDocumentation.md",
typeof(QueueWebService).Assembly);
string Markdown = Strings.GetString(Data, Encoding.UTF8);
MarkdownSettings Settings = new MarkdownSettings(null, true, new Variables())
{
RootFolder = Gateway.RootFolder,
ResourceMap = Gateway.HttpServer
};
MarkdownDocument Doc = await MarkdownDocument.CreateAsync(Markdown, Settings,
null, Request.Resource.ResourceName, Request.Header.GetURL());
string Html = await Doc.GenerateHTML();
Response.ContentType = HtmlCodec.DefaultContentType;
await Response.Write(Html);
await Response.SendResponse();
}
/// <summary>
/// Executes the PUT method on the resource. (Enqueue)
/// </summary>
/// <param name="Request">HTTP Request</param>
/// <param name="Response">HTTP Response</param>
/// <exception cref="HttpException">If an error occurred when processing the method.</exception>
public async Task PUT(HttpRequest Request, HttpResponse Response)
{
if (Request.User is null)
{
await Response.SendResponse(new ForbiddenException("Access denied."));
return;
}
string QueueName = GetQueueName(Request);
if (string.IsNullOrEmpty(QueueName))
{
await Response.SendResponse(new BadRequestException("Invalid or unspecified Queue Name."));
return;
}
string Privilege = RootPrivilege + QueueName + ".Enqueue";
if (!Request.User.HasPrivilege(Privilege))
{
await Response.SendResponse(ForbiddenException.AccessDenied(Request,
this.ResourceName, Request.User.UserName, Privilege));
return;
}
if (!Request.HasData)
{
await Response.SendResponse(new BadRequestException("No payload."));
return;
}
string s = Request.Header.ContentType?.Value ?? string.Empty;
int i = s.IndexOf(';');
if (i > 0)
s = s[..i].Trim();
if (HttpFolderResource.IsProtected(s))
{
await Response.SendResponse(new ForbiddenException("Protected Content Type."));
return;
}
ContentResponse Payload = await Request.DecodeDataAsync();
if (Payload.HasError)
{
await Response.SendResponse(new BadRequestException("Unable to decode payload: " + Payload.Error.Message));
return;
}
int Timeout = 30000;
if (Request.Header.TryGetQueryParameter("Timeout", out s))
{
if (int.TryParse(s, out i) && i >= 0 && i < 90000)
Timeout = i;
else
{
await Response.SendResponse(new BadRequestException("Invalid Timeout value."));
return;
}
}
object Decoded = Payload.Decoded;
IPersistedQueue Queue = await Database.GetQueue(QueueName);
Task _ = Task.Run(async () =>
{
try
{
if (Decoded is MultipartContent MultipartContent)
{
foreach (EmbeddedContent Content in MultipartContent.Content)
{
if (Content.Decoded is null)
continue;
if (!await Queue.Enqueue(Content.Decoded, Timeout))
{
await Response.SendResponse(new ServiceUnavailableException(
"Unable to enqueue item within timeout period."));
return;
}
}
Response.StatusCode = 204;
await Response.SendResponse();
}
else if (await Queue.Enqueue(Decoded, Timeout))
{
Response.StatusCode = 204;
await Response.SendResponse();
}
else
{
await Response.SendResponse(new ServiceUnavailableException(
"Unable to enqueue item within timeout period."));
}
}
catch (Exception ex)
{
Log.Exception(ex);
await Response.SendResponse(new UnprocessableEntityException());
}
});
}
private static string GetQueueName(HttpRequest Request)
{
if (string.IsNullOrEmpty(Request.SubPath))
return null;
string s = Request.SubPath[1..];
if (s.IndexOf('/') >= 0 ||
s.IndexOf('.') >= 0 ||
s.IndexOfAny(CommonTypes.ControlCharacters) >= 0)
{
return null;
}
return s;
}
/// <summary>
/// Executes the POST method on the resource.
/// </summary>
/// <param name="Request">HTTP Request</param>
/// <param name="Response">HTTP Response</param>
/// <exception cref="HttpException">If an error occurred when processing the method.</exception>
public async Task POST(HttpRequest Request, HttpResponse Response)
{
DateTime Start = DateTime.UtcNow;
if (Request.User is null)
{
await Response.SendResponse(new ForbiddenException("Access denied."));
return;
}
string QueueName = GetQueueName(Request);
if (string.IsNullOrEmpty(QueueName))
{
await Response.SendResponse(new BadRequestException("Invalid or unspecified Queue Name."));
return;
}
string Privilege = RootPrivilege + QueueName + ".Dequeue";
if (!Request.User.HasPrivilege(Privilege))
{
await Response.SendResponse(ForbiddenException.AccessDenied(Request,
this.ResourceName, Request.User.UserName, Privilege));
return;
}
if (Request.HasData)
{
await Response.SendResponse(new BadRequestException("Request accepts no payload."));
return;
}
int Timeout = 30000;
int Count = 1;
bool Multipart = false;
int i;
if (Request.Header.TryGetQueryParameter("Timeout", out string s))
{
if (int.TryParse(s, out i) && i >= 0 && i < 90000)
Timeout = i;
else
{
await Response.SendResponse(new BadRequestException("Invalid Timeout value."));
return;
}
}
if (Request.Header.TryGetQueryParameter("Count", out s))
{
if (int.TryParse(s, out i) && i > 0)
{
Count = i;
Multipart = true;
}
else
{
await Response.SendResponse(new BadRequestException("Invalid Count value."));
return;
}
}
int MinTimeout = Timeout;
if (Request.Header.TryGetQueryParameter("MinTimeout", out s))
{
if (int.TryParse(s, out i) && i > 0)
MinTimeout = Math.Min(i, Timeout);
else
{
await Response.SendResponse(new BadRequestException("Invalid MinTimeout value."));
return;
}
}
bool Peek = false;
if (Request.Header.TryGetQueryParameter("Peek", out s))
{
if (int.TryParse(s, out i) && i >= 0 && i <= 1)
{
Peek = i == 1;
if (Peek && Multipart)
{
await Response.SendResponse(new BadRequestException("Peek and Count parameters cannot be used simultanerously."));
return;
}
}
else
{
await Response.SendResponse(new BadRequestException("Invalid Peek value."));
return;
}
}
IPersistedQueue Queue = await Database.GetQueue(QueueName, true);
if (Queue is null)
{
await Response.SendResponse(new NotFoundException("Queue not found."));
return;
}
if (Peek)
{
object Item = await Queue.Peek();
if (Item is null)
{
Response.StatusCode = 204;
await Response.SendResponse();
}
else
await Response.Return(Item);
return;
}
Task _ = Task.Run(async () =>
{
try
{
if (Multipart)
{
ChunkedList<EmbeddedContent> Items = new ChunkedList<EmbeddedContent>();
int TimeLeft = Timeout;
while (TimeLeft >= 0 && Count > 0)
{
DateTime TP = DateTime.UtcNow;
TimeLeft = Timeout - (int)(TP - Start).TotalMilliseconds;
object Item = await Queue.Dequeue(Math.Max(0, TimeLeft));
if (Item is null)
break;
ContentResponse Encoded = await InternetContent.EncodeAsync(Item, Encoding.UTF8);
if (Encoded.HasError)
{
await Response.SendResponse(Encoded.Error);
return;
}
Count--;
Timeout = MinTimeout;
Items.Add(new EmbeddedContent()
{
Raw = Encoded.Encoded,
ContentType = Encoded.ContentType
});
}
await Response.Return(new MixedContent(Items.ToArray()));
}
else
{
object Item = await Queue.Dequeue(Timeout);
if (Item is null)
{
Response.StatusCode = 204;
await Response.SendResponse();
}
else
await Response.Return(Item);
}
}
catch (Exception ex)
{
Log.Exception(ex);
await Response.SendResponse(ex);
}
});
}
/// <summary>
/// Executes the DELETE method on the resource.
/// </summary>
/// <param name="Request">HTTP Request</param>
/// <param name="Response">HTTP Response</param>
/// <exception cref="HttpException">If an error occurred when processing the method.</exception>
public async Task DELETE(HttpRequest Request, HttpResponse Response)
{
if (Request.User is null)
{
await Response.SendResponse(new ForbiddenException("Access denied."));
return;
}
string QueueName = GetQueueName(Request);
if (string.IsNullOrEmpty(QueueName))
{
await Response.SendResponse(new BadRequestException("Invalid or unspecified Queue Name."));
return;
}
string Privilege = RootPrivilege + QueueName + ".Clear";
if (!Request.User.HasPrivilege(Privilege))
{
await Response.SendResponse(ForbiddenException.AccessDenied(Request,
this.ResourceName, Request.User.UserName, Privilege));
return;
}
if (Request.HasData)
{
await Response.SendResponse(new BadRequestException("Request accepts no payload."));
return;
}
IPersistedQueue Queue = await Database.GetQueue(QueueName, true);
if (Queue is null)
{
await Response.SendResponse(new NotFoundException("Queue not found."));
return;
}
try
{
await Queue.Clear();
Response.StatusCode = 204;
await Response.SendResponse();
}
catch (Exception ex)
{
Log.Exception(ex);
await Response.SendResponse(ex);
}
}
}
}