protected void Button_register_Click(object sender, EventArgs e) { //kontrola zda je vše vyplněné if (validator_email.IsValid == true && validator_heslo.IsValid == true && validator_jmeno.IsValid == true && validator_login.IsValid == true && validator_prijmeni.IsValid == true && CompareValidator_stejnaPW.IsValid == true) { //nacteni dat do promennych string login = TextBox_login.Text; string jmeno = TextBox_jmeno.Text; string prijmeni = TextBox_prijmeni.Text; string email = TextBox_email.Text; string pass1, pass2; //hashovani hesla HashPw hp = new HashPw(); pass1 = hp.HashString(TextBox_password1.Text); pass2 = hp.HashString(TextBox_password2.Text); //prirazeni id role podle nazvu string role = DB.GetRole(rbl_role.SelectedValue); //kontrola existence emailu nebo loginu v db int LoginExist, EmailExist; DB.checkExistReg(login, email, out LoginExist, out EmailExist); if (LoginExist > 0 || EmailExist > 0) { //jestli existuje vypíše se co je zabráné Label_output.Text = Label_output2.Text = ""; if (LoginExist > 0) { Label_output.Text += "Vybraný login je již zabrán "; Label_output.Visible = true; } if (EmailExist > 0) { Label_output2.Visible = true; Label_output2.Text += "Email je již zaregistrován"; } } else { try//zkouseni vlozeni do db { DB.InsertUser(jmeno, prijmeni, login, pass1, role, email); Label_output.Text = "Účet úspěšně vytvořen s rolí: " + rbl_role.SelectedItem.Text; Label_output.Visible = true; Label_output.ForeColor = System.Drawing.Color.CornflowerBlue; } catch (Exception ex)//kdyz neprobehne vyhodi se error { Label_output.Text = "Error: " + ex.Message; Label_output.Visible = true; } } } }
protected void Button_odeslat_heslo_Click(object sender, EventArgs e) { if (TextBox_heslo.Text != "" && TextBox_heslo2.Text != "" && TextBox_heslo.Text == TextBox_heslo2.Text) { try { HashPw hp = new HashPw(); string heslo = hp.HashString(TextBox_heslo.Text); DB.updateUserHeslo(heslo, id_user); Session["flashMsgType"] = "success"; Session["flashMsgText"] = "Heslo bylo úspěšně změněno."; } catch (Exception ex) { Session["flashMsgType"] = "danger"; Session["flashMsgText"] = "Chyba. Kontaktujte programátory. Text chyby:" + ex.Message; } } else { Session["flashMsgType"] = "danger"; Session["flashMsgText"] = "Hesla se neshodují nebo nebyla zadána."; } Response.Redirect(Request.RawUrl); }
protected void Button_login_Click(object sender, EventArgs e) { string login = TextBox_login.Text; HashPw hp = new HashPw(); string password = hp.HashString(TextBox_password.Text); cmd.CommandText = "SELECT * FROM [User] INNER JOIN [Role] ON [User].role = [Role].id_role WHERE login = @login AND password = @password"; cmd.Parameters.AddWithValue("@login", login); cmd.Parameters.AddWithValue("@password", password); cmd.Connection = conn; sda.SelectCommand = cmd; sda.Fill(ds, "User"); if (ds.Tables[0].Rows.Count > 0) { if (password == ds.Tables[0].Rows[0]["password"].ToString()) { //-- UKLADANI DO SESSION Session["id_user"] = ds.Tables[0].Rows[0]["id_user"].ToString(); Session["nazev_role"] = ds.Tables[0].Rows[0]["nazev"].ToString(); Session["id_role"] = ds.Tables[0].Rows[0]["role"].ToString(); Session.Timeout = 5; //-- UKLADANI DO SESSION Response.Redirect("/default"); } else { Label_output.Visible = true; Label_output.Text = "Špatné heslo!"; } } else { Label_output.Visible = true; Label_output.Text = "Uživatel nenalezen!"; } }
protected void Button_register_Click(object sender, EventArgs e) { //kontrola zda je vše vyplněné if (validator_email.IsValid == true && validator_heslo.IsValid == true && validator_jmeno.IsValid == true && validator_login.IsValid == true && validator_prijmeni.IsValid == true && CompareValidator_stejnaPW.IsValid == true && RegularExpressionValidator_email.IsValid == true) { //nacteni dat do promennych string login = TextBox_login.Text; string jmeno = TextBox_jmeno.Text; string prijmeni = TextBox_prijmeni.Text; string email = TextBox_email.Text; string pass1, pass2; //hashovani hesla HashPw hp = new HashPw(); pass1 = hp.HashString(TextBox_password1.Text); pass2 = hp.HashString(TextBox_password2.Text); //prirazeni id role podle nazvu string role = DB.GetRole(rbl_role.SelectedValue); //kontrola existence emailu nebo loginu v db int LoginExist, EmailExist; DB.checkExistReg(login, email, out LoginExist, out EmailExist); if (LoginExist > 0 || EmailExist > 0) { //jestli existuje vypíše se co je zabráné Label_output.Text = Label_output2.Text = ""; if (LoginExist > 0) { Label_output.Text += "Vybraný login je již zabrán "; Label_output.Visible = true; } if (EmailExist > 0) { Label_output2.Visible = true; Label_output2.Text += "Email je již zaregistrován"; } } else { try//zkouseni vlozeni do db { DB.InsertUser(jmeno, prijmeni, login, pass1, role, email); Label_output.Text = "Účet úspěšně vytvořen s rolí: " + rbl_role.SelectedItem.Text; Label_output.Visible = true; Label_output.ForeColor = System.Drawing.Color.CornflowerBlue; //email notifikace string message = "Vaše registrace na Logos Polytechikos Appola 13 proběhla úspěšně\n Vaš login je: " + login + "\n V případě nejasností odpovězte na tento email\n\n Tým Logos Polytechnikos\n www.lpApollo13.azurewebsites.net"; nf.sendEmail(TextBox_email.Text, "Registrace Logos Polytechnikos", message); //notifikace - stranky Session["flashMsgType"] = "success"; Session["flashMsgText"] = "Registrace proběhla úspěšně. Účet byl vytvořen"; //notifikace - admin //email notifikace admina DataTable users = DB.getAdmin(); message = "Byl zaregistrován uživatel s loginem: " + login + ".\n Zkontrolujte jeho roli."; foreach (DataRow user in users.Rows) { DB.insertNotification(int.Parse(user["id_user"].ToString()), message); nf.sendEmail(user["email"].ToString(), "Nový uživatel byl zaregistrován", message); } try { if (rbl_role.SelectedItem.Text == "Autor") { //DB.getUserByLogin(login); SqlCommand select = new SqlCommand("SELECT * FROM [User] INNER JOIN [Role] ON [User].role = [Role].id_role WHERE login = @login", DB.getConnection()); select.Parameters.AddWithValue("@login", login); sda.SelectCommand = select; sda.Fill(ds, "User"); if (ds.Tables[0].Rows.Count > 0) { //-- UKLADANI DO SESSION Session["id_user"] = ds.Tables[0].Rows[0]["id_user"].ToString(); Session["nazev_role"] = ds.Tables[0].Rows[0]["nazev"].ToString(); Session["id_role"] = ds.Tables[0].Rows[0]["role"].ToString(); Session.Timeout = 5; Response.Redirect("/default"); } } Response.Redirect("/default"); } catch (Exception) { } } catch (Exception ex)//kdyz neprobehne vyhodi se error { Label_output.Text = "Error: " + ex.Message; Label_output.Visible = true; } } } }