PasswordChange.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 : Form
  15. {
  16. DataBase dataBase = new DataBase();
  17. public PasswordChange()
  18. {
  19. InitializeComponent();
  20. }
  21. private void button_back_Click(object sender, EventArgs e)
  22. {
  23. this.Hide();
  24. PersonalArea personalArea = new PersonalArea();
  25. personalArea.ShowDialog();
  26. }
  27. public void global_FormClosed(object sender, EventArgs e)
  28. {
  29. Application.Exit();
  30. }
  31. private void button_save_Click(object sender, EventArgs e)
  32. {
  33. dataBase.openConnection();
  34. SqlCommand sqlCommand_password = new SqlCommand($"SELECT password From Employee WHERE login = '{PosleVHODA.login}'", dataBase.GetConnection());
  35. Regex rg = new Regex("^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[^\\da-zA-Z]).{8,15}$");
  36. string pass = text_password2.Text;
  37. string password = sqlCommand_password.ExecuteScalar().ToString();
  38. Shifr.phraze = text_password1.Text;
  39. Shifr myTeloInfo = new Shifr();
  40. myTeloInfo.ShifrCode();
  41. string password_1 = "";
  42. for (int i = 0; i < Shifr.codePhraze.Length; i++)
  43. {
  44. password_1 = password_1 + Shifr.codePhraze[i];
  45. }
  46. if (text_password1.Text.Replace(" ", "") == "") MessageBox.Show("Не введён старый пароль");
  47. else if (text_password2.Text.Replace(" ", "") == "") MessageBox.Show("Новый пароль не введён");
  48. else if (text_password3.Text.Replace(" ", "") == "") MessageBox.Show("Новый пароль не потверждён");
  49. else if (text_password2.TextLength > 25) MessageBox.Show("Максимальная длина пароля – 25 символов");
  50. else if (password != password_1) MessageBox.Show("Старый пароль не верный");
  51. else if (text_password2.Text == text_password3.Text)
  52. if(rg.IsMatch(pass))
  53. {
  54. var confirmResult = MessageBox.Show("Вы точно хотите изменить пароль?", "Подтвердите изменение!", MessageBoxButtons.YesNo);
  55. if (confirmResult == DialogResult.Yes)
  56. {
  57. dataBase.openConnection();
  58. Shifr.phraze = text_password2.Text;
  59. Shifr myTeloInfo1 = new Shifr();
  60. myTeloInfo1.ShifrCode();
  61. string password_2 = "";
  62. for (int i = 0; i < Shifr.codePhraze.Length; i++)
  63. {
  64. password_2 = password_2 + Shifr.codePhraze[i];
  65. }
  66. var addQuery = $"update Employee set password = '{password_2}' where login = '{PosleVHODA.login}'";
  67. var command = new SqlCommand(addQuery, dataBase.GetConnection());
  68. command.ExecuteNonQuery();
  69. MessageBox.Show("Пароль успешно изменён");
  70. dataBase.closeConnection();
  71. this.Hide();
  72. PersonalArea personalArea = new PersonalArea();
  73. personalArea.ShowDialog();
  74. }
  75. }
  76. else
  77. {
  78. MessageBox.Show("Пароль не соответствует требованиям");
  79. }
  80. else
  81. {
  82. MessageBox.Show("Пароли не совпадают!!!");
  83. }
  84. }
  85. private void checkBox1_CheckedChanged(object sender, EventArgs e)
  86. {
  87. if (checkBox1.Checked)
  88. {
  89. text_password2.UseSystemPasswordChar = false;
  90. }
  91. else
  92. {
  93. text_password2.UseSystemPasswordChar = true;
  94. }
  95. }
  96. private void checkBox2_CheckedChanged(object sender, EventArgs e)
  97. {
  98. if (checkBox2.Checked)
  99. {
  100. text_password3.UseSystemPasswordChar = false;
  101. }
  102. else
  103. {
  104. text_password3.UseSystemPasswordChar = true;
  105. }
  106. }
  107. private void PasswordChange_Load(object sender, EventArgs e)
  108. {
  109. }
  110. private void button1_Click(object sender, EventArgs e)
  111. {
  112. MessageBox.Show("Внимание! используйте только указанные символы. Пароль для регистрации в приложении должен содержать:\n \t 1. A-Z: хотя бы одну заглавную латинскую букву." +
  113. "\n\t 2. a-z: хотя бы одну строчную латинскую букву. \n\t 3. 8-15 символов \n\t 4. 0-9: одну или несколько цифр \n\t 5. !?@$#%_*=() минимум один спец символ");
  114. }
  115. }
  116. }