UserService.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  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.ProfileImage != null)
  176. {
  177. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfileImage, OriginalName = input.ProfileImage?.Name, FileName = input.ProfileImage?.FileName, AttachmentTypeId = 9 });
  178. }
  179. if (input.CVAttach != null)
  180. {
  181. input.UserAttachments.Add(new AttachmentDto { FileData = input.CVAttach, OriginalName = input.CVAttach?.Name,FileName = input.CVAttach?.FileName, AttachmentTypeId = 1 });
  182. }
  183. if (input.PassportAttach != null)
  184. {
  185. input.UserAttachments.Add(new AttachmentDto { FileData = input.PassportAttach, OriginalName = input.PassportAttach?.Name, FileName = input.PassportAttach?.FileName, AttachmentTypeId = 2 });
  186. }
  187. if (input.EduCertificateAttach != null)
  188. {
  189. input.UserAttachments.Add(new AttachmentDto { FileData = input.EduCertificateAttach, OriginalName = input.EduCertificateAttach?.Name, FileName = input.EduCertificateAttach?.FileName, AttachmentTypeId = 3 });
  190. }
  191. if (input.ExperienceCertificateAttach != null)
  192. {
  193. input.UserAttachments.Add(new AttachmentDto { FileData = input.ExperienceCertificateAttach, OriginalName = input.ExperienceCertificateAttach?.Name, FileName = input.ExperienceCertificateAttach?.FileName, AttachmentTypeId = 4 });
  194. }
  195. if (input.ProfCertificateAttach != null)
  196. {
  197. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfCertificateAttach, OriginalName = input.ProfCertificateAttach?.Name, FileName = input.ProfCertificateAttach?.FileName, AttachmentTypeId = 5 });
  198. }
  199. var files = input.UserAttachments.Select(a=> a.FileData).ToList();
  200. List<AttachmentDto> attachs = input.UserAttachments.ToList();
  201. _fileService.CopyFileToCloud(ref attachs);
  202. //if (!res)
  203. // throw new AppException(ExceptionEnum.CouldNotMoveFiles);
  204. input.UserAttachments = attachs;
  205. var user = MapperObject.Mapper.Map<ApplicationUser>(input);
  206. if(user.UserType == 0)
  207. {
  208. user.UserType = (int)UserTypeEnum.Employee;//default if not selected
  209. }
  210. _unitOfWork.BeginTran();
  211. //saving user
  212. var result = await _userManager.CreateAsync(user, input.Password);
  213. if (!result.Succeeded)
  214. {
  215. if(result.Errors != null && result.Errors.Count() > 0)
  216. {
  217. var msg = result.Errors.Select(a => a.Description ).Aggregate((a,b) => a + " /r/n " + b);
  218. throw new AppException(msg);
  219. }
  220. throw new AppException(ExceptionEnum.RecordCreationFailed);
  221. }
  222. input.Id = user.Id;
  223. //saving userRoles
  224. if(input.UserRoles == null || input.UserRoles.Count == 0)
  225. {
  226. var employeeRole = await _roleManager.FindByNameAsync("Employee");
  227. if (employeeRole != null)
  228. {
  229. await _userManager.AddToRoleAsync(user, "Employee");
  230. }
  231. }
  232. else
  233. {
  234. var userRoles = MapperObject.Mapper.Map<List<IdentityUserRole<string>>>(input.UserRoles);
  235. foreach (var role in userRoles)
  236. {
  237. role.UserId = user.Id;
  238. if (await _roleManager.FindByIdAsync(role.RoleId) == null)
  239. throw new AppException(ExceptionEnum.RecordNotExist);
  240. var roleOb = input.UserRoles?.FirstOrDefault(r => r.RoleId == role.RoleId);
  241. var roleName = roleOb != null ? roleOb.RoleName : "Employee";
  242. await _userManager.AddToRoleAsync(user, roleName);
  243. }
  244. }
  245. // await _userRole.AddRangeAsync(userRoles);
  246. await _unitOfWork.CompleteAsync();
  247. _unitOfWork.CommitTran();
  248. try
  249. {
  250. var resultPassReset = await GetConfirmEmailURL(user.Id);
  251. var sendMailResult = await _emailSender.SendEmail(new EmailMessage
  252. {
  253. Subject = "Register Confirmation",
  254. To = input.Email,
  255. Body = "Please Set Your Password (this link will expired after 24 hours)"
  256. ,
  257. url = resultPassReset.Item1,
  258. userId = user.Id
  259. });
  260. if (!sendMailResult)
  261. {
  262. throw new AppException("User created, but could not send the email!");
  263. }
  264. }
  265. catch
  266. {
  267. throw new AppException("User created, but could not send the email!");
  268. }
  269. return input;
  270. }
  271. public async Task<bool> ConfirmEmail(ConfirmEmailDto input)
  272. {
  273. var user = await _userManager.FindByIdAsync(input.UserId);
  274. if (user == null)
  275. throw new AppException(ExceptionEnum.RecordNotExist);
  276. var result = await _userManager.ConfirmEmailAsync(user, input.Token);
  277. return result.Succeeded;
  278. }
  279. private async Task<Tuple<string, string>> GetResetPasswordURL(string userId)
  280. {
  281. var user = await _userManager.Users.FirstOrDefaultAsync(x => !x.IsDeleted && x.Id.Equals(userId));
  282. if (user == null)
  283. throw new AppException(ExceptionEnum.RecordNotExist);
  284. string code = await _userManager.GeneratePasswordResetTokenAsync(user);
  285. var route = "auth/ConfirmEmail";
  286. var origin = _configuration.JwtSettings.Audience;
  287. var endpointUri = new Uri(string.Concat($"{origin}/", route));
  288. var userURL = QueryHelpers.AddQueryString(endpointUri.ToString(), "userId", user.Id);
  289. var passwordResetURL = QueryHelpers.AddQueryString(userURL.ToString(), "token", code);
  290. return new Tuple<string, string>(passwordResetURL, user.Email);
  291. }
  292. private async Task<Tuple<string, string>> GetConfirmEmailURL(string userId)
  293. {
  294. var user = await _userManager.Users.FirstOrDefaultAsync(x => !x.IsDeleted && x.Id.Equals(userId));
  295. if (user == null)
  296. throw new AppException(ExceptionEnum.RecordNotExist);
  297. string token = await _userManager.GenerateEmailConfirmationTokenAsync(user);
  298. string codeHtmlVersion = HttpUtility.UrlEncode(token);
  299. var route = "auth/ConfirmEmail";
  300. var origin = _configuration.JwtSettings.Audience;
  301. var endpointUri = new Uri(string.Concat($"{origin}/", route));
  302. var userURL = QueryHelpers.AddQueryString(endpointUri.ToString(), "userId", user.Id);
  303. var confirmEmailUrl = QueryHelpers.AddQueryString(userURL.ToString(), "token", codeHtmlVersion);
  304. return new Tuple<string, string>(confirmEmailUrl, user.Email);
  305. }
  306. public async Task<UserUpdateDto> Update(UserUpdateDto input)
  307. {
  308. try
  309. {
  310. var entity = await _userManager.FindByIdAsync(input.Id);
  311. if (entity == null)
  312. throw new AppException(ExceptionEnum.RecordNotExist);
  313. if (input.UserAttachments == null)
  314. input.UserAttachments = new List<AttachmentDto>();
  315. if (input.ProfileImage != null)
  316. {
  317. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfileImage, OriginalName = input.ProfileImage?.Name, FileName = input.ProfileImage?.FileName, AttachmentTypeId = 9 });
  318. }
  319. if (input.CVAttach != null)
  320. {
  321. input.UserAttachments.Add(new AttachmentDto { FileData = input.CVAttach, OriginalName = input.CVAttach?.Name, FileName = input.CVAttach?.FileName, AttachmentTypeId = 1 });
  322. }
  323. if (input.PassportAttach != null)
  324. {
  325. input.UserAttachments.Add(new AttachmentDto { FileData = input.PassportAttach, OriginalName = input.PassportAttach?.Name, FileName = input.PassportAttach?.FileName, AttachmentTypeId = 2 });
  326. }
  327. if (input.EduCertificateAttach != null)
  328. {
  329. input.UserAttachments.Add(new AttachmentDto { FileData = input.EduCertificateAttach, OriginalName = input.EduCertificateAttach?.Name, FileName = input.EduCertificateAttach?.FileName, AttachmentTypeId = 3 });
  330. }
  331. if (input.ExperienceCertificateAttach != null)
  332. {
  333. input.UserAttachments.Add(new AttachmentDto { FileData = input.ExperienceCertificateAttach, OriginalName = input.ExperienceCertificateAttach?.Name, FileName = input.ExperienceCertificateAttach?.FileName, AttachmentTypeId = 4 });
  334. }
  335. if (input.ProfCertificateAttach != null)
  336. {
  337. input.UserAttachments.Add(new AttachmentDto { FileData = input.ProfCertificateAttach, OriginalName = input.ProfCertificateAttach?.Name, FileName = input.ProfCertificateAttach?.FileName, AttachmentTypeId = 5 });
  338. }
  339. List<AttachmentDto> attachs = input.UserAttachments.ToList();
  340. _fileService.CopyFileToCloud(ref attachs);
  341. input.UserAttachments = attachs;
  342. //if (!await _fileService.CopyFileToActualFolder(input.UserAttachments.ToList()))
  343. // throw new AppException(ExceptionEnum.CouldNotMoveFiles);
  344. MapperObject.Mapper.Map(input, entity);
  345. _unitOfWork.BeginTran();
  346. //saving user
  347. var result = await _userManager.UpdateAsync(entity);
  348. if (!result.Succeeded)
  349. throw new AppException(ExceptionEnum.RecordUpdateFailed);
  350. //**saving userRoles
  351. //add new user roles
  352. //var exsitedRolesIds = await _userRole.GetUserRoleIdsByUserID(input.Id);
  353. //if (input.UserRoles == null)
  354. // input.UserRoles = new List<UserRoleDto>();
  355. //var newAddedRoles = MapperObject.Mapper.Map<List<IdentityUserRole<string>>>(input.UserRoles.Where(x => !exsitedRolesIds.Contains(x.RoleId)));
  356. //newAddedRoles.ForEach(x => x.UserId = input.Id);
  357. //await _userRole.AddRangeAsync(newAddedRoles);
  358. ////delete removed roles
  359. //var rolesIds = input.UserRoles.Select(x => x.RoleId).ToArray();
  360. //var removedRoles = await _userRole.GetRemovedUserRoleIdsByUserID(input.Id, rolesIds);
  361. //await _userRole.DeleteAsync(removedRoles.AsEnumerable());
  362. await _unitOfWork.CompleteAsync();
  363. _unitOfWork.CommitTran();
  364. }
  365. catch (Exception e)
  366. {
  367. throw e;
  368. }
  369. return input;
  370. }
  371. public async Task<bool> IsExpiredToken(ConfirmEmailDto input)
  372. {
  373. var user = await _userManager.Users.IgnoreQueryFilters().FirstOrDefaultAsync(x => x.Id == input.UserId);
  374. if (user == null)
  375. throw new AppException(ExceptionEnum.RecordNotExist);
  376. var purpose = UserManager<ApplicationUser>.ResetPasswordTokenPurpose;
  377. var result = await _userManager.VerifyUserTokenAsync(user, "Default", purpose, input.Token);
  378. return !result;
  379. }
  380. public async Task<bool> ResetPassword(ResetPasswordDto input)
  381. {
  382. var user = await _userManager.FindByIdAsync(_globalInfo.UserId);
  383. if (user == null)
  384. throw new AppException(ExceptionEnum.RecordNotExist);
  385. if (!await _userManager.CheckPasswordAsync(user, input.OldPassword))
  386. throw new AppException(ExceptionEnum.WrongCredentials);
  387. var token = await _userManager.GeneratePasswordResetTokenAsync(user);
  388. var result = await _userManager.ResetPasswordAsync(user, token, input.NewPassword);
  389. if (!result.Succeeded)
  390. throw new AppException(ExceptionEnum.RecordUpdateFailed);
  391. return true;
  392. }
  393. public async Task<ForgetPasswordResponseDto> ForgetPasswordMail(string email) //Begin forget password
  394. {
  395. var foundUser = await _userManager.FindByEmailAsync(email);
  396. if (foundUser != null)
  397. {
  398. string oneTimePassword = await _oTPService.RandomOneTimePassword(foundUser.Id);
  399. await _oTPService.SentOTPByMail(foundUser.Id, foundUser.Email, oneTimePassword);
  400. ForgetPasswordResponseDto res = new ForgetPasswordResponseDto { UserId = foundUser.Id};
  401. return res;
  402. }
  403. else
  404. {
  405. throw new AppException(ExceptionEnum.RecordNotExist);
  406. }
  407. }
  408. public async Task<bool> VerifyOTP(VerifyOTPDto input)
  409. {
  410. if (! await _oTPService.VerifyOTP(input.UserId, input.OTP))
  411. throw new AppException(ExceptionEnum.WrongOTP);
  412. return true;
  413. }
  414. public async Task<bool> ForgetPassword(ForgetPasswordDto input)
  415. {
  416. var user = await _userManager.Users.IgnoreQueryFilters().FirstOrDefaultAsync(x => x.Id == input.UserId);
  417. if (user == null)
  418. throw new AppException(ExceptionEnum.RecordNotExist);
  419. string resetToken = await _userManager.GeneratePasswordResetTokenAsync(user);
  420. var result = await _userManager.ResetPasswordAsync(user, resetToken, input.Password);
  421. if (!result.Succeeded)
  422. {
  423. if (result.Errors != null && result.Errors.Count() > 0)
  424. {
  425. var msg = result.Errors.Select(a => a.Description).Aggregate((a, b) => a + " /r/n " + b);
  426. throw new AppException(msg);
  427. }
  428. throw new AppException(ExceptionEnum.RecordCreationFailed);
  429. }
  430. return result.Succeeded;
  431. }
  432. public async Task StopUser(string userId)
  433. {
  434. var entity = await _userManager.Users.FirstOrDefaultAsync(x => x.Id == userId);
  435. if (entity == null)
  436. throw new AppException(ExceptionEnum.RecordNotExist);
  437. if (!entity.IsStopped)
  438. {
  439. entity.IsStopped = true;
  440. await _unitOfWork.CompleteAsync();
  441. }
  442. }
  443. public async Task ActiveUser(string userId)
  444. {
  445. var entity = await _userManager.Users.FirstOrDefaultAsync(x => x.Id == userId);
  446. if (entity == null)
  447. throw new AppException(ExceptionEnum.RecordNotExist);
  448. entity.IsStopped = false;
  449. entity.AccessFailedCount = 0;
  450. entity.LockoutEnabled = false;
  451. entity.LockoutEnd = null;
  452. await _unitOfWork.CompleteAsync();
  453. }
  454. }
  455. }