public async Task <IActionResult> OnPostAsync(string returnUrl = null) { returnUrl = returnUrl ?? Url.Content("~/"); ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList(); if (ModelState.IsValid) { var user = new AppIdentityUser { Name = NamesGenerator.GenerateDoubleName((new Random()).Next()), 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)); await _userManager.AddClaimAsync(user, ClaimStaticManager.GetNewPlayerClaim()); 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()); }
public void TestDoubleNamesGenerator() { Console.WriteLine(NamesGenerator.GenerateDoubleName(1)); Console.WriteLine(NamesGenerator.GenerateDoubleName(2)); Console.WriteLine(NamesGenerator.GenerateDoubleName(3)); Console.WriteLine(NamesGenerator.GenerateDoubleName(4)); Console.WriteLine(NamesGenerator.GenerateDoubleName(5)); Console.WriteLine(NamesGenerator.GenerateDoubleName(6)); Console.WriteLine(NamesGenerator.GenerateDoubleName(7)); Console.WriteLine(NamesGenerator.GenerateDoubleName(8)); Console.WriteLine(NamesGenerator.GenerateDoubleName(9)); Console.WriteLine(NamesGenerator.GenerateDoubleName(10)); Console.WriteLine(NamesGenerator.GenerateDoubleName(11)); Console.WriteLine(NamesGenerator.GenerateDoubleName(12)); }