Beispiel #1
0
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            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);

                    BankSingleton.GetBank().CreateAccount(model.Email);
                    BankSingleton.GetBank().Login(model.Email);

                    // 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));
        }
Beispiel #2
0
        // GET: History
        public ActionResult Index()
        {
            var          bank  = BankSingleton.GetBank();
            HistoryModel model = new HistoryModel()
            {
                Transactions = bank.LoggedInAccount.Transactions.ToList(), Balance = bank.LoggedInAccount.Balance
            };

            return(View(model));
        }
Beispiel #3
0
 public ActionResult Index(WithdrawalModel model)
 {
     if (ModelState.IsValid)
     {
         try
         {
             BankSingleton.GetBank().LoggedInAccount.Withdraw(model.Amount);
         }
         catch (Exception e)
         {
             ModelState.AddModelError("", e.Message);
             return(View(model));
         }
         return(RedirectToAction("Index", "Home"));
     }
     return(View(model));
 }
Beispiel #4
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);

            switch (result)
            {
            case SignInStatus.Success:
                var bank = BankSingleton.GetBank();
                try
                {
                    bank.Login(model.Email);
                }
                catch (Exception e)
                {
                    //Bank account doesn't exist, but sql one does, so create that account and login as it, in lieu of adding sql stuff for storing bank data
                    bank.CreateAccount(model.Email);
                    bank.Login(model.Email);
                }
                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:
                ModelState.AddModelError("", "Invalid login attempt.");
                return(View(model));
            }
        }
Beispiel #5
0
 public ActionResult LogOff()
 {
     AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie);
     BankSingleton.GetBank().Logout();
     return(RedirectToAction("Index", "Home"));
 }