using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components; using System.Diagnostics; using System.Globalization; using Microsoft.AspNetCore.Components.Server; using Microsoft.JSInterop; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using System.Net.Http; using Microsoft.Data.SqlClient; using Todo.Data; using System.Data; using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage; using System.Text.Json; namespace Todo.Pages.Admin { public class LogUser { public string? KId { get; set; } public string? KAd { get; set; } public string? KSoy { get; set; } public string? KullaniciAdi { get; set; } public string? KPassword { get; set; } public string? KRole { get; set; } } public class AdminBase : ComponentBase { static string connectionString = ("Server=.;Database=TodoDb;Encrypt=False;Integrated Security=SSPI;"); static SqlConnection conn = new SqlConnection(connectionString); static string sql = "select KId,KAd,KSoy,KullaniciAdi,KPassword,KRole from Kullanici"; static SqlDataAdapter daps = new SqlDataAdapter(sql, conn); SqlCommandBuilder cb = new SqlCommandBuilder(daps); DataSet dsps = new DataSet(); public List kullanici = new List(); public string? error { get; set; } public string? inputId { get; set; } public string? inputSoyad { get; set; } public string? inputRole { get; set; } public string? inputAd { get; set; } public string? inputKullaniciadi { get; set; } public string? inputPassword { get; set; } private string? kontrol = ""; [Inject] public ProtectedLocalStorage? localstr { get; set; } public string? Kontrol { get { WhoLogin(); return kontrol; } set { kontrol = value; } } public string? mystr { get; set; } [Inject] protected NavigationManager? Navigation { get; set; } private async void WhoLogin() { var result = await localstr.GetAsync("myUser"); mystr = result.Success ? result.Value : ""; UserModel user = new UserModel(); user = JsonSerializer.Deserialize(mystr); if (user.Role == "Admin") Navigation.NavigateTo("/Admin"); else Navigation.NavigateTo("/mod"); } public async Task InsertUser() { dsps.Tables[0].Rows.Add(null, inputAd, inputSoyad, inputKullaniciadi, inputPassword, inputRole); daps.Update(dsps, "kullanici"); dsps.Tables["kullanici"].Clear(); //cb.Dispose(); inputAd = ""; inputSoyad = ""; inputKullaniciadi = ""; inputPassword = ""; inputRole = ""; await OnInitializedAsync(); } public async Task GetUser() { for (int i = 0; i < dsps.Tables[0].Rows.Count; i++) { if (dsps.Tables[0].Rows[i]["KId"].ToString() == inputId) { inputAd = dsps.Tables[0].Rows[i]["KAd"].ToString(); inputSoyad = dsps.Tables[0].Rows[i]["KSoy"].ToString(); inputKullaniciadi = dsps.Tables[0].Rows[i]["KullaniciAdi"].ToString(); inputPassword = dsps.Tables[0].Rows[i]["KPassword"].ToString(); inputRole = dsps.Tables[0].Rows[i]["KRole"].ToString(); } } dsps.Tables[0].Clear(); await OnInitializedAsync(); } public async Task UpdateUser() { DataRowCollection itemColumns = dsps.Tables[0].Rows; for (int i = 0; i < dsps.Tables[0].Rows.Count; i++) { if (dsps.Tables[0].Rows[i]["KId"].ToString() == inputId) { dsps.Tables[0].Rows[i]["KAd"] = inputAd; dsps.Tables[0].Rows[i]["KSoy"] = inputSoyad; dsps.Tables[0].Rows[i]["KullaniciAdi"] = inputKullaniciadi; dsps.Tables[0].Rows[i]["KPassword"] = inputPassword; dsps.Tables[0].Rows[i]["KRole"] = inputRole; } } daps.Update(dsps, "kullanici"); // cb.Dispose(); dsps.Tables[0].Clear(); inputId = ""; inputAd = ""; inputSoyad = ""; inputKullaniciadi = ""; inputPassword = ""; inputRole = ""; await OnInitializedAsync(); } public async Task DeleteUser() { foreach (DataRow row in dsps.Tables[0].Rows) { if (row["KId"].ToString() == inputId) row.Delete(); } daps.Update(dsps, "kullanici"); // cb.Dispose(); dsps.Tables["kullanici"].Clear(); inputId = ""; inputAd = ""; inputSoyad = ""; inputKullaniciadi = ""; inputPassword = ""; inputRole = ""; await OnInitializedAsync(); } protected override async Task OnInitializedAsync() { kullanici.Clear(); await selectproc(); } public Task selectproc() { return Task.Run(() => { try { daps.Fill(dsps, "kullanici"); error += dsps.Tables[0].Rows.Count.ToString(); for (int i = 0; i < dsps.Tables[0].Rows.Count; i++) { LogUser xm = new LogUser(); xm.KId = dsps.Tables[0].Rows[i]["KId"].ToString(); xm.KAd = dsps.Tables[0].Rows[i]["KAd"].ToString(); xm.KSoy = dsps.Tables[0].Rows[i]["KSoy"].ToString(); xm.KullaniciAdi = dsps.Tables[0].Rows[i]["KullaniciAdi"].ToString(); xm.KPassword = dsps.Tables[0].Rows[i]["KPassword"].ToString(); xm.KRole = dsps.Tables[0].Rows[i]["KRole"].ToString(); kullanici.Add(xm); } } catch (Exception ex) { error = ex.ToString(); } }); } } }