Form1.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. namespace Дол_Восток
  12. {
  13. public partial class Avtorization : Form
  14. {
  15. SqlCommand query = null;
  16. public Avtorization()
  17. {
  18. InitializeComponent();
  19. }
  20. private void Avtorization_Load(object sender, EventArgs e)
  21. {
  22. try
  23. {
  24. debugAndTrace.onStart();
  25. db_helper.openConnection(ref db_helper.sqlConnection);
  26. }
  27. catch
  28. {
  29. MessageBox.Show("Произошла непредвиденная ошибка!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  30. }
  31. }
  32. private void autorization_Click(object sender, EventArgs e)
  33. {
  34. try
  35. {
  36. bool checkTB = false;
  37. foreach (TextBox textBox in this.Controls.OfType<TextBox>())
  38. {
  39. if (String.IsNullOrEmpty(textBox.Text))
  40. {
  41. checkTB = true;
  42. break;
  43. }
  44. }
  45. if (!checkTB)
  46. {
  47. SqlCommand findUser = new SqlCommand($"select count(*) from registration where Login like '{tb_login.Text}' and Password like '{tb_password.Text}'", db_helper.sqlConnection);
  48. debugAndTrace.info = new string[2];
  49. debugAndTrace.info[0] = tb_login.Text;
  50. debugAndTrace.info[1] = tb_password.Text;
  51. if (findUser.ExecuteScalar().ToString().Equals("1"))
  52. {
  53. debugAndTrace.writeInFile("Вход в приложение", debugAndTrace.info);
  54. GLavn menu = new GLavn();
  55. menu.Show();
  56. this.Hide();
  57. }
  58. else
  59. {
  60. debugAndTrace.writeInFile("Ошибка на входе", debugAndTrace.info);
  61. MessageBox.Show("Такого пользователя нет!\nПроверьте правильность введенных данных, либо зарегистрируйтесь заново", "Ошибка входа", MessageBoxButtons.OK, MessageBoxIcon.Error);
  62. }
  63. }
  64. }
  65. catch
  66. {
  67. MessageBox.Show("Произошла непредвиденная ошибка!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  68. }
  69. }
  70. private void bt_registration_Click(object sender, EventArgs e)
  71. {
  72. try
  73. {
  74. query = new SqlCommand($"select count(*) from registration where Login like '{tb_login.Text}'", db_helper.sqlConnection);
  75. debugAndTrace.info = new string[2];
  76. debugAndTrace.info[0] = tb_login.Text;
  77. debugAndTrace.info[1] = tb_password.Text;
  78. if (query.ExecuteScalar().ToString().Equals("1"))
  79. {
  80. debugAndTrace.writeInFile("Попытка зарегистрировать существующий аккаунт", debugAndTrace.info);
  81. MessageBox.Show("Такой пользователь уже существует!\nПроверьте правильность введенных данных", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  82. }
  83. else
  84. {
  85. if (tb_login.Text != "" && tb_password.Text != "")
  86. {
  87. if (tb_password.TextLength <= 5)
  88. {
  89. debugAndTrace.writeInFile("Несоответствие пароля выдвинутым требованиям", debugAndTrace.info);
  90. MessageBox.Show("Пароль должен содержать минимум 6 символов", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  91. }
  92. else
  93. {
  94. query = new SqlCommand($"insert into registration (login, password) values (@login, @password)", db_helper.sqlConnection);
  95. query.Parameters.AddWithValue("login", tb_login.Text);
  96. query.Parameters.AddWithValue("password", tb_password.Text);
  97. if (query.ExecuteNonQuery().ToString().Equals("1"))
  98. {
  99. debugAndTrace.writeInFile("Успешная регистрация", debugAndTrace.info);
  100. MessageBox.Show("Добавление прошло успешно!", "Уведомление", MessageBoxButtons.OK, MessageBoxIcon.Information);
  101. tb_login.Text = tb_password.Text = "";
  102. }
  103. }
  104. }
  105. else
  106. {
  107. debugAndTrace.writeInFile("При регистрации заполнены не все поля");
  108. MessageBox.Show("Поля не заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  109. }
  110. }
  111. }
  112. catch
  113. {
  114. MessageBox.Show("Произошла непредвиденная ошибка!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
  115. }
  116. }
  117. }
  118. }