Ejemplo n.º 1
0
        public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
        {
            if (!ModelState.IsValid)
            {
                return View(model);
            }

            // This doesn't count login failures towards account lockout
            // To enable password failures to trigger account lockout, change to shouldLockout: true
            var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false);

            SessionClient sessionClient = new SessionClient();
            var cookie = sessionClient.Authorize(model.Email, model.Password);
            HttpContext.Response.Cookies["sessionId"].Value = cookie;
            if (!String.IsNullOrEmpty(cookie))
            {
                switch (result)
                {
                    case SignInStatus.Success:
                        return RedirectToLocal(returnUrl);
                    case SignInStatus.LockedOut:
                        return View("Lockout");
                    case SignInStatus.Failure:
                    default:
                        ModelState.AddModelError("", "Invalid login attempt.");
                        return View(model);
                }
            }
            else
            {
                return View(model);
            }
        }
Ejemplo n.º 2
0
        public async Task<ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                try
                {
                    UserClient userClient = new UserClient();
                    UserDto userDto = new UserDto() { Email = model.Email, Login = model.Email };
                    var regResult = userClient.Create(userDto, model.Password);
                }
                catch (Exception e)
                {
                    return View("Error",
                        new ErrorViewModel() { Message = e.Message, StatusCode = HttpStatusCode.Conflict });
                }

                var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
                var result = await UserManager.CreateAsync(user, model.Password);
                if (result.Succeeded)
                {
                    


                    SessionClient sessionClient = new SessionClient();
                    var cookie = sessionClient.Authorize(model.Email, model.Password);
                    HttpContext.Response.Cookies["sessionId"].Value = cookie;
                    await SignInManager.SignInAsync(user, isPersistent:false, rememberBrowser:false);
                    
                    // For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
                    // Send an email with this link
                    // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
                    // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                    // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");

                    return RedirectToAction("Index", "Home");
                }
                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return View(model);
        }
Ejemplo n.º 3
0
 public static long? GetAuthorizedUser(string cookie)
 {
     SessionClient sessionClient = new SessionClient();
     var userId = sessionClient.IsAuthorized(cookie);
     return userId;
 }