PasswordChange_Admin.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Data.SqlClient;
  11. using System.Text.RegularExpressions;
  12. namespace proba
  13. {
  14. public partial class PasswordChange_Admin : Form
  15. {
  16. string id_employee;
  17. string surname;
  18. string name;
  19. string patronymic;
  20. string pol;
  21. string date_of_birth;
  22. string phone;
  23. string login;
  24. DataBase dataBase = new DataBase();
  25. Regex rg = new Regex("^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[^\\da-zA-Z]).{8,15}$");
  26. public PasswordChange_Admin(string id_employee, string surname, string name, string patronymic, string pol, string date_of_birth, string phone, string login)
  27. {
  28. InitializeComponent();
  29. this.id_employee = id_employee;
  30. this.surname = surname;
  31. this.name = name;
  32. this.patronymic = patronymic;
  33. this.pol = pol;
  34. this.date_of_birth = date_of_birth;
  35. this.phone = phone;
  36. this.login = login;
  37. }
  38. private void button_back_Click(object sender, EventArgs e)
  39. {
  40. this.Hide();
  41. EmployeeUpdate employeeUpdate = new EmployeeUpdate(id_employee, surname, name, patronymic, pol, date_of_birth, phone, login);
  42. employeeUpdate.ShowDialog();
  43. }
  44. private void button_save_Click(object sender, EventArgs e)
  45. {
  46. string pass = text_password2.Text;
  47. if (text_password2.Text.Replace(" ", "") == "") MessageBox.Show("Новый пароль не введён");
  48. else if (text_password3.Text.Replace(" ", "") == "") MessageBox.Show("Новый пароль не потверждён");
  49. else if (text_password2.Text == text_password3.Text)
  50. if (rg.IsMatch(pass))
  51. {
  52. var confirmResult = MessageBox.Show("Вы точно хотите изменить пароль?", "Подтвердите изменение!", MessageBoxButtons.YesNo);
  53. if (confirmResult == DialogResult.Yes)
  54. {
  55. dataBase.openConnection();
  56. Shifr.phraze = text_password2.Text;
  57. Shifr myTeloInfo1 = new Shifr();
  58. myTeloInfo1.ShifrCode();
  59. string password_2 = "";
  60. for (int i = 0; i < Shifr.codePhraze.Length; i++)
  61. {
  62. password_2 = password_2 + Shifr.codePhraze[i];
  63. }
  64. var addQuery = $"update Employee set password = '{password_2}' where login = '{login}'";
  65. var command = new SqlCommand(addQuery, dataBase.GetConnection());
  66. command.ExecuteNonQuery();
  67. MessageBox.Show("Пароль успешно изменён");
  68. dataBase.closeConnection();
  69. this.Hide();
  70. EmployeeUpdate employeeUpdate = new EmployeeUpdate(id_employee, surname, name, patronymic, pol, date_of_birth, phone, login);
  71. employeeUpdate.ShowDialog();
  72. }
  73. }
  74. else
  75. {
  76. MessageBox.Show("Пароль не соответствует требованиям!");
  77. }
  78. else
  79. {
  80. MessageBox.Show("Пароли не совпадают!!!");
  81. }
  82. }
  83. private void checkBox1_CheckedChanged(object sender, EventArgs e)
  84. {
  85. if (checkBox1.Checked)
  86. {
  87. text_password2.UseSystemPasswordChar = false;
  88. }
  89. else
  90. {
  91. text_password2.UseSystemPasswordChar = true;
  92. }
  93. }
  94. private void checkBox2_CheckedChanged(object sender, EventArgs e)
  95. {
  96. if (checkBox2.Checked)
  97. {
  98. text_password3.UseSystemPasswordChar = false;
  99. }
  100. else
  101. {
  102. text_password3.UseSystemPasswordChar = true;
  103. }
  104. }
  105. private void button1_Click(object sender, EventArgs e)
  106. {
  107. MessageBox.Show("Внимание! используйте только указанные символы. Пароль для регистрации в приложении должен содержать:\n \t 1. A-Z: хотя бы одну заглавную латинскую букву." +
  108. "\n\t 2. a-z: хотя бы одну строчную латинскую букву. \n\t 3. 8-15 символов \n\t 4. 0-9: одну или несколько цифр \n\t 5. !?@$#%_*=() минимум один спец символ");
  109. }
  110. }
  111. }