public ActionResult <UserCodeDTO> CreateNewUserCode(UserCodeDTO userCodeDTO) { // Handle error if no data is sent. if (userCodeDTO == null) { return(BadRequest("User code data must be set!")); } try { // Map the DTO to entity and save the entity UserCode createdEntity = _service.Create(userCodeDTO.ToEntity()); // According to the conventions, we have to return a HTTP 201 created repsonse, with // field "Location" in the header pointing to the created object return(CreatedAtAction( nameof(GetUserCode), new { id = createdEntity.Id }, new UserCodeDTO(createdEntity))); } catch (ProgramLanguageNotSupportedException) { // Handle error if programming language is not supported return(BadRequest("This programming language is not supported!")); } }
public async Task <IHttpActionResult> CreateUserAsync(UserCreateDto model) { User newUser; if (model == null) { ModelState.AddModelError("model", new ArgumentNullException(nameof(model))); } model.RepeatPassword = model.NewPassword; model.Roles.Add("deliverypartner"); if (ModelState.IsValid == false) { return(BadRequest(ModelState)); } newUser = await userRepo.CreateAsync(model.Email, model.Email, model.FirstName, model.NewPassword, 0, model.LastName, model.CompanyFK); #region Add user to company umCompanyRepo.AddUserToCompanies(model.UserCompanies, newUser.Id); umCompanyRepo.SaveChanges(); #endregion #region Send one time code for initial change password var userCode = userCodeRepo.Create(new UserCode() { UserK = newUser.Id }); userCodeRepo.SaveChanges(); string code = userCode.Code; var adminSecurity = adminSecurityService.GetAdministrationSecurity(); EmailDto emaildto = new EmailDto() { EmailBody = String.Format("Hi {0} {1}. You have been added as a new user to siteTRAX Evolution. <br/><br/> Your Onetime code is: <b>{2}</b> <br/> This Onetime code is valid until: <b>{3}</b> at which time it will expire and a new one code will be required to be requested. <br/><br/> To enter your onetime code. Click on \"Forget my password\" then click on \"I have a onetime code\" <br/><br/>If you did not request this password reset, please ignore this message. <br/> Do not reply to this email message as the mail box is un-monitored.", newUser.FirstName, newUser.LastName, userCode.Code, userCode.ExpirationDateUtc.ToLocalTime().ToString("dd-MMMM-yyyy hh:mm tt")), EmailSubject = "New User - siteTRAX Evolution", EmailSender = "*****@*****.**", EmailRecipient = newUser.Email }; CustomEmail.SendPasswordEmail(adminSecurity.MailerServer, adminSecurity.MailerServerPort.Value, adminSecurity.MailerUsername, adminSecurity.MailerPassword, adminSecurity.PasswordResetEmail, newUser.Email, emaildto.EmailSubject, emaildto.EmailBody); #endregion //await userRepo.AssignRolesAsync(newUser, model.Roles.ToArray()); userRepo.SaveChanges(); return(Ok(newUser)); }
public IHttpActionResult ImportUsers(dynamic xmlData) { var importResult = new ImportResultDto(); var importUsesrDto = new List <ImportUserDto>(); var savedCount = 0; var skippedCount = 0; var totalCount = 0; var failedCount = 0; string xmlDataString = xmlData.xmlData; xmlDataString = Regex.Replace(xmlDataString, @"[^\u0020-\u007F]", String.Empty); XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlDataString); var nodes = doc.ChildNodes; foreach (var node in nodes) { var userNode = node as XmlNode; if (userNode.Name == "Users") { foreach (var innerNode in userNode.ChildNodes) { var importUserDto = new ImportUserDto(); var contentUserNodes = (innerNode as XmlNode).ChildNodes; var firstName = contentUserNodes.Item(0).InnerText; var lastName = contentUserNodes.Item(1).InnerText; var userName = contentUserNodes.Item(2).InnerText; var email = contentUserNodes.Item(3).InnerText; importUserDto.FirstName = firstName; importUserDto.LastName = lastName; importUserDto.UserLogin = userName; importUserDto.Email = email; try { if (userService.IsEmailExist(email)) { skippedCount++; totalCount++; importUserDto.Status = "Skipped"; } else { if (ModelState.IsValid == false) { return(BadRequest(ModelState)); } var newUser = userService.Create(userName, email, firstName, "", lastName); #region Send one time code for initial change password var userCode = userCodeRepo.Create(new UserCode() { UserK = newUser.Id }); string code = userCode.Code; var adminSecurity = adminSecurityService.GetAdministrationSecurity(); EmailDto emaildto = new EmailDto() { EmailBody = String.Format("Hi {0} {1}. You have been added as a new user to siteTRAX Evolution. <br/><br/> Your Onetime code is: <b>{2}</b> <br/> This Onetime code is valid until: <b>{3}</b> at which time it will expire and a new one code will be required to be requested. <br/><br/> To enter your onetime code. Click on \"Forget my password\" then click on \"I have a onetime code\" <br/><br/>If you did not request this password reset, please ignore this message. <br/> Do not reply to this email message as the mail box is un-monitored.", newUser.FirstName, newUser.LastName, userCode.Code, userCode.ExpirationDateUtc.ToLocalTime().ToString("dd-MMMM-yyyy hh:mm tt")), EmailSubject = "New User - siteTRAX Evolution", EmailSender = "*****@*****.**", EmailRecipient = newUser.Email }; CustomEmail.SendPasswordEmail(adminSecurity.MailerServer, adminSecurity.MailerServerPort.Value, adminSecurity.MailerUsername, adminSecurity.MailerPassword, adminSecurity.PasswordResetEmail, newUser.Email, emaildto.EmailSubject, emaildto.EmailBody); #endregion savedCount++; importUserDto.Status = "Added"; } } catch (Exception) { failedCount++; importUserDto.Status = "Failed"; } importUsesrDto.Add(importUserDto); } importResult.ImportUsersDto = importUsesrDto; importResult.Added = savedCount; importResult.Skipped = skippedCount; importResult.Total = totalCount; importResult.Failed = failedCount; } } return(Ok(importResult)); }