Ejemplo n.º 1
0
        public ActionResult Login(LoginModel model)
        {
            UtilitiesApplication.Encryption encryption = new UtilitiesApplication.Encryption();

            if (new UserAccountServ.UserAccountClient().GetAccountByUsername(model.username) != null)
            {
                Account account = new UserAccountServ.UserAccountClient().GetAccountByUsername(model.username);

                if (encryption.EncryptTripleDES(account.Password.ToString(), account.PIN.ToString()) != model.token)
                {
                    ModelState.AddModelError("", "Token is not valid.");
                }
                else
                {
                    FormsAuthentication.RedirectFromLoginPage(model.username, true);
                    Session["accountID"] = account.ID;

                    return RedirectToAction("Index", "Home");
                }
            }
            else
            {
                ModelState.AddModelError("", "Username does not exist.");
            }

            return RedirectToAction("Index", "Home");
        }
Ejemplo n.º 2
0
        public ActionResult CreateUser(RegistrationModel model)
        {
            if (model.Password.ToString().Length < 6)
            {
                ViewBag.Message = "Password length must be at least 6 characters.";
            }
            else if (new UserAccountServ.UserAccountClient().GetAccountByUsername(model.Username.ToString()) != null)
            {
                ModelState.AddModelError("", "Username taken.");
                ViewBag.Message = "Username already taken.";
            }
            else if (new UserAccountServ.UserAccountClient().GetUserByEmail(model.Email.ToString()) != null)
            {
                ModelState.AddModelError("", "Email taken.");
                ViewBag.Message = "Email already taken.";
            }
            else if (new UserAccountServ.UserAccountClient().GetAccountByPIN(model.PIN) != null)
            {
                ModelState.AddModelError("", "PIN taken.");
                ViewBag.Message = "PIN already taken.";
            }
            else
            {
                Account acc = new UserAccountServ.UserAccountClient().GetAccountByUsername(model.Username);
                int roleID = 0;
                List<int> add = new List<int>();

                for (int i = 0; i < model.roles.Count; i++)
                {
                    if (model.checkboxes[i].Checked)
                    {
                        roleID = model.roles[i].ID;
                        add.Add(roleID);
                    }
                }
                int[] arraylist = add.ToArray();

                User u = new User();
                u.Name = model.Name;
                u.Surname = model.Surname;
                u.Email = model.Email;
                u.Mobile = model.Mobile;
                u.ResidenceName = model.ResidenceName;
                u.StreetName = model.StreetName;

                Account a = new Account();
                a.Username = model.Username;
                a.Password = model.Password;
                a.PIN = model.PIN;

                new UserAccountServ.UserAccountClient().AddUser(u, arraylist, a);

                UtilitiesApplication.Encryption encrytion = new UtilitiesApplication.Encryption();
                ViewBag.Token = "Your token is  " + encrytion.EncryptTripleDES(model.Password.ToString(), model.PIN.ToString()) + "  Please use this to log in.";

            }

            return View(model);
        }
Ejemplo n.º 3
0
        public ActionResult Login(LoginModel model)
        {
            UtilitiesApplication.Encryption encryption = new UtilitiesApplication.Encryption();
            try
            {
                if (new UserAccountServ.UserAccountClient().GetAccountByUsername(model.username) != null)
                {
                    Account account = new UserAccountServ.UserAccountClient().GetAccountByUsername(model.username);

                    string decryptedToken = encryption.DecryptTripleDES(model.token, account.PIN.ToString()) + model.pin;
                    string passtoken = account.Password + account.PIN.ToString();

                    if (!decryptedToken.Equals(passtoken))
                    {
                        ModelState.AddModelError("", "Token is not valid.");
                        return View();
                    }
                    else
                    {
                        //SUCCESSFUL LOGIN

                        FormsAuthentication.RedirectFromLoginPage(model.username, true);
                        Session["accountID"] = account.ID;

                        return RedirectToAction("Index", "Home");
                    }
                }
                else
                {
                    ModelState.AddModelError("", "Username does not exist.");
                    return View();
                }
            }
            catch (Exception e)
            {
                ViewBag.Message("Invalid data.");
                return View();
            }
        }
Ejemplo n.º 4
0
        public ActionResult CreateUser(RegistrationModel model)
        {
            if(string.IsNullOrEmpty(model.user.Name.ToString()))
            {
                ModelState.AddModelError("", "Please enter your name.");
            }
            else if (string.IsNullOrEmpty(model.user.Surname.ToString()))
            {
                ModelState.AddModelError("", "Please enter your surname.");
            }
            else if (string.IsNullOrEmpty(model.user.Email.ToString()))
            {
                ModelState.AddModelError("", "Please enter your email.");
            }
            else if (string.IsNullOrEmpty(model.user.Mobile.ToString()))
            {
                ModelState.AddModelError("", "Please enter your mobile.");
            }
            else if (string.IsNullOrEmpty(model.user.ResidenceName.ToString()))
            {
                ModelState.AddModelError("", "Please enter your residence name.");
            }
            else if (string.IsNullOrEmpty(model.user.StreetName.ToString()))
            {
                ModelState.AddModelError("", "Please enter your street name.");
            }
            else if (string.IsNullOrEmpty(model.account.Username.ToString()))
            {
                ModelState.AddModelError("", "Please enter a username.");
            }
            else if (string.IsNullOrEmpty(model.account.Password.ToString()))
            {
                ModelState.AddModelError("", "Please enter a password.");
            }
            else if (string.IsNullOrEmpty(model.account.PIN.ToString()))
            {
                ModelState.AddModelError("", "Please enter a PIN number.");
            }
            else if (model.account.Password.ToString().Length < 6)
            {
                ModelState.AddModelError("", "Password length must be at least 6 characters.");
            }
            else if (model.account.PIN.ToString().Length < 4 || model.account.PIN.ToString().Length > 4)
            {
                ModelState.AddModelError("", "PIN must be 4 digits long.");
            }
            else if (new UserAccountServ.UserAccountClient().GetAccountByUsername(model.account.Username.ToString()) != null)
            {
                ModelState.AddModelError("", "Username taken.");
                ViewBag.Message = "Username already taken.";
            }
            else if (new UserAccountServ.UserAccountClient().GetUserByEmail(model.user.Email.ToString()) != null)
            {
                ModelState.AddModelError("", "Email taken.");
                ViewBag.Message = "Email already taken.";
            }
            else if (ModelState.IsValid)
            {
                Account acc = new UserAccountServ.UserAccountClient().GetAccountByUsername(model.account.Username);
                int roleID = 0;
                List<int> add = new List<int>();

                for (int i = 0; i < model.roles.Count; i++)
                {
                    if (model.checkboxes[i].Checked)
                    {
                        roleID = model.roles[i].ID;
                        add.Add(roleID);
                    }
                }
                int[] arraylist = add.ToArray();

                new UserAccountServ.UserAccountClient().AddUser(model.user, arraylist, model.account);

                UtilitiesApplication.Encryption encrytion = new UtilitiesApplication.Encryption();
                ViewBag.Token = "Your token is  " + encrytion.EncryptTripleDES(model.account.Password.ToString(), model.account.PIN.ToString()) + "  Please use this to log in.";
               // return RedirectToAction("CreateUser");

            }

            return View(model);
        }