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
162 lines (140 loc) · 4.16 KB
/
Copy pathServiceStackController.cs
File metadata and controls
162 lines (140 loc) · 4.16 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
using System;
using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using ServiceStack.CacheAccess;
using ServiceStack.ServiceInterface;
using ServiceStack.ServiceInterface.Auth;
using ServiceStack.Text;
namespace ServiceStack.Mvc
{
[Obsolete("To avoid name conflicts with MVC's ControllerBase this has been renamed to ServiceStackController")]
public abstract class ControllerBase<T> : ServiceStackController<T> where T : class, IAuthSession, new() { }
[Obsolete("To avoid name conflicts with MVC's ControllerBase this has been renamed to ServiceStackController")]
public abstract class ControllerBase : ServiceStackController { }
public abstract class ServiceStackController<T> : ServiceStackController
where T : class, IAuthSession, new()
{
private T userSession;
protected T UserSession
{
get
{
if (userSession != null) return userSession;
if (SessionKey != null)
userSession = this.Cache.Get<T>(SessionKey);
else
SessionFeature.CreateSessionIds();
var unAuthorizedSession = new T();
return userSession ?? (userSession = unAuthorizedSession);
}
}
public override IAuthSession AuthSession
{
get { return UserSession; }
}
public override void ClearSession()
{
userSession = null;
this.Cache.Remove(SessionKey);
}
}
[ExecuteServiceStackFilters]
public abstract class ServiceStackController : Controller
{
public static string DefaultAction = "Index";
public static Func<RequestContext, ServiceStackController> CatchAllController;
public virtual string LoginRedirectUrl
{
get { return "/login?redirect={0}"; }
}
public virtual ActionResult AuthorizationErrorResult
{
get
{
return new RedirectToRouteResult(new RouteValueDictionary(new {
controller = "Error",
action = "Unauthorized"
}));
}
}
public ICacheClient Cache { get; set; }
public ISessionFactory SessionFactory { get; set; }
private ISession session;
public new ISession Session
{
get
{
return session ?? (session = SessionFactory.GetOrCreateSession());
}
}
public virtual IAuthSession AuthSession
{
get { return null; }
}
protected string SessionKey
{
get
{
var sessionId = SessionFeature.GetSessionId();
return sessionId == null ? null : SessionFeature.GetSessionKey(sessionId);
}
}
protected override JsonResult Json(object data, string contentType, Encoding contentEncoding, JsonRequestBehavior behavior)
{
return new ServiceStackJsonResult {
Data = data,
ContentType = contentType,
ContentEncoding = contentEncoding
};
}
public virtual void ClearSession()
{
this.Cache.Remove(SessionKey);
}
public virtual ActionResult InvokeDefaultAction(HttpContextBase httpContext)
{
try
{
this.View(DefaultAction).ExecuteResult(this.ControllerContext);
}
catch (Exception ex)
{
var catchAllController = CatchAllController != null
? CatchAllController(this.Request.RequestContext)
: null;
if (catchAllController != null)
{
var routeData = new RouteData();
var controllerName = catchAllController.GetType().Name.Replace("Controller", "");
routeData.Values.Add("controller", controllerName);
routeData.Values.Add("action", DefaultAction);
routeData.Values.Add("url", httpContext.Request.Url.OriginalString);
catchAllController.Execute(new RequestContext(httpContext, routeData));
}
}
return new EmptyResult();
}
protected override void HandleUnknownAction(string actionName)
{
this.InvokeDefaultAction(HttpContext);
}
}
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));
}
}
}
}