-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPreAndPostActionHandler.cs
43 lines (40 loc) · 1.44 KB
/
PreAndPostActionHandler.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
using System;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace MultiTenancyFramework.WebAPI
{
/// <summary>
/// Handles what happens before and after request is processed.
/// Issue with this: the IPrincipal disappears when we go out of WebAPI context.
/// However, it's host-agnostic.
/// </summary>
public class PreAndPostActionHandler : DelegatingHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
if (!Validate(request))
{
var response = new HttpResponseMessage(HttpStatusCode.Forbidden);
var tsc = new TaskCompletionSource<HttpResponseMessage>();
tsc.SetResult(response);
return tsc.Task;
}
return base.SendAsync(request, cancellationToken)
.ContinueWith(task =>
{
// work on the response
var response = task.Result;
response.Headers.Add("X-Dummy-Header", Guid.NewGuid().ToString());
return response;
}, cancellationToken);
}
//TODO: work on the request validation
private bool Validate(HttpRequestMessage request)
{
//throw new NotImplementedException();
return true;
}
}
}