예제 #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 UserManager.AddClaimAsync(user.Id, new Claim(ClaimTypes.GivenName, model.FirstName));

                    var service = new ChekingAccountService(HttpContext.GetOwinContext().Get <ApplicationDbContext>());
                    service.CreateCheckingAccount(model.FirstName, model.LastName, user.Id, 0);
                    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));
        }
예제 #2
0
 public ActionResult Deposit(Transaction transaction)
 {
     if (ModelState.IsValid)
     {
         db.Transactions.Add(transaction);
         db.SaveChanges();
         var service = new ChekingAccountService(db);
         service.UpdateBalance(transaction.CheckingAccountId);
         return(RedirectToAction("Index", "Home"));
     }
     return(View());
 }
예제 #3
0
        public async Task <ActionResult> ExternalLoginConfirmation(ExternalLoginConfirmationViewModel model, string returnUrl)
        {
            if (User.Identity.IsAuthenticated)
            {
                return(RedirectToAction("Index", "Manage"));
            }

            if (ModelState.IsValid)
            {
                // Get the information about the user from the external login provider
                var info = await AuthenticationManager.GetExternalLoginInfoAsync();

                if (info == null)
                {
                    return(View("ExternalLoginFailure"));
                }
                var user = new ApplicationUser {
                    UserName = model.Email, Email = model.Email
                };
                var result = await UserManager.CreateAsync(user);

                if (result.Succeeded)
                {
                    var service = new ChekingAccountService(HttpContext.GetOwinContext().Get <ApplicationDbContext>());
                    service.CreateCheckingAccount("Facebook", "User", user.Id, 500);
                    result = await UserManager.AddLoginAsync(user.Id, info.Login);

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

                        return(RedirectToLocal(returnUrl));
                    }
                }
                AddErrors(result);
            }

            ViewBag.ReturnUrl = returnUrl;
            return(View(model));
        }
예제 #4
0
        protected override void Seed(AutomatedTellerMachine.Models.ApplicationDbContext context)
        {
            var userstore   = new UserStore <ApplicationUser>(context);
            var userManager = new UserManager <ApplicationUser>(userstore);

            if (!context.Users.Any(t => t.UserName == "*****@*****.**"))
            {
                var user = new ApplicationUser {
                    UserName = "******", Email = "*****@*****.**"
                };
                userManager.Create(user, "Gelhai_$65");
                var service = new ChekingAccountService(context);
                service.CreateCheckingAccount("Admin", "User", user.Id, 1000);

                context.Roles.AddOrUpdate(r => r.Name, new IdentityRole {
                    Name = "Admin"
                });
                context.SaveChanges();
                userManager.AddToRole(user.Id, "Admin");
            }
            //context.Transactions.Add(new Transaction { Amount = 75, CheckingAccountId = 2 });
            //context.Transactions.Add(new Transaction { Amount = -25, CheckingAccountId = 2 });
            //context.Transactions.Add(new Transaction { Amount = 100000, CheckingAccountId = 2 });
            //context.Transactions.Add(new Transaction { Amount = 19.99m, CheckingAccountId = 2 });
            //context.Transactions.Add(new Transaction { Amount = 64.40m, CheckingAccountId = 3 });
            //context.Transactions.Add(new Transaction { Amount = 100, CheckingAccountId = 3 });
            //context.Transactions.Add(new Transaction { Amount = -300, CheckingAccountId = 3 });
            //context.Transactions.Add(new Transaction { Amount = 255.75m, CheckingAccountId = 3 });
            //context.Transactions.Add(new Transaction { Amount = 198, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = 2, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = 50, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = -1.50m, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = 6100, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = 164.84m, CheckingAccountId = 4 });
            //context.Transactions.Add(new Transaction { Amount = .01m, CheckingAccountId = 4 });
            //  This method will be called after migrating to the latest version.
        }