Reg.xaml.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. using System.Text.RegularExpressions;
  16. namespace Детский_сад
  17. {
  18. /// <summary>
  19. /// Логика взаимодействия для Reg.xaml
  20. /// </summary>
  21. public partial class Reg : Page
  22. {
  23. public Reg()
  24. {
  25. InitializeComponent();
  26. cbGender.ItemsSource = Base.KE.Genders.ToList();
  27. cbGender.SelectedValuePath = "Id_gender";
  28. cbGender.DisplayMemberPath = "Gender";
  29. cbPositions.ItemsSource = Base.KE.Positions.ToList();
  30. cbPositions.SelectedValuePath = "Id_position";
  31. cbPositions.DisplayMemberPath = "Position";
  32. dpBirthdate.DisplayDateStart = new DateTime(DateTime.Now.Year - 70, 1, 1);
  33. dpBirthdate.DisplayDateEnd = new DateTime(DateTime.Now.Year - 16, DateTime.Now.Month, DateTime.Now.Day);
  34. }
  35. private void btnReg_Click(object sender, RoutedEventArgs e)
  36. {
  37. if (checkData())
  38. {
  39. Employees emp = new Employees()
  40. {
  41. Surname = tboxSurname.Text,
  42. Names = tboxName.Text,
  43. Patronymic = tboxPatronymic.Text,
  44. Birthdate = dpBirthdate.SelectedDate.Value,
  45. Id_gender = cbGender.SelectedIndex + 1,
  46. Id_position = cbPositions.SelectedIndex + 1,
  47. Street = tboxStreet.Text,
  48. Building = tboxBuilding.Text,
  49. Phone = tboxPhone.Text,
  50. Login_user = tboxLogin.Text,
  51. Password_user = tboxPassword.Text.GetHashCode(),
  52. Id_role = 2
  53. };
  54. try
  55. {
  56. Base.KE.Employees.Add(emp);
  57. Base.KE.SaveChanges();
  58. MessageBox.Show("Пользователь успешно зарегистрирован", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  59. }
  60. catch
  61. {
  62. MessageBox.Show("Возникла ошибка! Данные не были занесены в базу", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  63. }
  64. }
  65. }
  66. private bool checkData()
  67. {
  68. Employees emp = Base.KE.Employees.FirstOrDefault(x => x.Login_user == tboxLogin.Text);
  69. if (!Regex.IsMatch(tboxSurname.Text, @"^[А-Я][а-я]+$"))
  70. {
  71. MessageBox.Show("Фамилия должна начинаться с заглавной буквы и содержать только русские буквы", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  72. return false;
  73. }
  74. else if (!Regex.IsMatch(tboxName.Text, @"^[А-Я][а-я]+$"))
  75. {
  76. MessageBox.Show("Имя должно начинаться с заглавной буквы и содержать только русские буквы", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  77. return false;
  78. }
  79. else if (!Regex.IsMatch(tboxPatronymic.Text, @"^[А-Я][а-я]+$"))
  80. {
  81. MessageBox.Show("Отчество должно начинаться с заглавной буквы и содержать только русские буквы", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  82. return false;
  83. }
  84. else if (dpBirthdate.SelectedDate.Value == DateTime.Today)
  85. {
  86. MessageBox.Show("Выберите дату рождения", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  87. return false;
  88. }
  89. else if (cbGender.SelectedIndex == -1)
  90. {
  91. MessageBox.Show("Выберите пол", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  92. return false;
  93. }
  94. else if (cbPositions.SelectedIndex == -1)
  95. {
  96. MessageBox.Show("Выберите должность", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  97. return false;
  98. }
  99. else if (!Regex.IsMatch(tboxStreet.Text, @"^[А-Я][а-я]+$"))
  100. {
  101. MessageBox.Show("Улица должна начинаться с заглавной буквы и содержать только русские буквы", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  102. return false;
  103. }
  104. else if (tboxBuilding.Text.Length == 0)
  105. {
  106. MessageBox.Show("Введите строение", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  107. return false;
  108. }
  109. else if (!Regex.IsMatch(tboxPhone.Text, @"^\+7 9\d{2} \d{3}-\d{2}-\d{2}$"))
  110. {
  111. MessageBox.Show("Номер телефона должен соответствовать следующей маске: \"+7 9XX XXX-XX-XX\", где X - любая цифра", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  112. return false;
  113. }
  114. else if (tboxLogin.Text.Length == 0)
  115. {
  116. MessageBox.Show("Введите логин", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  117. return false;
  118. }
  119. else if (emp != null)
  120. {
  121. MessageBox.Show("Пользователь с таким логином уже зарегистрирован", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  122. return false;
  123. }
  124. else if (!CheckPassword(tboxPassword.Text))
  125. {
  126. return false;
  127. }
  128. return true;
  129. }
  130. /// <summary>
  131. /// Валидация пароля
  132. /// </summary>
  133. /// <param name="s">Пароль</param>
  134. /// <returns>Валидация прошла успешно - true, иначе - false</returns>
  135. private bool CheckPassword(string s)
  136. {
  137. if (tboxPassword.Text.Length < 8)
  138. {
  139. MessageBox.Show("Пароль должен содержать минимум 8 символов", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  140. return false;
  141. }
  142. else if (!Regex.IsMatch(s, "[A-Z]"))
  143. {
  144. MessageBox.Show("Пароль должен содержать минимум 1 заглавный латинский символ", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  145. return false;
  146. }
  147. else if (!Regex.IsMatch(s, "[a-z]+.*[a-z]+.*[a-z]+"))
  148. {
  149. MessageBox.Show("Пароль должен содержать минимум 3 строчных латинских символов", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  150. return false;
  151. }
  152. else if (!Regex.IsMatch(s, @"\d+.*\d"))
  153. {
  154. MessageBox.Show("Пароль должен содержать минимум 2 цифры", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  155. return false;
  156. }
  157. else if (!Regex.IsMatch(s, @"\W"))
  158. {
  159. MessageBox.Show("Пароль должен содержать минимум 1 специальный символ", "Регистрация", MessageBoxButton.OK, MessageBoxImage.Information);
  160. return false;
  161. }
  162. return true;
  163. }
  164. }
  165. }