Last active
December 7, 2018 16:04
-
-
Save dochoffiday/badfd41c4b1bc51971d00080d157943b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Newtonsoft.Json; | |
using System.Web; | |
using System.Web.Security; | |
public class LoggedInUser | |
{ | |
public string FirstName { get; set; } = null; | |
public bool IsAdmin { get; set; } = false; | |
} | |
public static class Authentication | |
{ | |
static void SignIn( | |
HttpContextBase context, | |
string emailAddress, | |
bool rememberMe, | |
LoggedInUser user = null) | |
{ | |
var cookie = FormsAuthentication.GetAuthCookie( | |
emailAddress.ToLower(), | |
rememberMe); | |
var oldTicket = FormsAuthentication.Decrypt(cookie.Value); | |
var newTicket = new FormsAuthenticationTicket( | |
oldTicket.Version, | |
oldTicket.Name, | |
oldTicket.IssueDate, | |
oldTicket.Expiration, | |
oldTicket.IsPersistent, | |
JsonConvert.SerializeObject(user ?? new LoggedInUser())); | |
cookie.Value = FormsAuthentication.Encrypt(newTicket); | |
context.Response.Cookies.Add(cookie); | |
} | |
static void SignOut(HttpContextBase context) | |
{ | |
FormsAuthentication.SignOut(); | |
} | |
static LoggedInUser GetLoggedInUser() | |
{ | |
if (HttpContext.Current.User?.Identity?.Name != null && HttpContext.Current.User?.Identity is FormsIdentity identity) | |
return JsonConvert.DeserializeObject<LoggedInUser>(identity.Ticket.UserData); | |
return new LoggedInUser(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment