public override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext actionContext) { base.OnAuthorization(actionContext); if (actionContext.Request.Headers.Authorization == null) { actionContext.Response = actionContext.Request.CreateResponse(HttpStatusCode.Unauthorized); } else { string encodedString = actionContext.Request.Headers.Authorization.Parameter; string decodedString = Encoding.UTF8.GetString(Convert.FromBase64String(encodedString)); string[] arr = decodedString.Split(new char[] { ':' }); string username = arr[0]; string password = arr[1]; CashierRepository urepo = new CashierRepository(); if (username == urepo.Get(username).Cashier_Name&& password == urepo.Get(username).Cashier_password) { Thread.CurrentPrincipal = new GenericPrincipal(new GenericIdentity(username), null); } else { actionContext.Response = actionContext.Request.CreateResponse(HttpStatusCode.Unauthorized); } } }
public ActionResult ConfirmChangePassword(string oldpass, string Pass, string cpass) { CashierRepository orepo = new CashierRepository(); LoginRepository lrepo = new LoginRepository(); Cashier of = orepo.Get(Convert.ToInt32(Session["Id"])); Logininfo log = lrepo.Get(Session["Name"].ToString()); if (Session["Password"].ToString() == oldpass) { if (Pass != cpass) { ViewData["Message"] = "Password Didn't match"; } else { of.Cashier_password = Pass; log.Login_Password = Pass; orepo.Update(of); lrepo.Update(log); ViewData["Message"] = "Password Updated Successfully"; Session["Officer"] = of; Session["Password"] = Pass; } } else { ViewData["Message"] = "Wrong Password"; } return(View("Empty")); }
public ActionResult ConfirmCashier_Salary(int Cashier_Id) { CashierRepository brepo = new CashierRepository(); Cashier br = brepo.Get(Cashier_Id); DateTime d = DateTime.Now; if (d >= Convert.ToDateTime(br.Cashier_LastPaymentDate).AddDays(30)) { br.Cashier_LastPaymentDate = d.ToString(); br.Cashier_TotalPayment += br.Cashier_Salary; br.Cashier_Balance += br.Cashier_Salary; brepo.Update(br); ViewData["Message"] = "Salary Payment Successfull"; } else { ViewData["Message"] = "To Early to Pay Salary"; } return(View("Empty")); }