forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStackController.cs
More file actions
265 lines (217 loc) · 9.65 KB
/
ServiceStackController.cs
File metadata and controls
265 lines (217 loc) · 9.65 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
using System;
using System.Data;
using System.Text;
using System.Threading.Tasks;
using ServiceStack.Auth;
using ServiceStack.Caching;
using ServiceStack.Configuration;
using ServiceStack.Messaging;
using ServiceStack.Redis;
using ServiceStack.Text;
using ServiceStack.Web;
using System.Web;
#if !NETSTANDARD2_0
using ServiceStack.Host.AspNet;
using System.Web.Mvc;
using System.Web.Routing;
#else
using ServiceStack.Host.NetCore;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
#endif
namespace ServiceStack.Mvc
{
public abstract class ServiceStackController<T> : ServiceStackController
where T : IAuthSession
{
protected T UserSession => SessionAs<T>();
public IAuthSession AuthSession => UserSession;
}
[ExecuteServiceStackFilters]
public abstract class ServiceStackController : Controller, IHasServiceStackProvider
{
public static string DefaultAction = "Index";
/// <summary>
/// Default redirct URL if [Authenticate] attribute doesn't permit access.
/// </summary>
public virtual string UnauthorizedRedirectUrl =>
HostContext.GetPlugin<AuthFeature>().GetHtmlRedirect();
/// <summary>
/// To change the error result when authentication (<see cref="AuthenticateAttribute"/>) fails.
/// Override this property and return the appropriate result.
/// </summary>
public virtual ActionResult AuthenticationErrorResult
{
get
{
var returnUrl = HttpContext.Request.GetPathAndQuery();
var unauthorizedUrl = UnauthorizedRedirectUrl;
if (unauthorizedUrl.IsNullOrEmpty() )
throw new HttpException(401, "Unauthorized");
return new RedirectResult(unauthorizedUrl + "?redirect={0}#f=Unauthorized".Fmt(returnUrl.UrlEncode()));
}
}
/// <summary>
/// Default redirct URL if Required Role or Permission attributes doesn't permit access.
/// </summary>
public virtual string ForbiddenRedirectUrl =>
HostContext.GetPlugin<AuthFeature>().GetHtmlRedirect();
/// <summary>
/// To change the error result when user doesn't have required role or permissions (<see cref="RequiredRoleAttribute"/>).
/// Override this property and return the appropriate result.
/// </summary>
public virtual ActionResult ForbiddenErrorResult
{
get
{
var returnUrl = HttpContext.Request.GetPathAndQuery();
var forbiddenUrl = ForbiddenRedirectUrl;
if (forbiddenUrl.IsNullOrEmpty())
throw new HttpException(403, "Forbidden");
return new RedirectResult(forbiddenUrl + "?redirect={0}#f=Forbidden".Fmt(returnUrl.UrlEncode()));
}
}
/// <summary>
/// To change the error result when authorization fails
/// to something else, override this property and return the appropriate result.
/// </summary>
public virtual ActionResult AuthorizationErrorResult =>
new RedirectToRouteResult(new RouteValueDictionary(new
{
controller = "Error",
action = "Unauthorized"
}));
#if !NETSTANDARD2_0
public static Func<System.Web.Routing.RequestContext, ServiceStackController> CatchAllController;
protected virtual ActionResult InvokeDefaultAction(HttpContextBase httpContext)
{
try
{
this.View(DefaultAction).ExecuteResult(this.ControllerContext);
}
catch
{
// We failed to execute our own default action, so we'll fall back to
// the CatchAllController, if one is specified.
if (CatchAllController != null)
{
var catchAllController = CatchAllController(this.Request.RequestContext);
InvokeControllerDefaultAction(catchAllController, httpContext);
}
}
return new EmptyResult();
}
protected override void HandleUnknownAction(string actionName)
{
if (CatchAllController == null)
{
base.HandleUnknownAction(actionName); // delegate to default MVC behaviour, which will throw 404.
}
else
{
var catchAllController = CatchAllController(this.Request.RequestContext);
InvokeControllerDefaultAction(catchAllController, HttpContext);
}
}
private void InvokeControllerDefaultAction(ServiceStackController controller, HttpContextBase httpContext)
{
var routeData = new RouteData();
var controllerName = controller.GetType().Name.Replace("Controller", "");
routeData.Values.Add("controller", controllerName);
routeData.Values.Add("action", DefaultAction);
routeData.Values.Add("url", httpContext.Request.Url.OriginalString);
controller.Execute(new System.Web.Routing.RequestContext(httpContext, routeData));
}
protected override JsonResult Json(object data, string contentType, Encoding contentEncoding, JsonRequestBehavior behavior)
{
return new ServiceStackJsonResult
{
Data = data,
ContentType = contentType,
ContentEncoding = contentEncoding
};
}
#else
public override JsonResult Json(object data)
{
return new ServiceStackJsonResult(data);
}
#endif
private IServiceStackProvider serviceStackProvider;
public virtual IServiceStackProvider ServiceStackProvider =>
serviceStackProvider ?? (serviceStackProvider =
#if !NETSTANDARD2_0
new ServiceStackProvider(new AspNetRequest(base.HttpContext, GetType().Name)));
#else
new ServiceStackProvider(new NetCoreRequest(base.HttpContext, GetType().Name)));
#endif
public virtual IAppSettings AppSettings => ServiceStackProvider.AppSettings;
public virtual IHttpRequest ServiceStackRequest => ServiceStackProvider.Request;
public virtual IHttpResponse ServiceStackResponse => ServiceStackProvider.Response;
public virtual ICacheClient Cache => ServiceStackProvider.Cache;
public virtual IDbConnection Db => ServiceStackProvider.Db;
public virtual IRedisClient Redis => ServiceStackProvider.Redis;
public virtual IMessageProducer MessageProducer => ServiceStackProvider.MessageProducer;
public virtual IAuthRepository AuthRepository => ServiceStackProvider.AuthRepository;
public virtual ISessionFactory SessionFactory => ServiceStackProvider.SessionFactory;
public virtual Caching.ISession SessionBag => ServiceStackProvider.SessionBag;
public virtual bool IsAuthenticated => ServiceStackProvider.IsAuthenticated;
public virtual IAuthSession GetSession(bool reload = true) => ServiceStackProvider.GetSession(reload);
//don't expose public generic methods in MVC Controllers
protected virtual TUserSession SessionAs<TUserSession>() => ServiceStackProvider.SessionAs<TUserSession>();
public virtual void SaveSession(IAuthSession session, TimeSpan? expiresIn = null) => ServiceStackProvider.Request.SaveSession(session, expiresIn);
public virtual void ClearSession() => ServiceStackProvider.ClearSession();
protected virtual T TryResolve<T>() => ServiceStackProvider.TryResolve<T>();
protected virtual T ResolveService<T>() => ServiceStackProvider.ResolveService<T>();
public virtual object ForwardRequestToServiceStack(IRequest request = null) => ServiceStackProvider.Execute(request ?? ServiceStackProvider.Request);
public virtual IServiceGateway Gateway => ServiceStackProvider.Gateway;
private bool hasDisposed = false;
protected override void Dispose(bool disposing)
{
if (hasDisposed)
return;
hasDisposed = true;
base.Dispose(disposing);
if (serviceStackProvider != null)
{
serviceStackProvider.Dispose();
serviceStackProvider = null;
}
EndServiceStackRequest();
}
public virtual void EndServiceStackRequest() =>
HostContext.AppHost.OnEndRequest(ServiceStackRequest);
}
#if !NETSTANDARD2_0
public class ServiceStackJsonResult : JsonResult
{
public override void ExecuteResult(ControllerContext context)
{
var response = context.HttpContext.Response;
response.ContentType = !string.IsNullOrEmpty(ContentType) ? ContentType : "application/json";
if (ContentEncoding != null)
{
response.ContentEncoding = ContentEncoding;
}
if (Data != null)
{
response.Write(JsonSerializer.SerializeToString(Data));
}
}
}
#else
public class ServiceStackJsonResult : JsonResult
{
public ServiceStackJsonResult(object value) : base(value) {}
public override Task ExecuteResultAsync(ActionContext context)
{
var response = context.HttpContext.Response;
response.ContentType = !string.IsNullOrEmpty(ContentType) ? ContentType : "application/json";
if (Value != null)
return response.WriteAsync(JsonSerializer.SerializeToString(Value));
return TypeConstants.EmptyTask;
}
}
#endif
}