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
186 lines (163 loc) · 5.88 KB
/
ServiceStackController.cs
File metadata and controls
186 lines (163 loc) · 5.88 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
using System;
using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using ServiceStack.Auth;
using ServiceStack.Caching;
using ServiceStack.Text;
namespace ServiceStack.Mvc
{
public abstract class ServiceStackController<T> : ServiceStackController
where T : IAuthSession
{
protected T UserSession
{
get { return SessionAs<T>(); }
}
public override IAuthSession AuthSession
{
get { return UserSession; }
}
}
[ExecuteServiceStackFilters]
public abstract class ServiceStackController : Controller
{
public static string DefaultAction = "Index";
public static Func<System.Web.Routing.RequestContext, ServiceStackController> CatchAllController;
/// <summary>
/// Default redirct URL if [Authenticate] attribute doesn't permit access.
/// </summary>
public virtual string LoginRedirectUrl
{
get { return "/login?redirect={0}"; }
}
/// <summary>
/// To change the error result when authentication (<see cref="AuthenticateAttribute"/>)
/// fails from redirection to something else,
/// override this property and return the appropriate result.
/// </summary>
public virtual ActionResult AuthenticationErrorResult
{
get
{
var returnUrl = HttpContext.Request.Url.PathAndQuery;
return new RedirectResult(LoginRedirectUrl.Fmt(HttpUtility.UrlEncode(returnUrl)));
}
}
/// <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
{
get
{
return new RedirectToRouteResult(new RouteValueDictionary(new
{
controller = "Error",
action = "Unauthorized"
}));
}
}
public ICacheClient Cache { get; set; }
private ISessionFactory sessionFactory;
public ISessionFactory SessionFactory
{
get { return sessionFactory ?? new SessionFactory(Cache); }
set { sessionFactory = value; }
}
/// <summary>
/// Typed UserSession
/// </summary>
private object userSession;
protected TUserSession SessionAs<TUserSession>()
{
return (TUserSession)(userSession ?? (userSession = Cache.SessionAs<TUserSession>()));
}
public virtual void ClearSession()
{
userSession = null;
Cache.ClearSession();
}
/// <summary>
/// Dynamic Session Bag
/// </summary>
private ISession session;
public new ISession Session
{
get
{
return session ?? (session = SessionFactory.GetOrCreateSession());
}
}
public virtual IAuthSession AuthSession
{
get { return (IAuthSession) (userSession ?? (userSession = Cache.GetUntypedSession())); }
}
protected override JsonResult Json(object data, string contentType, Encoding contentEncoding, JsonRequestBehavior behavior)
{
return new ServiceStackJsonResult
{
Data = data,
ContentType = contentType,
ContentEncoding = contentEncoding
};
}
public 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));
}
}
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));
}
}
}
}