Implemented raising of Session events; refactoring
[mono.git] / mcs / class / Mainsoft.Web / Mainsoft.Web.SessionState / ServletSessionIDManager.cs
1 //\r
2 // (C) 2006 Mainsoft Corporation (http://www.mainsoft.com)\r
3 // Author: Konstantin Triger <kostat@mainsoft.com>\r
4 //\r
5 \r
6 //\r
7 // Permission is hereby granted, free of charge, to any person obtaining\r
8 // a copy of this software and associated documentation files (the\r
9 // "Software"), to deal in the Software without restriction, including\r
10 // without limitation the rights to use, copy, modify, merge, publish,\r
11 // distribute, sublicense, and/or sell copies of the Software, and to\r
12 // permit persons to whom the Software is furnished to do so, subject to\r
13 // the following conditions:\r
14 //\r
15 // The above copyright notice and this permission notice shall be\r
16 // included in all copies or substantial portions of the Software.\r
17 //\r
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
25 //\r
26 \r
27 using System;\r
28 using System.Collections.Generic;\r
29 using System.Text;\r
30 using System.Web;\r
31 using System.Web.SessionState;\r
32 using javax.servlet.http;\r
33 \r
34 namespace Mainsoft.Web.SessionState\r
35 {\r
36         public sealed class ServletSessionIDManager : ISessionIDManager\r
37         {\r
38                 #region ISessionIDManager Members\r
39 \r
40                 public string CreateSessionID (HttpContext context) {\r
41                         return ServletSessionStateStoreProvider.GetSession (context, true).getId ();\r
42                 }\r
43 \r
44                 public string GetSessionID (HttpContext context) {\r
45                         HttpServletRequest request = ServletSessionStateStoreProvider.GetWorkerRequest (context).ServletRequest;\r
46                         return request.isRequestedSessionIdValid () ? request.getRequestedSessionId () : null;\r
47                 }\r
48 \r
49                 public void Initialize () {\r
50                 }\r
51 \r
52                 public bool InitializeRequest (HttpContext context, bool suppressAutoDetectRedirect, out bool supportSessionIDReissue) {\r
53                         supportSessionIDReissue = true;\r
54                         return false;\r
55                 }\r
56 \r
57                 public void RemoveSessionID (HttpContext context) {\r
58                         ServletSessionStateStoreProvider.GetWorkerRequest (context).ServletRequest.getSession (false).invalidate ();\r
59                 }\r
60 \r
61                 public void SaveSessionID (HttpContext context, string id, out bool redirected, out bool cookieAdded) {\r
62                         redirected = false;\r
63                         cookieAdded = false;\r
64                 }\r
65 \r
66                 public bool Validate (string id) {\r
67                         return true;\r
68                 }\r
69 \r
70                 #endregion\r
71         }\r
72 }\r