コード例 #1
0
        private Order PrepareOrder(Product product, ShopaUser user)
        {
            Order order = new Order()
            {
                User     = user,
                Products = new List <OrderProduct>()
                {
                }
            };

            return(order);
        }
コード例 #2
0
        private async Task LoadSharedKeyAndQrCodeUriAsync(ShopaUser 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);
        }
コード例 #3
0
        // Add Role to every User
        private async Task SetRoleToUser(ShopaUser user)
        {
            var x = await _roleManager.RoleExistsAsync("Admin");

            if (!x)
            {
                // first we create Admin role of FirstUser (TEST)
                var roleAdmin = new IdentityRole("Admin");
                await _roleManager.CreateAsync(roleAdmin);

                await _userManager.AddToRoleAsync(user, "Admin");
            }
            else
            {
                //then in second registration we seed other roles
                var y = await _roleManager.RoleExistsAsync("Seller");

                if (!y)
                {
                    var role = new IdentityRole("Seller");
                    await _roleManager.CreateAsync(role);
                }


                var z = await _roleManager.RoleExistsAsync("User");

                if (!z)
                {
                    var role = new IdentityRole("User");
                    await _roleManager.CreateAsync(role);
                }

                if (user.Products.Count > 5 && !this.User.IsInRole("Admin"))
                {
                    await _userManager.AddToRoleAsync(user, "Seller");
                }
                else if (!this.User.IsInRole("Admin"))
                {
                    await _userManager.AddToRoleAsync(user, "User");
                }
            }
        }
コード例 #4
0
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl = returnUrl ?? Url.Content("~/");
            if (ModelState.IsValid)
            {
                var user = new ShopaUser {
                    UserName = Input.Email, Email = Input.Email, Address = Input.Address, PhoneNumber = Input.PhoneNumber
                };

                var result = await _userManager.CreateAsync(user, Input.Password);

                if (result.Succeeded)
                {
                    //set Role
                    await SetRoleToUser(user);

                    _logger.LogInformation("User created a new account with password.");

                    var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);

                    var callbackUrl = Url.Page(
                        "/Account/ConfirmEmail",
                        pageHandler: null,
                        values: new { 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>.");

                    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
        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 ShopaUser {
                    UserName = Input.Email, Email = Input.Email
                };
                var result = await _userManager.CreateAsync(user);

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

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

                        _logger.LogInformation("User created an account using {Name} provider.", info.LoginProvider);
                        return(LocalRedirect(returnUrl));
                    }
                }
                foreach (var error in result.Errors)
                {
                    ModelState.AddModelError(string.Empty, error.Description);
                }
            }

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