예제 #1
0
        public IActionResult Create(int id)
        {
            if (SignInManager.IsSignedIn(User))
            {
                var Client = (from client in _context.Client
                              where client.Email.Equals(User.Identity.Name)
                              select client).FirstOrDefault();

                Hire hire = new Hire();
                hire.ClientId       = Client.Id;
                hire.ProfessionalId = id;
                hire.HireDate       = DateTime.Now;

                var professional = _context.Professional.Find(id);
                professional.IsBooked = true;
                _context.Add(hire);
                _context.SaveChanges();



                var hireRecord = _context.Hire
                                 .Include(h => h.Professional)
                                 .Include(h => h.Client)
                                 .FirstOrDefault(h => h.Id == hire.Id);
                return(View(hireRecord));
            }



            return(View());
        }
        public async Task <IActionResult> OnPostAsync(string returnUrl = null)
        {
            returnUrl      = returnUrl ?? Url.Content("~/");
            ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
            if (ModelState.IsValid)
            {
                var user = new IdentityUser {
                    UserName = Input.Email, Email = Input.Email
                };
                var result = await _userManager.CreateAsync(user, Input.Password);

                if (result.Succeeded)
                {
                    var client = new Client
                    {
                        Email  = user.Email,
                        Name   = Input.Name,
                        Mobile = Input.Mobile
                    };

                    dataContext.Client.Add(client);

                    dataContext.SaveChanges();
                    var roleExistsResult = await _roleManager.RoleExistsAsync("client");

                    if (!roleExistsResult)
                    {
                        var roleReuslt = await _roleManager.CreateAsync(new IdentityRole("client"));

                        if (roleReuslt.Succeeded)
                        {
                            await _userManager.AddToRoleAsync(user, "client");
                        }
                    }
                    else
                    {
                        await _userManager.AddToRoleAsync(user, "client");
                    }

                    _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 },
                        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());
        }