예제 #1
0
        private async Task SeedDefaultAdminUser()
        {
            if (!_dataContext.Users.Any(x => x.NormalizedUserName == "ADMIN"))
            {
                _logger.LogInformation("Incializando usuario Admin");

                var user = new Entities.Identity.SystemUser
                {
                    Id                   = "1",
                    UserName             = "******",
                    Email                = "*****@*****.**",
                    EmailConfirmed       = true,
                    PhoneNumberConfirmed = true,
                    LockoutEnabled       = false,
                    Nombre               = "admin",
                    Apellido             = "interopdemo"
                };

                var result     = _userManager.CreateAsync(user, "123456").Result;
                var roleResult = _userManager.AddToRoleAsync(user, "ADMINISTRADOR").Result;

                _logger.LogInformation($"Usuario registrado: IdentityResult IsSucceeded:{result.Succeeded}");

                await _dataContext.SaveChangesAsync();
            }
        }
        private async Task LoadSharedKeyAndQrCodeUriAsync(Entities.Identity.SystemUser 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
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl = returnUrl ?? Url.Content("~/");
            if (ModelState.IsValid)
            {
                var user = new Entities.Identity.SystemUser
                {
                    UserName = Input.UserName,
                    Nombre   = Input.Nombre,
                    Apellido = Input.Apellido,
                    Email    = Input.Email,
                    CUIT     = long.Parse(Common.Utils.Helpers.Cuit.ToCleanFormat(Input.CUIT))
                };

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

                if (result.Succeeded)
                {
                    _logger.LogInformation($"Nueva usuario registrado:username:{user.UserName}, Apellido:{user.Apellido}, Nombre:{user.Nombre}");

                    //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());
        }
예제 #4
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 Entities.Identity.SystemUser {
                    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());
        }