Пример #1
0
        public static async Task SeedUsers(UserManager <WebShopUser> userManager, RoleManager <IdentityRole <Guid> > roleManager, WebShopDbContext context)
        {
            if (!await roleManager.RoleExistsAsync("Administrator"))
            {
                await roleManager.CreateAsync(new IdentityRole <Guid> {
                    Name = "Administrator"
                });
            }

            if (userManager.FindByEmailAsync("*****@*****.**").Result == null)
            {
                WebShopUser testUser = new WebShopUser
                {
                    NickName           = "Admin Admin",
                    Id                 = new Guid("12345678-0000-0000-0000-120000000000"),
                    UserName           = "******",
                    NormalizedUserName = "******",
                    Email              = "*****@*****.**",
                    NormalizedEmail    = "*****@*****.**",
                    BillingAddress     = new Address()
                    {
                        ZipCode            = "1091",
                        Country            = "Magyarország",
                        City               = "Budapest",
                        Street             = "Random utca",
                        HouseNumberAndDoor = "13,  3/12",
                    },
                };

                IdentityResult result = userManager.CreateAsync(testUser, "Asdf1234.").Result;

                var addToRoleResult = userManager.AddToRoleAsync(testUser, "Administrator");


                context.Ratings.Add(new Rating()
                {
                    Id     = new Guid("12345678-1234-0000-0000-123400000000"),
                    UserId = new Guid("12345678-0000-0000-0000-120000000000"),
                    ItemId = new Guid("10000000-0000-0000-0000-000000000000"),
                    Value  = 4
                });

                context.Comments.Add(new Comment()
                {
                    Id          = Guid.NewGuid(),
                    UserId      = new Guid("12345678-0000-0000-0000-120000000000"),
                    ItemId      = new Guid("10000000-0000-0000-0000-000000000000"),
                    CommentText = "Nagyon jó termék, évek óta használom hiba nélkül.",
                    Date        = DateTime.Now
                });

                await context.SaveChangesAsync();
            }
        }
Пример #2
0
        public UserBillingDataDTO(WebShopUser user)
        {
            this.Name = user.NickName;

            if (user.BillingAddress != null)
            {
                this.ZipCode            = user.BillingAddress.ZipCode;
                this.Country            = user.BillingAddress.Country;
                this.City               = user.BillingAddress.City;
                this.Street             = user.BillingAddress.Street;
                this.HouseNumberAndDoor = user.BillingAddress.HouseNumberAndDoor;
            }
        }
Пример #3
0
        private async Task LoadAsync(WebShopUser user)
        {
            var email = await _userManager.GetEmailAsync(user);

            Email = email;

            Input = new InputModel
            {
                NewEmail = email,
            };

            IsEmailConfirmed = await _userManager.IsEmailConfirmedAsync(user);
        }
Пример #4
0
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl      = returnUrl ?? Url.Content("~/");
            ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
            if (ModelState.IsValid)
            {
                var user = new WebShopUser {
                    NickName = Input.NickName, UserName = Input.Email, Email = Input.Email
                };
                var result = await _userManager.CreateAsync(user, Input.Password);

                if (result.Succeeded)
                {
                    _logger.LogInformation("User created a new account with password.");

                    var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);

                    code = WebEncoders.Base64UrlEncode(Encoding.UTF8.GetBytes(code));
                    var callbackUrl = Url.Page(
                        "/Account/ConfirmEmail",
                        pageHandler: null,
                        values: new { area = "Identity", userId = user.Id, code = code },
                        protocol: Request.Scheme);

                    await _emailSender.SendEmailAsync(Input.Email, "Confirm your email",
                                                      $"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");

                    if (_userManager.Options.SignIn.RequireConfirmedAccount)
                    {
                        return(RedirectToPage("RegisterConfirmation", new { email = Input.Email }));
                    }
                    else
                    {
                        await _signInManager.SignInAsync(user, isPersistent : false);

                        return(LocalRedirect(returnUrl));
                    }
                }
                foreach (var error in result.Errors)
                {
                    ModelState.AddModelError(string.Empty, error.Description);
                }
            }

            // If we got this far, something failed, redisplay form
            return(Page());
        }
Пример #5
0
        private async Task LoadSharedKeyAndQrCodeUriAsync(WebShopUser user)
        {
            // Load the authenticator key & QR code URI to display on the form
            var unformattedKey = await _userManager.GetAuthenticatorKeyAsync(user);

            if (string.IsNullOrEmpty(unformattedKey))
            {
                await _userManager.ResetAuthenticatorKeyAsync(user);

                unformattedKey = await _userManager.GetAuthenticatorKeyAsync(user);
            }

            SharedKey = FormatKey(unformattedKey);

            var email = await _userManager.GetEmailAsync(user);

            AuthenticatorUri = GenerateQrCodeUri(email, unformattedKey);
        }
Пример #6
0
        private async Task LoadAsync(WebShopUser user)
        {
            var userName = await _userManager.GetUserNameAsync(user);

            var phoneNumber = await _userManager.GetPhoneNumberAsync(user);

            var nickName           = user.NickName;
            var country            = "";
            var city               = "";
            var zipCode            = "";
            var street             = "";
            var houseNumberAndDoor = "";

            if (user.BillingAddress != null)
            {
                country            = user.BillingAddress.Country;
                city               = user.BillingAddress.City;
                zipCode            = user.BillingAddress.ZipCode;
                street             = user.BillingAddress.Street;
                houseNumberAndDoor = user.BillingAddress.HouseNumberAndDoor;
            }


            Username = userName;

            Input = new InputModel
            {
                PhoneNumber        = phoneNumber,
                NickName           = nickName,
                Country            = country,
                City               = city,
                ZipCode            = zipCode,
                Street             = street,
                HouseNumberAndDoor = houseNumberAndDoor
            };
        }
Пример #7
0
 public UserCartItem(WebShopUser user, Item item, int quantity)
 {
     this.UserId   = user.Id;
     this.ItemId   = item.Id;
     this.Quantity = quantity;
 }
Пример #8
0
        public async Task <IActionResult> OnPostConfirmationAsync(string returnUrl = null)
        {
            returnUrl = returnUrl ?? Url.Content("~/");
            // Get the information about the user from the external login provider
            var info = await _signInManager.GetExternalLoginInfoAsync();

            if (info == null)
            {
                ErrorMessage = "Error loading external login information during confirmation.";
                return(RedirectToPage("./Login", new { ReturnUrl = returnUrl }));
            }

            if (ModelState.IsValid)
            {
                var user = new WebShopUser
                {
                    UserName       = Input.Email,
                    Email          = Input.Email,
                    PhoneNumber    = Input.PhoneNumber,
                    NickName       = Input.NickName,
                    BillingAddress = new Address()
                    {
                        ZipCode            = Input.ZipCode,
                        Country            = Input.Country,
                        City               = Input.City,
                        Street             = Input.Street,
                        HouseNumberAndDoor = Input.HouseNumberAndDoor
                    },
                };
                var result = await _userManager.CreateAsync(user);

                if (result.Succeeded)
                {
                    result = await _userManager.AddLoginAsync(user, info);

                    if (result.Succeeded)
                    {
                        _logger.LogInformation("User created an account using {Name} provider.", info.LoginProvider);

                        var userId = await _userManager.GetUserIdAsync(user);

                        var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);

                        code = WebEncoders.Base64UrlEncode(Encoding.UTF8.GetBytes(code));
                        var callbackUrl = Url.Page(
                            "/Account/ConfirmEmail",
                            pageHandler: null,
                            values: new { area = "Identity", userId = userId, code = code },
                            protocol: Request.Scheme);

                        await _emailSender.SendEmailAsync(Input.Email, "Confirm your email",
                                                          $"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");

                        // If account confirmation is required, we need to show the link if we don't have a real email sender
                        if (_userManager.Options.SignIn.RequireConfirmedAccount)
                        {
                            return(RedirectToPage("./RegisterConfirmation", new { Email = Input.Email }));
                        }

                        await _signInManager.SignInAsync(user, isPersistent : false, info.LoginProvider);

                        return(LocalRedirect(returnUrl));
                    }
                }
                foreach (var error in result.Errors)
                {
                    ModelState.AddModelError(string.Empty, error.Description);
                }
            }

            LoginProvider = info.LoginProvider;
            ReturnUrl     = returnUrl;
            return(Page());
        }