source: binary-improvements2/WebServer/src/UrlHandlers/SessionHandler.cs@ 417

Last change on this file since 417 was 417, checked in by alloc, 21 months ago

RegisterUser no longer uses a redirect on successful user creation (part 2)

File size: 6.2 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Net;
5using Platform.Steam;
6using Utf8Json;
7using Webserver.Permissions;
8
9namespace Webserver.UrlHandlers {
10 public class SessionHandler : AbsHandler {
11 private const string pageBasePath = "/app";
12 private const string pageErrorPath = "/app/error/";
13
14 private const string steamOpenIdVerifyUrl = "verifysteamopenid";
15 private const string steamLoginUrl = "loginsteam";
16 private const string steamLoginFailedPage = "SteamLoginFailed";
17
18 private const string userPassLoginUrl = "login";
19 public const string userPassLoginName = "User/pass";
20 public const string userPassErrorPage = "UserPassLoginFailed";
21
22 private readonly ConnectionHandler connectionHandler;
23
24 public SessionHandler (ConnectionHandler _connectionHandler) : base (null) {
25 connectionHandler = _connectionHandler;
26 }
27
28 public override void HandleRequest (RequestContext _context) {
29 if (_context.Request.RemoteEndPoint == null) {
30 _context.Response.Redirect (pageErrorPath + "NoRemoteEndpoint");
31 return;
32 }
33
34 string subpath = _context.RequestPath.Remove (0, urlBasePath.Length);
35
36 string remoteEndpointString = _context.Request.RemoteEndPoint!.ToString ();
37
38 if (subpath.StartsWith (steamOpenIdVerifyUrl)) {
39 HandleSteamVerification (_context, remoteEndpointString);
40 return;
41 }
42
43 if (subpath.StartsWith ("logout")) {
44 HandleLogout (_context);
45 return;
46 }
47
48 if (subpath.StartsWith (steamLoginUrl)) {
49 HandleSteamLogin (_context);
50 return;
51 }
52
53 if (subpath.StartsWith (userPassLoginUrl)) {
54 HandleUserPassLogin (_context, remoteEndpointString);
55 return;
56 }
57
58 _context.Response.Redirect (pageErrorPath + "InvalidSessionsCommand");
59 }
60
61 private void HandleUserPassLogin (RequestContext _context, string _remoteEndpointString) {
62 if (!_context.Request.HasEntityBody) {
63 _context.Response.Redirect (pageErrorPath + "NoLoginData");
64 return;
65 }
66
67 Stream requestInputStream = _context.Request.InputStream;
68
69 byte[] jsonInputData = new byte[_context.Request.ContentLength64];
70 requestInputStream.Read (jsonInputData, 0, (int)_context.Request.ContentLength64);
71
72 IDictionary<string, object> inputJson;
73 try {
74 inputJson = JsonSerializer.Deserialize<IDictionary<string, object>> (jsonInputData);
75 } catch (Exception e) {
76 Log.Error ("Error deserializing JSON from user/password login:");
77 Log.Exception (e);
78 _context.Response.Redirect (pageErrorPath + "InvalidLoginJson");
79 return;
80 }
81
82 if (!inputJson.TryGetValue ("username", out object fieldNode) || fieldNode is not string username) {
83 _context.Response.Redirect (pageErrorPath + "InvalidLoginJson");
84 return;
85 }
86
87 if (!inputJson.TryGetValue ("password", out fieldNode) || fieldNode is not string password) {
88 _context.Response.Redirect (pageErrorPath + "InvalidLoginJson");
89 return;
90 }
91
92 AdminWebUsers.WebUser? webUser = AdminWebUsers.Instance.GetUser (username, password);
93
94 if (!webUser.HasValue) {
95 Log.Out ($"[Web] User/pass login failed from {_remoteEndpointString}");
96 _context.Response.Redirect (pageErrorPath + "UserPassInvalid");
97 return;
98 }
99
100 HandleUserIdLogin (connectionHandler, _context, _remoteEndpointString, userPassLoginName, userPassErrorPage, webUser.Value.Name, webUser.Value.PlatformUser, webUser.Value.CrossPlatformUser);
101 }
102
103 private void HandleSteamLogin (RequestContext _context) {
104 string host = $"{(WebUtils.IsSslRedirected (_context.Request) ? "https://" : "http://")}{_context.Request.UserHostName}";
105 string url = OpenID.GetOpenIdLoginUrl (host, $"{host}{urlBasePath}{steamOpenIdVerifyUrl}");
106 _context.Response.Redirect (url);
107 }
108
109 private void HandleLogout (RequestContext _context) {
110 Cookie cookie = new Cookie ("sid", "", "/") {
111 Expired = true
112 };
113 _context.Response.AppendCookie (cookie);
114
115 if (_context.Connection == null) {
116 _context.Response.Redirect (pageErrorPath + "NotLoggedIn");
117 return;
118 }
119
120 connectionHandler.LogOut (_context.Connection.SessionID);
121 _context.Response.Redirect (pageBasePath);
122 }
123
124 private void HandleSteamVerification (RequestContext _context, string _remoteEndpointString) {
125 ulong id;
126 try {
127 id = OpenID.Validate (_context.Request);
128 } catch (Exception e) {
129 Log.Error ($"[Web] Error validating Steam login from {_remoteEndpointString}:");
130 Log.Exception (e);
131 _context.Response.Redirect (pageErrorPath + steamLoginFailedPage);
132 return;
133 }
134
135 if (id <= 0) {
136 Log.Out ($"[Web] Steam OpenID login failed (invalid ID) from {_remoteEndpointString}");
137 _context.Response.Redirect (pageErrorPath + steamLoginFailedPage);
138 return;
139 }
140
141 UserIdentifierSteam userId = new UserIdentifierSteam (id);
142 HandleUserIdLogin (connectionHandler, _context, _remoteEndpointString, "Steam OpenID", steamLoginFailedPage, userId.ToString (), userId);
143 }
144
145 public static void HandleUserIdLogin (ConnectionHandler _connectionHandler, RequestContext _context, string _remoteEndpointString,
146 string _loginName, string _errorPage, string _username, PlatformUserIdentifierAbs _userId, PlatformUserIdentifierAbs _crossUserId = null, bool _redirect = true) {
147 try {
148 WebConnection con = _connectionHandler.LogIn (_context.Request.RemoteEndPoint!.Address, _username, _userId, _crossUserId);
149
150 int level1 = GameManager.Instance.adminTools.Users.GetUserPermissionLevel (_userId);
151 int level2 = int.MaxValue;
152 if (_crossUserId != null) {
153 level2 = GameManager.Instance.adminTools.Users.GetUserPermissionLevel (_crossUserId);
154 }
155
156 int higherLevel = Math.Min (level1, level2);
157
158 Log.Out ($"[Web] {_loginName} login from {_remoteEndpointString}, name {_username} with ID {_userId}, CID {(_crossUserId != null ? _crossUserId : "none")}, permission level {higherLevel}");
159 Cookie cookie = new Cookie ("sid", con.SessionID, "/") {
160 Expired = false,
161 Expires = DateTime.MinValue,
162 HttpOnly = true,
163 Secure = false
164 };
165 _context.Response.AppendCookie (cookie);
166
167 if (_redirect) {
168 _context.Response.Redirect (pageBasePath);
169 }
170 } catch (Exception e) {
171 Log.Error ($"[Web] Error during {_loginName} login:");
172 Log.Exception (e);
173 if (_redirect) {
174 _context.Response.Redirect (pageErrorPath + _errorPage);
175 }
176 }
177 }
178 }
179}
Note: See TracBrowser for help on using the repository browser.