forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExceptionController.cs
More file actions
201 lines (170 loc) · 7.01 KB
/
Copy pathExceptionController.cs
File metadata and controls
201 lines (170 loc) · 7.01 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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http.Controllers;
using System.Web.Http.Filters;
namespace System.Web.Http
{
public class ExceptionController : ApiController
{
public static string ResponseExceptionHeaderKey = "responseExceptionStatusCode";
public HttpResponseMessage Unavailable()
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.ServiceUnavailable));
}
public Task<HttpResponseMessage> AsyncUnavailable()
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.ServiceUnavailable));
}
public Task<HttpResponseMessage> AsyncUnavailableDelegate()
{
return Task.Factory.StartNew<HttpResponseMessage>(() => { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.ServiceUnavailable)); });
}
public HttpResponseMessage ArgumentNull()
{
throw new ArgumentNullException("foo");
}
public Task<HttpResponseMessage> AsyncArgumentNull()
{
return Task.Factory.StartNew<HttpResponseMessage>(() => { throw new ArgumentNullException("foo"); });
}
[HttpGet]
public string GetException()
{
return "foo";
}
[HttpGet]
public string GetString()
{
return "bar";
}
public T GenericAction<T>() where T : User
{
return null;
}
[AuthenticationFilterAuthenticateThrows]
public void AuthenticationFilterAuthenticate() { }
[AuthenticationFilterAuthenticateResultThrows]
public void AuthenticationFilterAuthenticateResult() { }
[AuthenticationFilterChallengeThrows]
public void AuthenticationFilterChallenge() { }
[AuthenticationFilterChallengeResultThrows]
public void AuthenticationFilterChallengeResult() { }
[AuthorizationFilterThrows]
public void AuthorizationFilter() { }
[ActionFilterThrows]
public void ActionFilter() { }
[ExceptionFilterThrows]
public void ExceptionFilter() { throw new ArgumentException("exception"); }
private class AuthenticationFilterAttribute : Attribute, IAuthenticationFilter
{
public virtual Task AuthenticateAsync(HttpAuthenticationContext context,
CancellationToken cancellationToken)
{
return Task.FromResult<object>(null);
}
public virtual Task ChallengeAsync(HttpAuthenticationChallengeContext context,
CancellationToken cancellationToken)
{
return Task.FromResult<object>(null);
}
public bool AllowMultiple
{
get { return false; }
}
}
private class AuthenticationErrorResult : IHttpActionResult
{
private readonly HttpActionContext _context;
public AuthenticationErrorResult(HttpActionContext context)
{
Contract.Assert(context != null);
_context = context;
}
public Task<HttpResponseMessage> ExecuteAsync(CancellationToken cancellationToken)
{
TryThrowHttpResponseException(_context);
throw new ArgumentException("authentication");
}
}
private class AuthenticationFilterAuthenticateThrows : AuthenticationFilterAttribute
{
public override Task AuthenticateAsync(HttpAuthenticationContext context,
CancellationToken cancellationToken)
{
TryThrowHttpResponseException(context.ActionContext);
throw new ArgumentException("authentication");
}
}
private class AuthenticationFilterAuthenticateResultThrows : AuthenticationFilterAttribute
{
public override Task AuthenticateAsync(HttpAuthenticationContext context,
CancellationToken cancellationToken)
{
context.ErrorResult = new AuthenticationErrorResult(context.ActionContext);
return Task.FromResult<object>(null);
}
}
private class AuthenticationFilterChallengeThrows : AuthenticationFilterAttribute
{
public override Task ChallengeAsync(HttpAuthenticationChallengeContext context,
CancellationToken cancellationToken)
{
TryThrowHttpResponseException(context.ActionContext);
throw new ArgumentException("authentication");
}
}
private class AuthenticationFilterChallengeResultThrows : AuthenticationFilterAttribute
{
public override Task ChallengeAsync(HttpAuthenticationChallengeContext context,
CancellationToken cancellationToken)
{
context.Result = new AuthenticationErrorResult(context.ActionContext);
return Task.FromResult<object>(null);
}
}
private class AuthorizationFilterThrows : AuthorizeAttribute
{
public override void OnAuthorization(HttpActionContext actionContext)
{
TryThrowHttpResponseException(actionContext);
throw new ArgumentException("authorization");
}
}
private class ActionFilterThrows : ActionFilterAttribute
{
public override void OnActionExecuting(HttpActionContext actionContext)
{
TryThrowHttpResponseException(actionContext);
throw new ArgumentException("action");
}
}
private class ExceptionFilterThrows : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext actionExecutedContext)
{
TryThrowHttpResponseException(actionExecutedContext.ActionContext);
throw actionExecutedContext.Exception;
}
}
private static void TryThrowHttpResponseException(HttpActionContext actionContext)
{
IEnumerable<string> values;
if (actionContext.ControllerContext.Request.Headers.TryGetValues(ResponseExceptionHeaderKey, out values))
{
string statusString = values.First() as string;
if (!String.IsNullOrEmpty(statusString))
{
HttpStatusCode status = (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), statusString);
throw new HttpResponseException(actionContext.Request.CreateResponse(status, "HttpResponseExceptionMessage"));
}
}
}
}
}