InputValidation.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. namespace LibraryRDK
  9. {
  10. public class InputValidation
  11. {
  12. public static bool Pattern(string text)
  13. {
  14. string pattern = @"\b[0-2][0-9]:[0-5][0-9]-[0-2][0-9]:[0-5][0-9]\b";
  15. Regex regex = new Regex(pattern);
  16. if (regex.IsMatch(text))
  17. {
  18. return true;
  19. }
  20. else
  21. {
  22. return false;
  23. }
  24. }
  25. public static bool PatternNumbers(string text)
  26. {
  27. string pattern = @"8\d{10}$";
  28. Regex regex = new Regex(pattern);
  29. if (regex.IsMatch(text))
  30. {
  31. return true;
  32. }
  33. else { return false; }
  34. }
  35. public static bool CheckAuthorization(string login, string password)
  36. {
  37. if (!string.IsNullOrWhiteSpace(login))
  38. {
  39. if (!string.IsNullOrEmpty(password))
  40. {
  41. return true;
  42. }
  43. else
  44. {
  45. MessageBox.Show("Заполните Пароль", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  46. return false;
  47. }
  48. }
  49. else
  50. {
  51. MessageBox.Show("Заполните Логин", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  52. return false;
  53. }
  54. }
  55. public static bool CheckUsers(string name, string surname, string patronymis, string number, int power, int post)
  56. {
  57. if (!string.IsNullOrWhiteSpace(name))
  58. {
  59. if (!string.IsNullOrWhiteSpace(surname))
  60. {
  61. if (!string.IsNullOrWhiteSpace(patronymis))
  62. {
  63. if (!string.IsNullOrWhiteSpace(number))
  64. {
  65. if(power >= 0)
  66. {
  67. if(post >= 0)
  68. {
  69. return true;
  70. }
  71. else
  72. {
  73. MessageBox.Show("Выберите Должность", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  74. return false;
  75. }
  76. }
  77. else
  78. {
  79. MessageBox.Show("Выберите Права", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  80. return false;
  81. }
  82. }
  83. else
  84. {
  85. MessageBox.Show("Заполните Номер", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  86. return false;
  87. }
  88. }
  89. else
  90. {
  91. MessageBox.Show("Заполните Отчество", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  92. return false;
  93. }
  94. }
  95. else
  96. {
  97. MessageBox.Show("Заполните Фамилию", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  98. return false;
  99. }
  100. }
  101. else
  102. {
  103. MessageBox.Show("Заполните Имя", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  104. return false;
  105. }
  106. }
  107. }
  108. }