private async Task LoadAsync(TroydonFitnessWebsiteUser user) { var userName = await _userManager.GetUserNameAsync(user); var phoneNumber = await _userManager.GetPhoneNumberAsync(user); Username = userName; Input = new InputModel { FirstName = user.FirstName, LastName = user.LastName, PhoneNumber = phoneNumber, // add optional personal info used to calibre AddressLine1 = user.AddressLine1, AddressLine2 = user.AddressLine2, City = user.City, Zip = user.Zip, DateOfBirth = user.DateOfBirth, Gender = (InputModel.GenderType?)user.Gender, Height = user.Height, Weight = user.Weight, ActivityType = (InputModel.ActivityTypeOptions?)user.ActivityType, Bodyfat = user.Bodyfat, }; }
public async Task <IActionResult> OnGetAsync(string?id) { if (id == null) { return(NotFound()); } TroydonFitnessWebsiteUser = await _context.Users.FindAsync(id); if (TroydonFitnessWebsiteUser == null) { return(NotFound()); } //// authorized users only can view //var isAuthorized = await AuthorizationService.AuthorizeAsync( // User, Product, // ProductOperations.Update); //if (!isAuthorized.Succeeded) //{ // return Forbid(); //} return(Page()); }
public async Task <IActionResult> OnPostAsync([FromForm] WelcomeRequest request, string returnUrl = null) { returnUrl = returnUrl ?? Url.Content("~/"); ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList(); if (ModelState.IsValid) { var user = new TroydonFitnessWebsiteUser { UserName = Input.Email, Email = Input.Email, FirstName = Input.FirstName, LastName = Input.LastName, AddressLine1 = "N/A", IsAdmin = Input.IsAdmin, IsMasterAdmin = Input.IsMasterAdmin, CoolOffDate = System.DateTime.Now }; 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, returnUrl = returnUrl }, protocol: Request.Scheme); // SEND WELCOME CONFIRMATION EMAIL await _mailService.SendWelcomeEmailAsync(request, HtmlEncoder.Default.Encode(callbackUrl), Input.Email, Input.FirstName); // send to require confirmation page if its enabled if (_userManager.Options.SignIn.RequireConfirmedAccount) { return(RedirectToPage("RegisterConfirmation", new { email = Input.Email, returnUrl = returnUrl })); } // otherwise sign in 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()); }
private async Task LoadAsync(TroydonFitnessWebsiteUser user) { var email = await _userManager.GetEmailAsync(user); Email = email; Input = new InputModel { NewEmail = email, }; IsEmailConfirmed = await _userManager.IsEmailConfirmedAsync(user); }
public async Task <IActionResult> OnGetAsync(string?id) { if (id == null) { return(NotFound()); } TroydonFitnessWebsiteUser = await _context.Users.FindAsync(id); if (TroydonFitnessWebsiteUser == null) { return(NotFound()); } return(Page()); }
private async Task LoadSharedKeyAndQrCodeUriAsync(TroydonFitnessWebsiteUser 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); }
public async Task CreateUserRoles(IServiceProvider serviceProvider) { var RoleManager = serviceProvider.GetRequiredService <RoleManager <ApplicationRole> >(); var UserManager = serviceProvider.GetRequiredService <UserManager <TroydonFitnessWebsiteUser> >(); //Adding Admin Role var roleCheck = await RoleManager.RoleExistsAsync("Admin"); if (!roleCheck) { //create the roles and seed them to the database // roleResult = await RoleManager.CreateAsync(new ApplicationRole("Admin")); } //Assign Admin role to the main User here we have given our newly registered //login id for Admin management TroydonFitnessWebsiteUser user = await UserManager.FindByEmailAsync("*****@*****.**"); await UserManager.AddToRoleAsync(user, "Admin"); }
public async Task <IActionResult> OnPostConfirmationAsync([FromForm] WelcomeRequest request, 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 TroydonFitnessWebsiteUser { UserName = Input.Email, Email = Input.Email, FirstName = Input.FirstName }; var result = await _userManager.CreateAsync(user); if (result.Succeeded) { result = await _userManager.AddLoginAsync(user, info); if (result.Succeeded) { // Begin add claims If they exist, add claims to the user for: // Given (first) name // Locale // Picture if (info.Principal.HasClaim(c => c.Type == JwtClaimTypes.GivenName)) { await _userManager.AddClaimAsync(user, info.Principal.FindFirst(JwtClaimTypes.GivenName)); } if (info.Principal.HasClaim(c => c.Type == JwtClaimTypes.FamilyName)) { await _userManager.AddClaimAsync(user, info.Principal.FindFirst(JwtClaimTypes.FamilyName)); } if (info.Principal.HasClaim(c => c.Type == "urn:google:locale")) { await _userManager.AddClaimAsync(user, info.Principal.FindFirst("urn:google:locale")); } if (info.Principal.HasClaim(c => c.Type == "urn:google:picture")) { await _userManager.AddClaimAsync(user, info.Principal.FindFirst("urn:google:picture")); } // Include the access token in the properties var props = new AuthenticationProperties(); props.StoreTokens(info.AuthenticationTokens); props.IsPersistent = true; // end _logger.LogInformation("User created an account using {Name} provider.", info.LoginProvider); // this section allows email confirmation by clicking a link 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); // SEND WELCOME CONFIRMATION EMAIL --- it is not getting the secret values? await _mailService.SendWelcomeEmailAsync(request, HtmlEncoder.Default.Encode(callbackUrl), Input.Email, Input.FirstName); // 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, props); //await _signInManager.SignInAsync((user, props, 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()); }