InputValidation.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 PatternTimeNumbers(string text)
  36. {
  37. string pattern = @"\b\d{1,2}\.\d{2}\b|\b\d\.\d{2}\b";
  38. Regex regex = new Regex(pattern);
  39. if (regex.IsMatch(text))
  40. {
  41. return true;
  42. }
  43. else
  44. {
  45. return false;
  46. }
  47. }
  48. public static bool CheckAuthorization(string login, string password)
  49. {
  50. if (!string.IsNullOrWhiteSpace(login))
  51. {
  52. if (!string.IsNullOrEmpty(password))
  53. {
  54. return true;
  55. }
  56. else
  57. {
  58. MessageBox.Show("Заполните Пароль", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  59. return false;
  60. }
  61. }
  62. else
  63. {
  64. MessageBox.Show("Заполните Логин", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  65. return false;
  66. }
  67. }
  68. public static bool CheckNumbers(string title, string time)
  69. {
  70. if (!string.IsNullOrWhiteSpace(title))
  71. {
  72. if (!string.IsNullOrWhiteSpace(time))
  73. {
  74. return true;
  75. }
  76. else
  77. {
  78. MessageBox.Show("Вы не ввели длительность номера", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  79. return false;
  80. }
  81. }
  82. else
  83. {
  84. MessageBox.Show("Вы не ввели название номера", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  85. return false;
  86. }
  87. }
  88. public static bool CheckUsers(string name, string surname, string patronymis, string number, int power, int post)
  89. {
  90. if (!string.IsNullOrWhiteSpace(name))
  91. {
  92. if (!string.IsNullOrWhiteSpace(surname))
  93. {
  94. if (!string.IsNullOrWhiteSpace(patronymis))
  95. {
  96. if (!string.IsNullOrWhiteSpace(number))
  97. {
  98. if(power >= 0)
  99. {
  100. if(post >= 0)
  101. {
  102. return true;
  103. }
  104. else
  105. {
  106. MessageBox.Show("Выберите Должность", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  107. return false;
  108. }
  109. }
  110. else
  111. {
  112. MessageBox.Show("Выберите Права", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  113. return false;
  114. }
  115. }
  116. else
  117. {
  118. MessageBox.Show("Заполните Номер", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  119. return false;
  120. }
  121. }
  122. else
  123. {
  124. MessageBox.Show("Заполните Отчество", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  125. return false;
  126. }
  127. }
  128. else
  129. {
  130. MessageBox.Show("Заполните Фамилию", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  131. return false;
  132. }
  133. }
  134. else
  135. {
  136. MessageBox.Show("Заполните Имя", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  137. return false;
  138. }
  139. }
  140. }
  141. }