Example #1
0
        public ActionResult Update(int id, string[] secRoles, string newPassword, FormCollection form)
        {
            DBDataContext db = Utils.DB.GetContext();
            Account acc = db.Accounts.SingleOrDefault(x => x.ID == id);
            if (acc != null)
            {
                TryUpdateModel(acc);
                db.Roles.DeleteAllOnSubmit(acc.Roles);

                if (secRoles != null)
                {
                    foreach (string s in secRoles)
                    {
                        try
                        {
                            Role r = new Role()
                            {
                                SecurityRole = (SecurityRole)Enum.Parse(typeof(SecurityRole), s)
                            };
                            acc.Roles.Add(r);
                        }
                        catch { }
                    }
                }

                if (ModelState.IsValid)
                {
                    if (!string.IsNullOrEmpty(newPassword))
                    {
                        if (WebIT.Lib.Utils.Validate.PasswordFormat(newPassword))
                        {
                            acc.Password = Security.Password.GenerateHash(acc.Email, newPassword);
                        }
                        else
                        {
                            ModelState.AddModelError("acc.Password", "Password format is not valid. Expecting 6+ characters(1 upper & 1 lower alpha, 1 numeric)");
                        }
                    }
                    if (ModelState.IsValid)
                    {
                        if (db.Accounts.Count(x => x.Email.Equals(acc.Email) && x.ID != id) > 0)
                        {
                            ModelState.AddModelError("acc.Email", "Email address is already in use. Please choose another one.");
                        }
                        else
                        {
                            try
                            {
                                db.SubmitChanges();

                                return RedirectToAction("Index", "Account");
                            }
                            catch
                            {
                                ModelState.AddModelError("", "An unknown error occurred. Please try again in a few minutes.");
                            }
                        }
                    }
                }

                ViewData["Title"] = "Edit Account";
                ViewData["Action"] = "Update";
                return View("Manage", acc);
            }

            return RedirectToAction("Index", "Account");
        }
Example #2
0
        public ActionResult Add(Account acc, string[] secRoles, string newPassword)
        {
            if (secRoles != null)
            {
                foreach (string s in secRoles)
                {
                    Role r = new Role()
                    {
                        SecurityRole = (SecurityRole)Enum.Parse(typeof(SecurityRole), s)
                    };
                    acc.Roles.Add(r);
                }
            }

            if (ModelState.IsValid)
            {
                if (!string.IsNullOrEmpty(newPassword))
                {
                    if (WebIT.Lib.Utils.Validate.PasswordFormat(newPassword))
                    {
                        acc.Password = Security.Password.GenerateHash(acc.Email, newPassword);
                    }
                    else
                    {
                        ModelState.AddModelError("acc.Password", "Password format is not valid. Expecting 6+ characters(1 upper & 1 lower alpha, 1 numeric)");
                    }
                    if (ModelState.IsValid)
                    {

                        DBDataContext db = Utils.DB.GetContext();

                        if (db.Accounts.Count(x => x.Email.Equals(acc.Email)) > 0)
                        {
                            ModelState.AddModelError("acc.Email", "Email address is already in use. Please choose another one.");
                        }
                        else
                        {
                            db.Accounts.InsertOnSubmit(acc);

                            try
                            {
                                acc.Registered = DateTime.Now;
                                acc.StatusID = db.Status.Single(x => x.Value.Equals("Active")).ID;

                                db.SubmitChanges();

                                return RedirectToAction("Index", "Account");
                            }
                            catch(Exception ex)
                            {
                                ModelState.AddModelError("", "An unknown error occurred. Please try again in few minutes.");
                                ErrorHandler.Report.Exception(ex, "Account/Add");
                            }
                        }
                    }
                }
                else
                {
                    ModelState.AddModelError("Password", "Password is required");
                }
            }

            ViewData["Title"] = "Add Account";
            ViewData["Action"] = "Add";

            return View("Manage", acc);
        }
Example #3
0
		private void detach_Roles(Role entity)
		{
			this.SendPropertyChanging();
			entity.Account = null;
		}
Example #4
0
		private void attach_Roles(Role entity)
		{
			this.SendPropertyChanging();
			entity.Account = this;
		}
Example #5
0
 partial void DeleteRole(Role instance);
Example #6
0
 partial void UpdateRole(Role instance);
Example #7
0
 partial void InsertRole(Role instance);