SysUserLogic.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**
  2. * 命名空间: CZFW.Authorization.Logic
  3. *
  4. * 功 能: N/A
  5. * 类 名: UserLogic
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2016/12/17 1:27:33 曹湘 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司                │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. using System.Collections.Generic;
  19. using System.Linq;
  20. using CZFW.Core.Security;
  21. using CZFW.Framework.Interface;
  22. using CZFW.Framework.Model;
  23. using CZFW.Framework.Model.ViewModel;
  24. using CZFW.Framework.Model.Entity;
  25. namespace CZFW.Framework.Logic
  26. {
  27. public class SysUserLogic : LogicBase<SysUserEntity>, ISysUser
  28. {
  29. public ResultModel AddUser(SysUserEntity entity)
  30. {
  31. ResultModel model = AddEntity(entity);
  32. var userLogon = new SysUserLogonEntity
  33. {
  34. CreatedBy = entity.Id,
  35. LastModifyBy = entity.Id,
  36. CreatedTime = DateTime.Now,
  37. UserId = entity.Id,
  38. UserPassword = "000000",
  39. UserSecretKey = DesEncrypt.GetMd5Hash(Guid.NewGuid().ToString()).ToLower()
  40. };
  41. userLogon.UserPassword = DesEncrypt.GetMd5Hash(DesEncrypt.Encrypt(DesEncrypt.GetMd5Hash(userLogon.UserPassword).ToLower(), userLogon.UserSecretKey).ToLower()).ToLower();
  42. ISysUserLogon logonLogic = new SysUserLogonLogic();
  43. model = logonLogic.AddEntity(userLogon);
  44. return model;
  45. }
  46. public OperatorModel CheckLogin(string username, string password, out string msg)
  47. {
  48. SysUserEntity userEntity = GetEntity(t => t.Account == username);
  49. msg = null;
  50. var model = new OperatorModel();
  51. if (userEntity != null)
  52. {
  53. if (userEntity.Enabled == true)
  54. {
  55. ISysUserLogon logonLogic = new SysUserLogonLogic();
  56. SysUserLogonEntity userLogOnEntity = logonLogic.GetEntity(x => x.UserId == userEntity.Id);
  57. string dbPassword = DesEncrypt.GetMd5Hash(DesEncrypt.Encrypt(DesEncrypt.GetMd5Hash(password).ToLower(), userLogOnEntity.UserSecretKey).ToLower()).ToLower();
  58. if (dbPassword == userLogOnEntity.UserPassword)
  59. {
  60. DateTime lastVisitTime = DateTime.Now;
  61. int? logOnCount = (userLogOnEntity.LogonCount) + 1;
  62. if (userLogOnEntity.LastVisitTime != null)
  63. {
  64. userLogOnEntity.PreviousVisitTime = userLogOnEntity.LastVisitTime;
  65. }
  66. userLogOnEntity.LastVisitTime = lastVisitTime;
  67. userLogOnEntity.LogonCount = logOnCount;
  68. logonLogic.EditEntity(userLogOnEntity);
  69. if (userEntity.IsAdministrator != null) model.IsSystem = (bool)userEntity.IsAdministrator;
  70. model.Avatar = userEntity.HeadIcon;
  71. model.DisplayName = userEntity.NickName;
  72. model.UserId = userEntity.Id;
  73. return model;
  74. }
  75. msg = "登录失败";
  76. return null;
  77. }
  78. msg = "登录失败";
  79. return null;
  80. }
  81. msg = "登录失败";
  82. return null;
  83. }
  84. public ResultModel DeleteAccount(int id)
  85. {
  86. var entity = GetEntity(id);
  87. entity.Deleted = true;
  88. return EditEntity(entity);
  89. }
  90. public ResultModel DisableAccount(int id)
  91. {
  92. var entity = GetEntity(id);
  93. entity.Enabled = false;
  94. return EditEntity(entity);
  95. }
  96. public ResultModel EnableAccount(int id)
  97. {
  98. var entity = GetEntity(id);
  99. entity.Enabled = true;
  100. return EditEntity(entity);
  101. }
  102. public ResultModel GetNickName(int id)
  103. {
  104. var user = GetEntity(id)??new SysUserEntity();
  105. return new ResultModel { Success = true, Code = user.NickName };
  106. }
  107. public UserItem GetUserItem(int id)
  108. {
  109. return GetQueryable().Where(x => x.Id == id).Select(x => new UserItem()
  110. {
  111. Id = x.Id,
  112. Account = x.Account,
  113. Enabled = x.Enabled,
  114. HeadIcon = x.HeadIcon,
  115. MobilePhone = x.MobilePhone,
  116. NickName = x.NickName
  117. }).FirstOrDefault();
  118. }
  119. public IList<UserItem> GetUserItems(int pageSize, int pageNumber, out int rows)
  120. {
  121. var queryable = Queryable.Where(x => !(bool)x.Deleted);
  122. rows = queryable.Count();
  123. return queryable.Skip(pageSize * (pageNumber - 1)).Take(pageSize).Select(x => new UserItem()
  124. {
  125. Id = x.Id,
  126. Account = x.Account,
  127. Enabled = x.Enabled,
  128. MobilePhone = x.MobilePhone,
  129. NickName = x.NickName,
  130. HeadIcon = x.HeadIcon
  131. }).ToList();
  132. }
  133. public IList<UserItem> GetUserItemsByIdList(IList<int> userIds)
  134. {
  135. userIds = userIds.Distinct().ToList();
  136. var queryable = Queryable.Where(x => userIds.Contains(x.Id)).Select(x => new
  137. {
  138. x.Id,
  139. x.Account,
  140. x.Enabled,
  141. x.HeadIcon,
  142. x.MobilePhone,
  143. x.NickName,
  144. x.SortOrder
  145. }).OrderByDescending(x => x.SortOrder).ToList();
  146. return queryable.Select(x => new UserItem()
  147. {
  148. Account = x.Account,
  149. Enabled = x.Enabled,
  150. HeadIcon = x.HeadIcon,
  151. Id = x.Id,
  152. MobilePhone = x.MobilePhone,
  153. NickName = x.NickName
  154. }).ToList();
  155. }
  156. public ResultModel Logout(int id)
  157. {
  158. CZDbContext context = new CZDbContext();
  159. var entity = context.Set<SysUserLogonEntity>().FirstOrDefault(x =>x.Id ==id);
  160. entity.UserOnline = false;
  161. var count = context.SaveChanges();
  162. return new ResultModel { Success = count > 0 };
  163. }
  164. public ResultModel UpdateUser(SysUserEntity entity)
  165. {
  166. throw new NotImplementedException();
  167. }
  168. }
  169. }