Beispiel #1
0
 public UserReturnModel Create(ApplicationUser appUser)
 {
     return new UserReturnModel
     {
         Url = _UrlHelper.Link("GetUserById", new { id = appUser.Id }),
         Id = appUser.Id,
         UserName = appUser.UserName,
         //FullName = string.Format("{0} {1}", appUser.FirstName, appUser.LastName),
         //Email = appUser.Email,
         //EmailConfirmed = appUser.EmailConfirmed,
         //Level = appUser.Level,
         //JoinDate = appUser.JoinDate,
         Roles = _AppUserManager.GetRolesAsync(appUser.Id).Result,
         Claims = _AppUserManager.GetClaimsAsync(appUser.Id).Result
     };
 }
Beispiel #2
0
         public async Task<IHttpActionResult> CreateUser(CreateUserBindingModel createUserModel)
         {
             if (!ModelState.IsValid)
             {
                 return BadRequest(ModelState);
             }

             var user = new ApplicationUser()
             {
                 UserName = createUserModel.Username,
                 //Email = createUserModel.Email,
                 //FirstName = createUserModel.FirstName,
                 //LastName = createUserModel.LastName,
                 //Level = 3,
                 //JoinDate = DateTime.Now.Date,
             };

             IdentityResult addUserResult = await this.AppUserManager.CreateAsync(user, createUserModel.Password);

             if (!addUserResult.Succeeded)
             {
                 return GetErrorResult(addUserResult);
             }
             // Adding pulic user role 
            
             var role = "public";
             IdentityResult result = await this.AppUserManager.AddToRoleAsync(user.Id,role);
          
             if (!result.Succeeded)
             {
                 return GetErrorResult(result);
             }

            Uri locationHeader = new Uri(Url.Link("GetUserById", new { id = user.Id }));

             return Created(locationHeader, TheModelFactory.Create(user));
         }