public ActionResult Create(SiteUser SiteUser) { ModelState.Remove("CreatedOn"); ModelState.Remove("ModifiedOn"); ModelState.Remove("ModifiedUsername"); if (ModelState.IsValid) { BusinessLayerResult <SiteUser> res = SiteUserManager.Insert(SiteUser); if (res.Errors.Count > 0) { res.Errors.ForEach(x => ModelState.AddModelError("", x.Message)); return(View(SiteUser)); } return(RedirectToAction("Index")); } return(View(SiteUser)); }
public ActionResult DeleteProfile() { BusinessLayerResult <SiteUser> res = siteUserManager.RemoveUserById(CurrentSession.User.Id); if (res.Errors.Count > 0) { ErrorViewModel errorNotifyObj = new ErrorViewModel() { Items = res.Errors, Title = "Profil Silinemedi.", RedirectingUrl = "/Home/ShowProfile" }; return(View("Error", errorNotifyObj)); } Session.Clear(); return(RedirectToAction("Index")); }
public ActionResult EditProfile(SiteUser model, HttpPostedFileBase ProfileImage) { ModelState.Remove("ModifiedUsername"); if (ModelState.IsValid) { if (ProfileImage != null && (ProfileImage.ContentType == "image/jpeg" || ProfileImage.ContentType == "image/jpg" || ProfileImage.ContentType == "image/png")) { string filename = $"user_{model.Id}.{ProfileImage.ContentType.Split('/')[1]}"; ProfileImage.SaveAs(Server.MapPath($"~/images/{filename}")); model.ProfileImageFilename = filename; } BusinessLayerResult <SiteUser> res = siteUserManager.UpdateProfile(model); if (res.Errors.Count > 0) { ErrorViewModel errorNotifyObj = new ErrorViewModel() { Items = res.Errors, Title = "Profil Güncellenemedi.", RedirectingUrl = "/Home/EditProfile" }; return(View("Error", errorNotifyObj)); } // Profil güncellendiği için session güncellendi. CurrentSession.Set <SiteUser>("login", res.Result); return(RedirectToAction("ShowProfile")); } return(View(model)); }
public ActionResult Register(RegisterViewModel model) { if (ModelState.IsValid) { BusinessLayerResult <SiteUser> res = siteUserManager.RegisterUser(model); if (res.Errors.Count > 0) { res.Errors.ForEach(x => ModelState.AddModelError("", x.Message)); return(View(model)); } //SiteUser user = null; //try //{ // user = eum.RegisterUser(model); //} //catch (Exception ex) //{ // ModelState.AddModelError("", ex.Message); //} //if (model.Username == "aaa") //{ // ModelState.AddModelError("", "Kullanıcı adı kullanılıyor."); //} //if(model.EMail == "*****@*****.**") //{ // ModelState.AddModelError("", "E-posta adresi kullanılıyor."); //} //foreach (var item in ModelState) //{ // if(item.Value.Errors.Count > 0) // { // return View(model); // } //} //if (user == null) //{ // return View(model); //} OkViewModel notifyObj = new OkViewModel() { Title = "Kayıt Başarılı", RedirectingUrl = "/Home/Login", }; notifyObj.Items.Add("Lütfen e-posta adresinize gönderdiğimiz aktivasyon link'ine tıklayarak hesabınızı aktive ediniz. Hesabınızı aktive etmeden not ekleyemez ve beğenme yapamazsınız."); return(View("Ok", notifyObj)); } return(View(model)); }