示例#1
0
        private async Task LoadAsync(AldeiaParentalUser user)
        {
            var email = await _userManager.GetEmailAsync(user);
            Email = email;

            Input = new InputModel
            {
                NewEmail = email,
            };

            IsEmailConfirmed = await _userManager.IsEmailConfirmedAsync(user);
        }
示例#2
0
        public void RegisterShouldFail(string firstName, string lastName, string email, string password)
        {
            //Arrange
            CheckPropertyValidation chk   = new CheckPropertyValidation();
            AldeiaParentalUser      nUser = new AldeiaParentalUser
            {
                FirstName    = firstName,
                LastName     = lastName,
                Email        = email,
                PasswordHash = password
            };
            //Act
            IList <ValidationResult> errors = chk.Validate(nUser);

            //Assert
            Assert.NotEqual(0, errors.Count);
        }
        private async Task LoadSharedKeyAndQrCodeUriAsync(AldeiaParentalUser 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);
        }
        private async Task LoadAsync(AldeiaParentalUser user)
        {
            var userName = await _userManager.GetUserNameAsync(user);

            var phoneNumber = await _userManager.GetPhoneNumberAsync(user);

            var caregiver = await _userManager.IsInRoleAsync(user, _caregiverRole);

            var customer = await _userManager.IsInRoleAsync(user, _customerRole);

            Username  = userName;
            ValidDocs = _context.PersonalDocument.Any(d => d.UserId.Equals(user.Id) && (d.Valid ?? false));
            Input     = new InputModel
            {
                PhoneNumber = phoneNumber,
                Caregiver   = caregiver,
                Customer    = customer,
                Address     = user.Address,
                FirstName   = user.FirstName,
                LastName    = user.LastName
            };
        }
示例#5
0
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl ??= Url.Content("~/");
            ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
            if (ModelState.IsValid)
            {
                var user = new AldeiaParentalUser
                {
                    UserName         = Input.Email,
                    Email            = Input.Email,
                    FirstName        = Input.FirstName,
                    LastName         = Input.LastName,
                    RegistrationDate = DateTime.UtcNow
                };

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

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

                    //try to set roles

                    #region set roles
                    if (Input.Customer)
                    {
                        bool customerRoleFound = await _roleManager.RoleExistsAsync(_customerRole);

                        if (!customerRoleFound)
                        {
                            _logger.LogWarning("Could not set role for " + user.UserName
                                               + " The role " + _customerRole + "does not exist");
                        }
                        else
                        {
                            try
                            {
                                await _userManager.AddToRoleAsync(user, _customerRole);
                            }
                            catch (Exception ex)
                            {
                                _logger.LogWarning("Could not set " + _customerRole + " role for " + user.UserName
                                                   + " " + ex.Message);
                            }
                        }
                    }

                    if (Input.Caregiver)
                    {
                        bool caregiverRoleFound = await _roleManager.RoleExistsAsync(_caregiverRole);

                        if (!caregiverRoleFound)
                        {
                            _logger.LogWarning("Could not set role for " + user.UserName
                                               + " The role " + _caregiverRole + "does not exist");
                        }
                        else
                        {
                            try
                            {
                                await _userManager.AddToRoleAsync(user, _caregiverRole);
                            }
                            catch (Exception ex)
                            {
                                _logger.LogWarning("Could not set " + _caregiverRole + " role for " + user.UserName
                                                   + " " + ex.Message);
                            }
                        }
                    }
                    #endregion

                    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, returnUrl },
                        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, returnUrl }));
                    }
                    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());
        }
示例#6
0
 private async Task LoadAsync(AldeiaParentalUser user)
 {
     UserName  = $"{user.FirstName} {user.LastName}";
     UserRoles = await _userManager.GetRolesAsync(user);
 }
示例#7
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 AldeiaParentalUser {
                    UserName         = Input.Email,
                    Email            = Input.Email,
                    FirstName        = Input.FirstName,
                    LastName         = Input.LastName,
                    RegistrationDate = DateTime.UtcNow
                };

                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);

                        #region set roles
                        if (Input.Customer)
                        {
                            bool customerRoleFound = await _roleManager.RoleExistsAsync(_customerRole);

                            if (!customerRoleFound)
                            {
                                _logger.LogWarning("Could not set role for " + user.UserName
                                                   + " The role " + _customerRole + "does not exist");
                            }
                            else
                            {
                                try
                                {
                                    await _userManager.AddToRoleAsync(user, _customerRole);
                                }
                                catch (Exception ex)
                                {
                                    _logger.LogWarning("Could not set " + _customerRole + " role for " + user.UserName
                                                       + " " + ex.Message);
                                }
                            }
                        }

                        if (Input.Caregiver)
                        {
                            bool caregiverRoleFound = await _roleManager.RoleExistsAsync(_caregiverRole);

                            if (!caregiverRoleFound)
                            {
                                _logger.LogWarning("Could not set role for " + user.UserName
                                                   + " The role " + _caregiverRole + "does not exist");
                            }
                            else
                            {
                                try
                                {
                                    await _userManager.AddToRoleAsync(user, _caregiverRole);
                                }
                                catch (Exception ex)
                                {
                                    _logger.LogWarning("Could not set " + _caregiverRole + " role for " + user.UserName
                                                       + " " + ex.Message);
                                }
                            }
                        }
                        #endregion

                        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);
                }
            }

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