Exemple #1
0
        public async Task <ActionResult> Login(LoginViewModel model, string returnUrl)
        {
            if (!ModelState.IsValid)
            {
                ViewBag.AllowUserRegistrations = ConfigurationService.AllowUserRegistrations();
                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);

            switch (result)
            {
            case SignInStatus.Success:
                return(RedirectToLocal(returnUrl));

            case SignInStatus.LockedOut:
                return(View("Lockout"));

            case SignInStatus.RequiresVerification:
                return(RedirectToAction("SendCode", new { ReturnUrl = returnUrl, RememberMe = model.RememberMe }));

            case SignInStatus.Failure:
            default:
                ViewBag.AllowUserRegistrations = ConfigurationService.AllowUserRegistrations();
                ModelState.AddModelError("", "Invalid login attempt.");
                return(View(model));
            }
        }
Exemple #2
0
 public ActionResult Register()
 {
     if (!ConfigurationService.AllowUserRegistrations())
     {
         return(RedirectToAction("Login", "Account"));
     }
     return(View());
 }
Exemple #3
0
        public ActionResult Login(string returnUrl)
        {
            if (User.Identity.IsAuthenticated)
            {
                return(RedirectToAction("Index", "School"));
            }

            ViewBag.ReturnUrl = returnUrl;
            ViewBag.AllowUserRegistrations = ConfigurationService.AllowUserRegistrations();
            return(View());
        }
Exemple #4
0
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (!ConfigurationService.AllowUserRegistrations())
            {
                return(RedirectToAction("Login", "Account"));
            }

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

                if (result.Succeeded)
                {
                    await SignInManager.SignInAsync(user, isPersistent : false, rememberBrowser : false);

                    // For more information on how to enable account confirmation and password reset please visit https://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>");

                    LogService.Info(string.Format("New User Registration: {0}", model.Email));

                    if (dataFlowDbContext.AspNetUsers.Count() == 1) //send them to the configuration page
                    {
                        return(RedirectToAction("Index", "Configuration"));
                    }

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

            // If we got this far, something failed, redisplay form
            return(View(model));
        }