UserService.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. using Microsoft.AspNetCore.Identity;
  2. using Microsoft.AspNetCore.WebUtilities;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.Extensions.Configuration;
  5. using MTWorkHR.Application.Identity;
  6. using MTWorkHR.Application.Mapper;
  7. using MTWorkHR.Application.Models;
  8. using MTWorkHR.Core.Global;
  9. using MTWorkHR.Core.IRepositories;
  10. using MTWorkHR.Core.UnitOfWork;
  11. using MTWorkHR.Application.Services.Interfaces;
  12. using MTWorkHR.Core.Email;
  13. using MTWorkHR.Core.Entities;
  14. using MTWorkHR.Infrastructure.UnitOfWorks;
  15. using MTWorkHR.Infrastructure.Entities;
  16. using static Org.BouncyCastle.Crypto.Engines.SM2Engine;
  17. using System.Web;
  18. using System.Data;
  19. using MTWorkHR.Core.IDto;
  20. using System.Linq.Dynamic.Core;
  21. using MTWorkHR.Core.Entities.Base;
  22. using MTWorkHR.Infrastructure.EmailService;
  23. using Countries.NET.Database;
  24. namespace MTWorkHR.Application.Services
  25. {
  26. public class UserService : IUserService
  27. {
  28. private readonly RoleManager<ApplicationRole> _roleManager;
  29. private readonly ApplicationUserManager _userManager;
  30. private readonly IUnitOfWork _unitOfWork;
  31. private readonly IUserRoleRepository<IdentityUserRole<string>> _userRole;
  32. private readonly AppSettingsConfiguration _configuration;
  33. private readonly IMailSender _emailSender;
  34. private readonly GlobalInfo _globalInfo;
  35. private readonly IFileService _fileService;
  36. private readonly IOTPService _oTPService;
  37. public UserService(ApplicationUserManager userManager, IUnitOfWork unitOfWork
  38. , RoleManager<ApplicationRole> roleManager, GlobalInfo globalInfo, AppSettingsConfiguration configuration, IMailSender emailSender
  39. , IUserRoleRepository<IdentityUserRole<string>> userRole, IFileService fileService, IOTPService oTPService)
  40. {
  41. _userManager = userManager;
  42. _unitOfWork = unitOfWork;
  43. _roleManager = roleManager;
  44. _userRole = userRole;
  45. _configuration = configuration;
  46. _emailSender = emailSender;
  47. _globalInfo = globalInfo;
  48. _fileService = fileService;
  49. _oTPService = oTPService;
  50. }
  51. public async Task<UserDto> GetById(string id)
  52. {
  53. var entity = await _userManager.Users
  54. .Include(x => x.UserRoles)
  55. .Include(x => x.UserAddress).ThenInclude(x=> x.City)
  56. .Include(x => x.UserAddress).ThenInclude(x=> x.Country)
  57. .Include(x => x.UserAttachments)
  58. .Include(x => x.JobTitle)
  59. .Include(x => x.Industry)
  60. .Include(x => x.University)
  61. .Include(x => x.Country)
  62. .Include(x => x.Qualification)
  63. .FirstOrDefaultAsync(x => x.Id == id);
  64. var response = MapperObject.Mapper.Map<UserDto>(entity);
  65. return response;
  66. }
  67. public async Task<UserDto> GetUserById(string id)
  68. {
  69. var entity = await _userManager.Users
  70. .FirstOrDefaultAsync(x => x.Id == id);
  71. var response = MapperObject.Mapper.Map<UserDto>(entity);
  72. return response;
  73. }
  74. //public async Task<List<UserDto>> GetAll(PagingInputDto pagingInput)
  75. //{
  76. // var employees = await _userManager.GetUsersInRoleAsync("Employee");
  77. // return employees.Select(e => new UserDto
  78. // {
  79. // Email = e.Email,
  80. // FirstName = e.FirstName,
  81. // LastName = e.LastName,
  82. // Id = e.Id
  83. // }).ToList();
  84. //}
  85. public virtual async Task<PagingResultDto<UserAllDto>> GetAll(UserPagingInputDto PagingInputDto)
  86. {
  87. var query = _userManager.Users
  88. .Include(u => u.Qualification).Include(u => u.JobTitle).Include(u => u.University).Include(u => u.Industry).Include(u => u.Country)
  89. .AsQueryable();
  90. if (PagingInputDto.Filter != null)
  91. {
  92. var filter = PagingInputDto.Filter;
  93. query = query.Where(u =>
  94. u.UserName.Contains(filter) ||
  95. u.Email.Contains(filter) ||
  96. u.FirstName.Contains(filter) ||
  97. u.LastName.Contains(filter) ||
  98. u.FavoriteName.Contains(filter) ||
  99. u.PhoneNumber.Contains(filter));
  100. }
  101. if (PagingInputDto.IndustryId != null)
  102. {
  103. query = query.Where(u => u.IndustryId == PagingInputDto.IndustryId);
  104. }
  105. if (PagingInputDto.QualificationId != null)
  106. {
  107. query = query.Where(u => u.QualificationId == PagingInputDto.QualificationId);
  108. }
  109. if (PagingInputDto.JobTitleId != null)
  110. {
  111. query = query.Where(u => u.JobTitleId == PagingInputDto.JobTitleId);
  112. }
  113. if (PagingInputDto.UniversityId != null)
  114. {
  115. query = query.Where(u => u.UniversityId == PagingInputDto.UniversityId);
  116. }
  117. if (PagingInputDto.CountryId != null)
  118. {
  119. query = query.Where(u => u.CountryId == PagingInputDto.CountryId);
  120. }
  121. var order = query.OrderBy(PagingInputDto.OrderByField + " " + PagingInputDto.OrderType);
  122. var page = order.Skip((PagingInputDto.PageNumber * PagingInputDto.PageSize) - PagingInputDto.PageSize).Take(PagingInputDto.PageSize);
  123. var total = await query.CountAsync();
  124. var list = MapperObject.Mapper
  125. .Map<IList<UserAllDto>>(await page.ToListAsync());
  126. var response = new PagingResultDto<UserAllDto>
  127. {
  128. Result = list,
  129. Total = total
  130. };
  131. return response;
  132. }
  133. public async Task<List<UserDto>> GetAllEmployees()
  134. {
  135. var employees = await _userManager.GetUsersInRoleAsync("Employee");
  136. return employees.Select(e => new UserDto
  137. {
  138. Email = e.Email,
  139. FirstName = e.FirstName,
  140. LastName = e.LastName,
  141. Id = e.Id
  142. }).ToList();
  143. }
  144. public async Task<List<UserAllDto>> GetAllCompanyEmployees()
  145. {
  146. var employees = await _userManager.GetUsersInRoleAsync("Employee");
  147. var res = employees.Where(e => _globalInfo.CompanyId == null || e.CompanyId == _globalInfo.CompanyId).ToList();
  148. var response = MapperObject.Mapper.Map<List<UserAllDto>>(res);
  149. return response;
  150. }
  151. public async Task Delete(string id)
  152. {
  153. var user = await _userManager.FindByIdAsync(id);
  154. if (user != null)
  155. {
  156. user.IsDeleted = true;
  157. await _userManager.UpdateAsync(user);
  158. }
  159. }
  160. public async Task<UserDto> Create(UserDto input)
  161. {
  162. var emailExists = await _userManager.FindByEmailAsync(input.Email);
  163. if (emailExists != null)
  164. throw new AppException(ExceptionEnum.RecordAlreadyExist);
  165. var phoneExists = await _userManager.FindByAnyAsync(input.PhoneNumber);
  166. if (phoneExists != null)
  167. throw new AppException(ExceptionEnum.RecordAlreadyExist);
  168. var userExists = await _userManager.FindByAnyAsync(input.UserName);
  169. if (userExists != null)
  170. throw new AppException(ExceptionEnum.RecordAlreadyExist);
  171. //loop for given list of attachment, and move each file from Temp path to Actual path
  172. // _fileService.UploadFiles(files);
  173. if (input.UserAttachments == null )
  174. input.UserAttachments = new List<AttachmentDto>();
  175. if(input.CVAttach != null)
  176. {
  177. input.UserAttachments.Add(new AttachmentDto { FileData = input.CVAttach, OriginalName = input.CVAttach?.Name,FileName = input.CVAttach?.FileName, AttachmentTypeId = 1 });
  178. }
  179. if (input.PassportAttach != null)
  180. {
  181. input.UserAttachments.Add(new AttachmentDto { FileData = input.PassportAttach, OriginalName = input.PassportAttach?.Name, FileName = input.PassportAttach?.FileName, AttachmentTypeId = 2 });
  182. }
  183. if (input.EduCertificateAttach != null)
  184. {
  185. input.UserAttachments.Add(new AttachmentDto { FileData = input.EduCertificateAttach, OriginalName = input.EduCertificateAttach?.Name, FileName = input.EduCertificateAttach?.FileName, AttachmentTypeId = 3 });
  186. }
  187. if (input.ExperienceCertificateAttach != null)
  188. {
  189. input.UserAttachments.Add(new AttachmentDto { FileData = input.ExperienceCertificateAttach, OriginalName = input.ExperienceCertificateAttach?.Name, FileName = input.ExperienceCertificateAttach?.FileName, AttachmentTypeId = 4 });
  190. }
  191. if (input.ProfCertificateAttach != null)
  192. {
  193. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfCertificateAttach, OriginalName = input.ProfCertificateAttach?.Name, FileName = input.ProfCertificateAttach?.FileName, AttachmentTypeId = 5 });
  194. }
  195. if (!await _fileService.CopyFileToActualFolder(input.UserAttachments.ToList()))
  196. throw new AppException(ExceptionEnum.CouldNotMoveFiles);
  197. var user = MapperObject.Mapper.Map<ApplicationUser>(input);
  198. if(user.UserType == 0)
  199. {
  200. user.UserType = (int)UserTypeEnum.Employee;//default if not selected
  201. }
  202. _unitOfWork.BeginTran();
  203. //saving user
  204. var result = await _userManager.CreateAsync(user, input.Password);
  205. if (!result.Succeeded)
  206. {
  207. if(result.Errors != null && result.Errors.Count() > 0)
  208. {
  209. var msg = result.Errors.Select(a => a.Description ).Aggregate((a,b) => a + " /r/n " + b);
  210. throw new AppException(msg);
  211. }
  212. throw new AppException(ExceptionEnum.RecordCreationFailed);
  213. }
  214. input.Id = user.Id;
  215. //saving userRoles
  216. if(input.UserRoles == null || input.UserRoles.Count == 0)
  217. {
  218. var employeeRole = await _roleManager.FindByNameAsync("Employee");
  219. if (employeeRole != null)
  220. {
  221. await _userManager.AddToRoleAsync(user, "Employee");
  222. }
  223. }
  224. else
  225. {
  226. var userRoles = MapperObject.Mapper.Map<List<IdentityUserRole<string>>>(input.UserRoles);
  227. foreach (var role in userRoles)
  228. {
  229. role.UserId = user.Id;
  230. if (await _roleManager.FindByIdAsync(role.RoleId) == null)
  231. throw new AppException(ExceptionEnum.RecordNotExist);
  232. var roleOb = input.UserRoles?.FirstOrDefault(r => r.RoleId == role.RoleId);
  233. var roleName = roleOb != null ? roleOb.RoleName : "Employee";
  234. await _userManager.AddToRoleAsync(user, roleName);
  235. }
  236. }
  237. // await _userRole.AddRangeAsync(userRoles);
  238. await _unitOfWork.CompleteAsync();
  239. _unitOfWork.CommitTran();
  240. try
  241. {
  242. var resultPassReset = await GetConfirmEmailURL(user.Id);
  243. var sendMailResult = await _emailSender.SendEmail(new EmailMessage
  244. {
  245. Subject = "Register Confirmation",
  246. To = input.Email,
  247. Body = "Please Set Your Password (this link will expired after 24 hours)"
  248. ,
  249. url = resultPassReset.Item1,
  250. userId = user.Id
  251. });
  252. if (!sendMailResult)
  253. {
  254. throw new AppException("User created, but could not send the email!");
  255. }
  256. }
  257. catch
  258. {
  259. throw new AppException("User created, but could not send the email!");
  260. }
  261. return input;
  262. }
  263. public async Task<bool> ConfirmEmail(ConfirmEmailDto input)
  264. {
  265. var user = await _userManager.FindByIdAsync(input.UserId);
  266. if (user == null)
  267. throw new AppException(ExceptionEnum.RecordNotExist);
  268. var result = await _userManager.ConfirmEmailAsync(user, input.Token);
  269. return result.Succeeded;
  270. }
  271. private async Task<Tuple<string, string>> GetResetPasswordURL(string userId)
  272. {
  273. var user = await _userManager.Users.FirstOrDefaultAsync(x => !x.IsDeleted && x.Id.Equals(userId));
  274. if (user == null)
  275. throw new AppException(ExceptionEnum.RecordNotExist);
  276. string code = await _userManager.GeneratePasswordResetTokenAsync(user);
  277. var route = "auth/ConfirmEmail";
  278. var origin = _configuration.JwtSettings.Audience;
  279. var endpointUri = new Uri(string.Concat($"{origin}/", route));
  280. var userURL = QueryHelpers.AddQueryString(endpointUri.ToString(), "userId", user.Id);
  281. var passwordResetURL = QueryHelpers.AddQueryString(userURL.ToString(), "token", code);
  282. return new Tuple<string, string>(passwordResetURL, user.Email);
  283. }
  284. private async Task<Tuple<string, string>> GetConfirmEmailURL(string userId)
  285. {
  286. var user = await _userManager.Users.FirstOrDefaultAsync(x => !x.IsDeleted && x.Id.Equals(userId));
  287. if (user == null)
  288. throw new AppException(ExceptionEnum.RecordNotExist);
  289. string token = await _userManager.GenerateEmailConfirmationTokenAsync(user);
  290. string codeHtmlVersion = HttpUtility.UrlEncode(token);
  291. var route = "auth/ConfirmEmail";
  292. var origin = _configuration.JwtSettings.Audience;
  293. var endpointUri = new Uri(string.Concat($"{origin}/", route));
  294. var userURL = QueryHelpers.AddQueryString(endpointUri.ToString(), "userId", user.Id);
  295. var confirmEmailUrl = QueryHelpers.AddQueryString(userURL.ToString(), "token", codeHtmlVersion);
  296. return new Tuple<string, string>(confirmEmailUrl, user.Email);
  297. }
  298. public async Task<UserDto> Update(UserDto input)
  299. {
  300. try
  301. {
  302. var entity = await _userManager.FindByIdAsync(input.Id);
  303. if (entity == null)
  304. throw new AppException(ExceptionEnum.RecordNotExist);
  305. if (input.UserAttachments == null)
  306. input.UserAttachments = new List<AttachmentDto>();
  307. if (input.CVAttach != null)
  308. {
  309. input.UserAttachments.Add(new AttachmentDto { FileData = input.CVAttach, OriginalName = input.CVAttach?.Name, FileName = input.CVAttach?.FileName, AttachmentTypeId = 1 });
  310. }
  311. if (input.PassportAttach != null)
  312. {
  313. input.UserAttachments.Add(new AttachmentDto { FileData = input.PassportAttach, OriginalName = input.PassportAttach?.Name, FileName = input.PassportAttach?.FileName, AttachmentTypeId = 2 });
  314. }
  315. if (input.EduCertificateAttach != null)
  316. {
  317. input.UserAttachments.Add(new AttachmentDto { FileData = input.EduCertificateAttach, OriginalName = input.EduCertificateAttach?.Name, FileName = input.EduCertificateAttach?.FileName, AttachmentTypeId = 3 });
  318. }
  319. if (input.ExperienceCertificateAttach != null)
  320. {
  321. input.UserAttachments.Add(new AttachmentDto { FileData = input.ExperienceCertificateAttach, OriginalName = input.ExperienceCertificateAttach?.Name, FileName = input.ExperienceCertificateAttach?.FileName, AttachmentTypeId = 4 });
  322. }
  323. if (input.ProfCertificateAttach != null)
  324. {
  325. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfCertificateAttach, OriginalName = input.ProfCertificateAttach?.Name, FileName = input.ProfCertificateAttach?.FileName, AttachmentTypeId = 5 });
  326. }
  327. if (!await _fileService.CopyFileToActualFolder(input.UserAttachments.ToList()))
  328. throw new AppException(ExceptionEnum.CouldNotMoveFiles);
  329. MapperObject.Mapper.Map(input, entity);
  330. _unitOfWork.BeginTran();
  331. //saving user
  332. var result = await _userManager.UpdateAsync(entity);
  333. if (!result.Succeeded)
  334. throw new AppException(ExceptionEnum.RecordUpdateFailed);
  335. //**saving userRoles
  336. //add new user roles
  337. //var exsitedRolesIds = await _userRole.GetUserRoleIdsByUserID(input.Id);
  338. //if (input.UserRoles == null)
  339. // input.UserRoles = new List<UserRoleDto>();
  340. //var newAddedRoles = MapperObject.Mapper.Map<List<IdentityUserRole<string>>>(input.UserRoles.Where(x => !exsitedRolesIds.Contains(x.RoleId)));
  341. //newAddedRoles.ForEach(x => x.UserId = input.Id);
  342. //await _userRole.AddRangeAsync(newAddedRoles);
  343. ////delete removed roles
  344. //var rolesIds = input.UserRoles.Select(x => x.RoleId).ToArray();
  345. //var removedRoles = await _userRole.GetRemovedUserRoleIdsByUserID(input.Id, rolesIds);
  346. //await _userRole.DeleteAsync(removedRoles.AsEnumerable());
  347. await _unitOfWork.CompleteAsync();
  348. _unitOfWork.CommitTran();
  349. }
  350. catch (Exception e)
  351. {
  352. throw e;
  353. }
  354. return input;
  355. }
  356. public async Task<bool> IsExpiredToken(ConfirmEmailDto input)
  357. {
  358. var user = await _userManager.Users.IgnoreQueryFilters().FirstOrDefaultAsync(x => x.Id == input.UserId);
  359. if (user == null)
  360. throw new AppException(ExceptionEnum.RecordNotExist);
  361. var purpose = UserManager<ApplicationUser>.ResetPasswordTokenPurpose;
  362. var result = await _userManager.VerifyUserTokenAsync(user, "Default", purpose, input.Token);
  363. return !result;
  364. }
  365. public async Task<bool> ResetPassword(ResetPasswordDto input)
  366. {
  367. var user = await _userManager.FindByIdAsync(_globalInfo.UserId);
  368. if (user == null)
  369. throw new AppException(ExceptionEnum.RecordNotExist);
  370. if (!await _userManager.CheckPasswordAsync(user, input.OldPassword))
  371. throw new AppException(ExceptionEnum.WrongCredentials);
  372. var token = await _userManager.GeneratePasswordResetTokenAsync(user);
  373. var result = await _userManager.ResetPasswordAsync(user, token, input.NewPassword);
  374. if (!result.Succeeded)
  375. throw new AppException(ExceptionEnum.RecordUpdateFailed);
  376. return true;
  377. }
  378. public async Task<ForgetPasswordResponseDto> ForgetPasswordMail(string email) //Begin forget password
  379. {
  380. var foundUser = await _userManager.FindByEmailAsync(email);
  381. if (foundUser != null)
  382. {
  383. string oneTimePassword = await _oTPService.RandomOneTimePassword(foundUser.Id);
  384. await _oTPService.SentOTPByMail(foundUser.Id, foundUser.Email, oneTimePassword);
  385. ForgetPasswordResponseDto res = new ForgetPasswordResponseDto { UserId = foundUser.Id};
  386. return res;
  387. }
  388. else
  389. {
  390. throw new AppException(ExceptionEnum.RecordNotExist);
  391. }
  392. }
  393. public async Task<bool> VerifyOTP(VerifyOTPDto input)
  394. {
  395. if (! await _oTPService.VerifyOTP(input.UserId, input.OTP))
  396. throw new AppException(ExceptionEnum.WrongOTP);
  397. return true;
  398. }
  399. public async Task<bool> ForgetPassword(ForgetPasswordDto input)
  400. {
  401. var user = await _userManager.Users.IgnoreQueryFilters().FirstOrDefaultAsync(x => x.Id == input.UserId);
  402. if (user == null)
  403. throw new AppException(ExceptionEnum.RecordNotExist);
  404. string resetToken = await _userManager.GeneratePasswordResetTokenAsync(user);
  405. var result = await _userManager.ResetPasswordAsync(user, resetToken, input.Password);
  406. if (!result.Succeeded)
  407. {
  408. if (result.Errors != null && result.Errors.Count() > 0)
  409. {
  410. var msg = result.Errors.Select(a => a.Description).Aggregate((a, b) => a + " /r/n " + b);
  411. throw new AppException(msg);
  412. }
  413. throw new AppException(ExceptionEnum.RecordCreationFailed);
  414. }
  415. return result.Succeeded;
  416. }
  417. public async Task StopUser(string userId)
  418. {
  419. var entity = await _userManager.Users.FirstOrDefaultAsync(x => x.Id == userId);
  420. if (entity == null)
  421. throw new AppException(ExceptionEnum.RecordNotExist);
  422. if (!entity.IsStopped)
  423. {
  424. entity.IsStopped = true;
  425. await _unitOfWork.CompleteAsync();
  426. }
  427. }
  428. public async Task ActiveUser(string userId)
  429. {
  430. var entity = await _userManager.Users.FirstOrDefaultAsync(x => x.Id == userId);
  431. if (entity == null)
  432. throw new AppException(ExceptionEnum.RecordNotExist);
  433. entity.IsStopped = false;
  434. entity.AccessFailedCount = 0;
  435. entity.LockoutEnabled = false;
  436. entity.LockoutEnd = null;
  437. await _unitOfWork.CompleteAsync();
  438. }
  439. }
  440. }