public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                var startingIndex = model.Email.IndexOf("@");
                var userName      = model.Email.Remove(startingIndex);
                var user          = new ApplicationUser {
                    UserName = model.UserName, Email = model.Email
                };
                var result = await UserManager.CreateAsync(user, model.Password);

                if (result.Succeeded)
                {
                    UserManager.AddToRole(user.Id, "Customer");
                    var createProfile = new ProfilesService(Guid.Parse(user.Id));
                    createProfile.Create();
                    await SignInManager.SignInAsync(user, isPersistent : false, rememberBrowser : false);

                    // For more information on how to enable account confirmation and password reset please visit https://go.microsoft.com/fwlink/?LinkID=320771
                    // Send an email with this link
                    // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
                    // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                    // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");
                    //Assign Role to user Here
                    //Ends Here
                    return(RedirectToAction("Index", "Home"));
                }
                //ViewBag.Name = new SelectList(context.Roles.Where(u => !u.Name.Contains("Admin")).ToList(), "Name", "Name");

                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }
Beispiel #2
0
 public ActionResult <Profile> Create([FromBody] Profile newProfile)
 {
     try
     {
         newProfile.UserId = HttpContext.User.FindFirstValue("Id");
         return(Ok(_ps.Create(newProfile)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }
 public ActionResult <Profile> Post([FromBody] Profile newProfile)
 {
     try
     {
         newProfile.UserId = HttpContext.User.FindFirst(ClaimTypes.NameIdentifier).Value;
         return(Ok(_ps.Create(newProfile)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }