/SourceCode/Trunks/Source/InventoryManagementSystem/Services/FU.Capstones.IMS.Services/Management/Validator.cs

# · C# · 458 lines · 385 code · 73 blank · 0 comment · 78 complexity · 611611b3b14f839b2c1cd1d64f7e557f MD5 · raw file

  1. using System;
  2. using System.Text;
  3. using System.Text.RegularExpressions;
  4. using FU.Capstones.IMS.Services.Common;
  5. using FU.Capstones.IMS.Services.Common.DataContracts;
  6. using FU.Capstones.IMS.Services.Common.Respondents;
  7. namespace FU.Capstones.IMS.Services.Management
  8. {
  9. public sealed class Validator
  10. {
  11. public static Feedback Validate<T>(T data) where T : class
  12. {
  13. if (data==null)
  14. {
  15. return new Feedback(string.Format(InventoryConstants.DataMissingMessage, typeof(T).Name), false);
  16. }
  17. return new Feedback(string.Empty,true);
  18. }
  19. public static Feedback Validate(Employee employee)
  20. {
  21. if (employee == null)
  22. {
  23. return new Feedback(InventoryConstants.Messages.NullData, false);
  24. }
  25. bool ok = true;
  26. StringBuilder stringBuilder = new StringBuilder();
  27. if (!ValidateUsername(employee.Username))
  28. {
  29. stringBuilder.AppendFormat(@"Tên đăng nhập: {0} \n", InventoryConstants.Messages.InvalidUsername);
  30. ok = false;
  31. }
  32. if (!ValidateEmail(employee.Email, true))
  33. {
  34. stringBuilder.AppendFormat(@"Thư điện tử: {0} \n", InventoryConstants.Messages.InvalidEmail);
  35. ok = false;
  36. }
  37. if (!ValidateICN(employee.IdentityCardNumber))
  38. {
  39. stringBuilder.AppendFormat(@"Số CMT: {0} \n", InventoryConstants.Messages.InvalidICN);
  40. ok = false;
  41. }
  42. if (!ValidateStringLength(employee.FullName, 1, 50, false))
  43. {
  44. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  45. ok = false;
  46. }
  47. if (!ValidateStringLength(employee.Address, 1, 4000, false))
  48. {
  49. stringBuilder.AppendFormat(@"Địa chỉ: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  50. ok = false;
  51. }
  52. if (!ValidateGender(employee.Gender))
  53. {
  54. stringBuilder.AppendFormat(@"Giới tính: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidGender, "Nam", "Nữ");
  55. ok = false;
  56. }
  57. if (employee.AuthorizationCollection != null )
  58. {
  59. for (int outer = 0; outer < employee.AuthorizationCollection.Count - 1; outer++)
  60. {
  61. int authorizationID = employee.AuthorizationCollection[outer];
  62. for (int inner = outer + 1; inner < employee.AuthorizationCollection.Count; inner++)
  63. {
  64. if (employee.AuthorizationCollection[inner] == authorizationID)
  65. {
  66. employee.AuthorizationCollection.RemoveAt(inner);
  67. --outer;
  68. --inner;
  69. }
  70. }
  71. }
  72. }
  73. return new Feedback(stringBuilder.ToString(), ok);
  74. }
  75. public static Feedback Validate(Product product)
  76. {
  77. if (product == null)
  78. {
  79. return new Feedback(InventoryConstants.Messages.NullData, false);
  80. }
  81. bool ok = true;
  82. StringBuilder stringBuilder = new StringBuilder();
  83. if (!ValidateStringLength(product.ProductName, 1, 50, false))
  84. {
  85. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  86. ok = false;
  87. }
  88. if (!ValidateStringLength(product.ProductCode, 1, 20, false))
  89. {
  90. stringBuilder.AppendFormat(@"Mã: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  91. ok = false;
  92. }
  93. if (!ValidateStringLength(product.Description, 1, 4000, false))
  94. {
  95. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  96. ok = false;
  97. }
  98. if (product.MaterialCollection != null)
  99. {
  100. for (int outer = 0; outer < product.MaterialCollection.Count-1; outer++)
  101. {
  102. if (product.MaterialCollection [outer]== null)
  103. product.MaterialCollection.RemoveAt(outer);
  104. }
  105. for (int outer = 0; outer < product.MaterialCollection.Count-1; outer++)
  106. {
  107. Material material = product.MaterialCollection[outer];
  108. for (int inner = outer+1; inner < product.MaterialCollection.Count; inner++)
  109. {
  110. if (product.MaterialCollection[inner].MaterialID == material.MaterialID)
  111. {
  112. material.Quantity += product.MaterialCollection[inner].Quantity;
  113. product.MaterialCollection.RemoveAt(inner);
  114. --outer;
  115. --inner;
  116. }
  117. }
  118. }
  119. }
  120. return new Feedback(stringBuilder.ToString(), ok);
  121. }
  122. public static Feedback Validate(Partner partner)
  123. {
  124. if (partner == null)
  125. {
  126. return new Feedback(InventoryConstants.Messages.NullData, false);
  127. }
  128. bool ok = true;
  129. StringBuilder stringBuilder = new StringBuilder();
  130. if (!ValidateStringLength(partner.CompanyName, 1, 50, false))
  131. {
  132. stringBuilder.AppendFormat(@"Tên công ty: {0}, ({1} - {2}) ", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  133. ok = false;
  134. }
  135. if (!ValidateStringLength(partner.PartnerCode, 1, 20, false))
  136. {
  137. stringBuilder.AppendFormat(@"Mã: {0}, ({1} - {2}) ", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  138. ok = false;
  139. }
  140. if (!ValidateStringLength(partner.Description, 1, 4000))
  141. {
  142. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2}) ", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  143. ok = false;
  144. }
  145. if (!ValidateStringLength(partner.OfficePhone, 1, 20, false))
  146. {
  147. stringBuilder.AppendFormat(@"Số điện thoại: {0}, ({1} - {2}) ", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  148. ok = false;
  149. }
  150. return new Feedback(stringBuilder.ToString(), ok);
  151. }
  152. public static Feedback Validate(Material material)
  153. {
  154. if (material == null)
  155. {
  156. return new Feedback(InventoryConstants.Messages.NullData, false);
  157. }
  158. bool ok = true;
  159. StringBuilder stringBuilder = new StringBuilder();
  160. if (!ValidateStringLength(material.MaterialName, 1, 50, false))
  161. {
  162. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  163. ok = false;
  164. }
  165. if (!ValidateStringLength(material.MaterialCode, 1, 20, false))
  166. {
  167. stringBuilder.AppendFormat(@"Mã: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  168. ok = false;
  169. }
  170. if (!ValidateStringLength(material.Description, 1, 4000, false))
  171. {
  172. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  173. ok = false;
  174. }
  175. return new Feedback(stringBuilder.ToString(), ok);
  176. }
  177. public static Feedback Validate(EmploymentType eType)
  178. {
  179. if (eType == null)
  180. {
  181. return new Feedback(InventoryConstants.Messages.NullData, false);
  182. }
  183. eType.FullDescription = "For future";
  184. bool ok = true;
  185. StringBuilder stringBuilder = new StringBuilder();
  186. if (!ValidateStringLength(eType.EmploymentTypeName, 1, 50, false))
  187. {
  188. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  189. ok = false;
  190. }
  191. if (!ValidateStringLength(eType.EmploymentTypeCode, 1, 20, false))
  192. {
  193. stringBuilder.AppendFormat(@"Mã: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  194. ok = false;
  195. }
  196. if (!ValidateStringLength(eType.BriefDescription, 1, 4000, false))
  197. {
  198. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  199. ok = false;
  200. }
  201. return new Feedback(stringBuilder.ToString(), ok);
  202. }
  203. public static Feedback Validate(Role role)
  204. {
  205. if (role == null)
  206. {
  207. return new Feedback(InventoryConstants.Messages.NullData, false);
  208. }
  209. role.FullDescription = "For future";
  210. bool ok = true;
  211. StringBuilder stringBuilder = new StringBuilder();
  212. if (!ValidateStringLength(role.RoleName, 1, 50, false))
  213. {
  214. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  215. ok = false;
  216. }
  217. if (!ValidateStringLength(role.RoleCode, 1, 20, false))
  218. {
  219. stringBuilder.AppendFormat(@"Mã: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  220. ok = false;
  221. }
  222. if (!ValidateStringLength(role.BriefDescription, 1, 4000, false))
  223. {
  224. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  225. ok = false;
  226. }
  227. return new Feedback(stringBuilder.ToString(), ok);
  228. }
  229. public static Feedback Validate(Contact contact)
  230. {
  231. if (contact == null)
  232. {
  233. return new Feedback(InventoryConstants.Messages.NullData, false);
  234. }
  235. bool ok = true;
  236. StringBuilder stringBuilder = new StringBuilder();
  237. if (!ValidateStringLength(contact.FullName, 1, 50, false))
  238. {
  239. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  240. ok = false;
  241. }
  242. if (!ValidateStringLength(contact.MobilePhone, 1, 20, false))
  243. {
  244. stringBuilder.AppendFormat(@"Sô điện thoại: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  245. ok = false;
  246. }
  247. return new Feedback(stringBuilder.ToString(), ok);
  248. }
  249. public static Feedback Validate(Warehouse warehouse)
  250. {
  251. if (warehouse == null)
  252. {
  253. return new Feedback(InventoryConstants.Messages.NullData, false);
  254. }
  255. bool ok = true;
  256. StringBuilder stringBuilder = new StringBuilder();
  257. if (!ValidateStringLength(warehouse.WarehouseName, 1, 50, false))
  258. {
  259. stringBuilder.AppendFormat(@"Tên: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 50);
  260. ok = false;
  261. }
  262. if (!ValidateStringLength(warehouse.Description, 1, 4000, false))
  263. {
  264. stringBuilder.AppendFormat(@"Miêu tả: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 4000);
  265. ok = false;
  266. }
  267. if (!ValidateStringLength(warehouse.Address, 1, 150, false))
  268. {
  269. stringBuilder.AppendFormat(@"Địa chỉ: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 150);
  270. ok = false;
  271. }
  272. if (!ValidateStringLength(warehouse.OfficePhone, 1, 20, false))
  273. {
  274. stringBuilder.AppendFormat(@"Số điện thoại: {0}, ({1} - {2})\n", InventoryConstants.Messages.InvalidStringLength, 1, 20);
  275. ok = false;
  276. }
  277. if (warehouse.Manager == null || warehouse.Manager.EmployeeID == 0)
  278. {
  279. stringBuilder.AppendFormat(@"Người quản lí: {0})\n", "Lack of warehouse manager");
  280. ok = false;
  281. }
  282. return new Feedback(stringBuilder.ToString(), ok);
  283. }
  284. public static Feedback ValidateStringEmpty(string str)
  285. {
  286. if (string.IsNullOrEmpty(str))
  287. {
  288. return new Feedback("This string is empty", false);
  289. }
  290. else
  291. {
  292. return new Feedback(str, true);
  293. }
  294. }
  295. public static Feedback ValidateStringLength50(string str)
  296. {
  297. if (str.Length >=50)
  298. {
  299. return new Feedback("This string is more than 50 words", false);
  300. }
  301. else
  302. {
  303. return new Feedback(str, true);
  304. }
  305. }
  306. public static Feedback ValidateStringLength10 (string str)
  307. {
  308. if (str.Length >=10)
  309. {
  310. return new Feedback("This string is more than 50 words",false);
  311. }
  312. else
  313. {
  314. return new Feedback(str,true);
  315. }
  316. }
  317. public static Feedback ValidateEmail (string email)
  318. {
  319. string emailPattern = @"\b[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}\b";
  320. Regex emailReg = new Regex(emailPattern);
  321. if (emailReg.IsMatch(email))
  322. {
  323. return new Feedback(email,true);
  324. }
  325. else
  326. {
  327. return new Feedback("This email address is not valid",false);
  328. }
  329. }
  330. public static Feedback ValidateDateFromAndTo (DateTime dateFrom,DateTime dateTo)
  331. {
  332. if (dateFrom.CompareTo(dateTo) > 0 )
  333. {
  334. return new Feedback("DateFrom must be smaller than DateTo",false);
  335. }
  336. else
  337. {
  338. return new Feedback(Convert.ToString(dateFrom.CompareTo(dateTo)), true);
  339. }
  340. }
  341. private static bool ValidateStringLength(string stringToValidate, int minLength, int maxLength, bool acceptNullOrEmpty = true)
  342. {
  343. if (!string.IsNullOrEmpty(stringToValidate))
  344. {
  345. return stringToValidate.Length >= minLength && stringToValidate.Length <= maxLength;
  346. }
  347. return acceptNullOrEmpty;
  348. }
  349. private static bool ValidateEmail(string emailToValidate, bool acceptNullOrEmpty)
  350. {
  351. if (!string.IsNullOrEmpty(emailToValidate))
  352. {
  353. Regex regex = new Regex(InventoryConstants.EmailRegex);
  354. return regex.IsMatch(emailToValidate);
  355. }
  356. return acceptNullOrEmpty;
  357. }
  358. private static bool ValidateICN(string icnToValidate)
  359. {
  360. if (!string.IsNullOrEmpty(icnToValidate))
  361. {
  362. Regex regex = new Regex(InventoryConstants.ICNRegex);
  363. return regex.IsMatch(icnToValidate);
  364. }
  365. return false;
  366. }
  367. private static bool ValidateUsername(string usernameToValidate)
  368. {
  369. if (usernameToValidate != null)
  370. {
  371. if (ValidateStringLength(usernameToValidate, 4, 50))
  372. {
  373. Regex regex = new Regex(InventoryConstants.UsernameRegex);
  374. return regex.IsMatch(usernameToValidate);
  375. }
  376. return true;
  377. }
  378. return false;
  379. }
  380. private static bool ValidateGender(string genderToValidate)
  381. {
  382. return string.Compare(genderToValidate, "Nam") == 0 || string.Compare(genderToValidate, "Nữ") == 0;
  383. }
  384. }
  385. }