Registration.xaml.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data.Entity.Validation;
  4. using System.Linq;
  5. using System.Security.Cryptography;
  6. using System.Text;
  7. using System.Text.RegularExpressions;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Controls;
  11. using System.Windows.Data;
  12. using System.Windows.Documents;
  13. using System.Windows.Input;
  14. using System.Windows.Media;
  15. using System.Windows.Media.Imaging;
  16. using System.Windows.Navigation;
  17. using System.Windows.Shapes;
  18. namespace SneakersSkakunov
  19. {
  20. /// <summary>
  21. /// Логика взаимодействия для Registration.xaml
  22. /// </summary>
  23. public partial class Registration : Page
  24. {
  25. public Registration()
  26. {
  27. InitializeComponent();
  28. }
  29. private void GoAuth_Click(object sender, RoutedEventArgs e)
  30. {
  31. MainFrame.mframe.Navigate(new Authorization());
  32. }
  33. private void Reg_Click(object sender, RoutedEventArgs e)
  34. {
  35. if (EmptyCheck(Surname.Text, Name.Text, Patronymic.Text, BirthDate.Text))
  36. {
  37. MessageBox.Show("Нужно заполнить поля ФИО и даты рождения");
  38. return;
  39. }
  40. if (LogCheck(Login.Text) == false)
  41. {
  42. MessageBox.Show("Такой логин уже существует");
  43. return;
  44. }
  45. string CurPass = Pass.Password;
  46. if (PassCheck(CurPass) == false)
  47. {
  48. MessageBox.Show("В пароле должно быть: не менее 1 заглавного латинского символа, не менее 3 строчных латинских символов, не менее 2 цифры и не менее 1 спец. символа. Общая длина пароля не менее 8 символов");
  49. return;
  50. }
  51. using (SHA256 hash = SHA256.Create())
  52. {
  53. CurPass = BitConverter.ToString(hash.ComputeHash(Encoding.UTF8.GetBytes(CurPass))).Replace("-", "");
  54. }
  55. int gen;
  56. if (Male.IsChecked == true)
  57. {
  58. gen = 1;
  59. }
  60. else
  61. {
  62. gen = 2;
  63. }
  64. Users user = new Users()
  65. {
  66. Name = Name.Text,
  67. Surname = Surname.Text,
  68. Patronymic = Patronymic.Text,
  69. Login = Login.Text,
  70. Password = CurPass,
  71. DateBirth = BirthDate.SelectedDate,
  72. id_Gender = gen,
  73. id_Role = 2
  74. };
  75. try
  76. {
  77. App.Entities.Users.Add(user);
  78. App.Entities.SaveChanges();
  79. }
  80. catch (DbEntityValidationException ex)
  81. {
  82. foreach (DbEntityValidationResult validationError in ex.EntityValidationErrors)
  83. {
  84. MessageBox.Show("Object: " + validationError.Entry.Entity.ToString());
  85. foreach (DbValidationError err in validationError.ValidationErrors)
  86. {
  87. MessageBox.Show(err.ErrorMessage + "");
  88. }
  89. }
  90. }
  91. MessageBox.Show("Регистрация прошла успешно");
  92. }
  93. public bool PassCheck(string Pass)
  94. {
  95. Regex check = new Regex("(?=.*[A-Z])(?=.*[a-z]){3,}(?=.*[0-9]){2,}(?=.*[_])[A-Za-z0-9_]{8,}");
  96. if (check.IsMatch(Pass) == true)
  97. {
  98. return true;
  99. }
  100. else
  101. {
  102. return false;
  103. }
  104. }
  105. public bool LogCheck(string Log)
  106. {
  107. using (Sniker DB = new Sniker())
  108. {
  109. foreach (Users user in DB.Users)
  110. {
  111. if (Log == user.Login)
  112. {
  113. return false;
  114. }
  115. }
  116. return true;
  117. }
  118. }
  119. public bool EmptyCheck(string Sur, string Nam, string Pat, string BirthDate)
  120. {
  121. if (Sur == null || Nam == null || Pat == null || BirthDate == null)
  122. {
  123. return false;
  124. }
  125. else
  126. {
  127. return true;
  128. }
  129. }
  130. }
  131. }