Beispiel #1
0
        public string CheckUser(User userchk, HttpContextBase httpContext)
        {
            var result   = string.Empty;
            var email    = userchk.Email;
            var password = Md5Encryption.Encrypt(userchk.Password);
            var usertype = userchk.UserType;

            var user = _userRepository.Query(u => u.Email == email && u.Password == password && u.UserType == usertype).Select().FirstOrDefault();

            if (user == null)
            {
                result = "invalid";
            }
            else
            {
                if (user.UserType == "Customer" && !user.IsConfirmed)
                {
                    result = "notconfirmed";
                }
                else
                {
                    _formsAuthenticationFactory.SetAuthCookie(httpContext, UserAuthenticationTicketBuilder.CreateAuthenticationTicket(user));
                    result = "valid";
                }
            }
            return(result);
        }
Beispiel #2
0
        public bool ProfileUpdate(User user, string action, int vid)
        {
            bool isSuccess = true;

            try
            {
                user.Password = Md5Encryption.Encrypt(user.Password);



                if (action == "I")
                {
                    Insert(user);
                }
                else if (action == "U")
                {
                    Update(user);
                }
                else if (action == "D")
                {
                    Delete(user);
                }
                _unitOfWork.SaveChanges();
            }
            catch (Exception ex)
            {
                isSuccess = false;
                throw ex;
            }
            return(isSuccess);
        }
        public ActionResult Add(UserEdit userEdit)
        {
            if (ModelState.IsValid)
            {
                UserInfo user = Mapper.Map <UserInfo>(userEdit);
                user.Password = Md5Encryption.Encrypt(Md5Encryption.Encrypt(user.Password, Md5EncryptionType.Strong));
                user          = UserInfoServices.AddEntity(user);

                //LoggerHelper.Operate(new OperateLog
                //{
                //    CreateUser_Id = UserInfo.ID,
                //    OperateType = (int)OperateType.Add,
                //    Remark = $"{UserInfo.Name}添加了一个用户{userEdit.Name}"
                //});
                return(Json(new Result <int>
                {
                    State = 1,
                    Message = "添加成功",
                    Data = user.ID
                }));
            }
            else
            {
                IEnumerable <object> errors = ModelStateToJson();
                return(Json(new Result <object>
                {
                    State = 0,
                    Message = "错误",
                    Data = errors
                }));
            }
        }
        public async Task <IActionResult> Login(UserLogin login)
        {
            if (!ModelState.IsValid)
            {   //数据验证失败
                login.UserName = null;
                login.Password = null;
                return(View());
            }
            if (!string.Equals(HttpContext.Session.Get <string>("verCode")
                               , login.VerifyCode, StringComparison.InvariantCultureIgnoreCase))
            {
                ModelState.AddModelError("VerifyCode", "验证码错误");
                return(View());
            }

            login.Password = Md5Encryption.Encrypt(Md5Encryption.Encrypt(login.Password, Md5EncryptionType.Strong));
            UserInfo userInfo = UserInfoServices
                                .LoadFirst(entity => entity.UserName == login.UserName &&
                                           entity.Password == login.Password);

            if (userInfo == null)
            {
                ModelState.AddModelError("Password", "用户名与密码不匹配");
                return(View());
            }
            if (userInfo.IsCanUse == false)
            {
                ModelState.AddModelError("", "当前用户不可用");
                return(View());
            }
            SetUser(userInfo, login.RememberMe);
            return(RedirectToAction("Index", "Home"));
        }
Beispiel #5
0
        public IActionResult Login([FromBody] JObject jobj)
        {
            //if (!string.Equals(HttpContext.Session.Get<string>("verCode")
            //    , login.VerifyCode, StringComparison.InvariantCultureIgnoreCase))
            //{
            //    return BadRequest(new Result
            //    {
            //         State = 0,
            //         Message = "验证码错误"
            //    });
            //}
            //string s = jobj["fsfsf"].ToString();
            string username = jobj["username"]?.ToString(),
                   password = jobj["password"]?.ToString();

            if (IsValidUserAndPasswordCombination(username, password))
            {
                return(BadRequest(new Result
                {
                    State = 0,
                    Message = "用户名或密码不能为空"
                }));
            }

            password = Md5Encryption.Encrypt(Md5Encryption.Encrypt(password, Md5EncryptionType.Strong));
            UserInfo userInfo = UserInfoServices
                                .LoadFirst(entity => entity.UserName == username &&
                                           entity.Password == password);

            if (userInfo == null)
            {
                return(BadRequest(new Result
                {
                    State = 0,
                    Message = "用户名或密码不正确"
                }));
            }
            if (userInfo.IsCanUse == false)
            {
                return(BadRequest(new Result
                {
                    State = 0,
                    Message = "当前用户不可用"
                }));
            }

            string token = GenerateToken(username);

            Cache.SetString(token, userInfo.UserName);
            return(Ok(new Result <string>
            {
                State = 1,
                Message = "登陆成功",
                Data = token
            }));
        }
Beispiel #6
0
        public KeyValuePair <bool, string> ValidatePassword(User userchk, string oldPassword, string newPassword)
        {
            if (oldPassword == newPassword)
            {
                return(new KeyValuePair <bool, string>(false, "Existing password and the new password are same, please change the password."));
            }

            if (userchk.Password != Md5Encryption.Encrypt(oldPassword))
            {
                return(new KeyValuePair <bool, string>(false, "Entered old password is not valid."));
            }
            return(new KeyValuePair <bool, string>(true, "valid"));
        }
Beispiel #7
0
        public ActionResult Create(UserViewModel userViewModel)
        {
            userViewModel.genderList = _userBusiness.GetGenderList();
            if (ModelState.IsValid)
            {
                Mapper.CreateMap <UserViewModel, User>();
                User user   = Mapper.Map <UserViewModel, User>(userViewModel);
                var  result = _userBusiness.ValidateUser(user, "I");
                if (!string.IsNullOrEmpty(result))
                {
                    TempData["Success"]   = result;
                    TempData["isSuccess"] = "false";
                    return(View(userViewModel));
                }

                //saving profile image
                user.TokenKey = GlobalMethods.GetToken();
                user.UserType = "Admin";
                user.Password = Md5Encryption.Encrypt(userViewModel.Password);
                FileOperations.CreateDirectory(Server.MapPath("~/ProfileImage"));
                if (userViewModel.ProfileImageUpload != null)
                {
                    string ext      = Path.GetExtension(userViewModel.ProfileImageUpload.FileName).ToLower();
                    string filename = user.TokenKey + ext;

                    string filePath = Server.MapPath("~/ProfileImage/") + filename;
                    userViewModel.ProfileImageUpload.SaveAs(filePath);
                    user.ProfileImage = filename;
                }
                user.IsBlocked = false;
                bool isSuccess = _userBusiness.AddUpdateDeleteUser(user, "I");
                if (isSuccess)
                {
                    TempData["Success"]   = "User Created Successfully!!";
                    TempData["isSuccess"] = "true";
                    return(RedirectToAction("Index"));
                }
                else
                {
                    TempData["Success"]   = "Failed to create User!!";
                    TempData["isSuccess"] = "false";
                }
            }
            else
            {
                TempData["Success"]   = ModelState.Values.SelectMany(m => m.Errors).FirstOrDefault().ErrorMessage;
                TempData["isSuccess"] = "false";
            }

            return(View(userViewModel));
        }
Beispiel #8
0
        public ActionResult Add(UserEdit userEdit)
        {
            UserInfo user = Mapper.Map <UserInfo>(userEdit);

            user.Password = Md5Encryption.Encrypt(Md5Encryption.Encrypt(user.Password, Md5EncryptionType.Strong));
            user          = UserInfoServices.AddEntity(user);

            //LoggerHelper.Operate(new OperateLog
            //{
            //    CreateUser_Id = UserInfo.ID,
            //    OperateType = (int)OperateType.Add,
            //    Remark = $"{UserInfo.Name}添加了一个用户{userEdit.Name}"
            //});
            return(Ok(new Result <int>
            {
                State = 1,
                Message = "添加成功",
                Data = user.ID
            }));
        }
Beispiel #9
0
        public ActionResult ChangePassword(ChangePasswordViewModel changePassword)
        {
            string JsonStr   = "";
            bool   isSuccess = true;
            string message   = "Password changed successfully!!";

            if (ModelState.IsValid)
            {
                try
                {
                    var user          = _userBusiness.GetListWT(c => c.TokenKey == changePassword.TokenKey).FirstOrDefault();
                    var validpassword = _userBusiness.ValidatePassword(user, changePassword.OldPassword, changePassword.Password);
                    if (validpassword.Key)
                    {
                        user.Password = Md5Encryption.Encrypt(changePassword.Password);
                        _userBusiness.Update(user);
                        _unitOfWork.SaveChanges();
                    }
                    else
                    {
                        isSuccess = false;
                        message   = validpassword.Value;
                    }
                }
                catch (Exception ex)
                {
                    message   = "Failed to change password!!";
                    isSuccess = false;
                    _unitOfWork.Dispose();
                }
            }

            TempData["Success"]   = message;
            TempData["isSuccess"] = isSuccess.ToString();

            JsonStr = "{\"message\":\"" + message + "\",\"isSuccess\":\"" + isSuccess + "\"}";
            return(Json(JsonStr, JsonRequestBehavior.AllowGet));
        }
Beispiel #10
0
        /// <summary>
        /// 登录
        /// </summary>
        /// <param name="loginInfo">登录条件</param>
        /// <returns>是否成功</returns>
        public ResponseBase <CurrentUserDto> Login(LoginDto model)
        {
            var rp = new ResponseBase <CurrentUserDto>();

            rp.IsLogin = false;
            if (null != model)
            {
                var userName  = model.UserName;
                var loginUser = SystemRepo.GetUserByName(userName);
                if (null == loginUser)
                {
                    rp.IsSuccess     = false;
                    rp.OperationDesc = "用户不存在";
                }
                else if (loginUser.UserStatus == StatusCode.锁定)
                {
                    rp.IsSuccess     = false;
                    rp.OperationDesc = "该用户已被锁定";
                }
                else if (loginUser.RoleIDs == null || loginUser.RoleIDs.Count() <= 0)
                {
                    rp.IsSuccess     = false;
                    rp.OperationDesc = "该用户无角色";
                }
                else
                {
                    var password = Md5Encryption.Encrypt(model.UserPassword);
                    if (password == loginUser.UserPassword)
                    {
                        CurrentUserDto currentUser = new CurrentUserDto();
                        currentUser.UserID   = loginUser.SysUserId;
                        currentUser.UserName = loginUser.UserName;
                        //currentUser.Actions = loginUser.Actions;
                        currentUser.RealName  = loginUser.RealName;
                        currentUser.RoleIDs   = loginUser.RoleIDs;
                        currentUser.RoleNames = loginUser.RoleNames;
                        currentUser.MenuIds   = loginUser.MenuIds;
                        rp.Result             = currentUser;
                        rp.IsLogin            = true;
                        rp.IsSuccess          = true;
                        rp.OperationDesc      = "登录成功";
                        WriteLogInfo("用户:" + model.UserName + ", 登录系统");
                        var dto = new SysOperationLogDto
                        {
                            UserName          = loginUser.UserName,
                            OperationTypeCode = OperationTypeCode.操作,
                            OperationUrl      = "/Account/Login",
                            OperationContent  = "登录成功",
                        };
                        CreateSysOperationLog(dto);
                    }
                    else
                    {
                        rp.IsSuccess     = false;
                        rp.OperationDesc = "登录失败,密码错误";
                    }
                }
            }
            else
            {
                rp.IsSuccess     = false;
                rp.OperationDesc = "登录失败,提交数据为空";
            }
            return(rp);
        }
Beispiel #11
0
        public ActionResult Index()
        {
            bool IsUsedLocalLoginPage = bool.Parse(System.Configuration.ConfigurationManager.AppSettings["UserLocalLoginPage"]);


            if (!IsUsedLocalLoginPage)
            {
                #region IntergartionCode
                if (Request.QueryString["uid"] == null)
                {
                    string LoginUrl = System.Configuration.ConfigurationManager.AppSettings["LoginPageUrl"];
                    return(Redirect(LoginUrl));
                }
                else
                {
                    string Fname = Request.QueryString["first"];
                    string Lname = Request.QueryString["last"];
                    string Email = Request.QueryString["email"];

                    db = new EcommerceContext();
                    this._unitOfWork = new UnitOfWork(_df);

                    UsersList = new UserBusiness(_df, _unitOfWork);

                    User CurrentUserInfo = new User()
                    {
                        FirstName = Fname, LastName = Lname, Email = Email
                    };


                    var IsUserExist = UsersList.GetUserByemail(CurrentUserInfo.Email);

                    if (IsUserExist == null)
                    {
                        User newUser = new User();
                        newUser.TokenKey = GlobalMethods.GetToken();

                        newUser.FirstName   = CurrentUserInfo.FirstName;
                        newUser.LastName    = CurrentUserInfo.LastName;
                        newUser.Email       = CurrentUserInfo.Email;
                        newUser.Password    = Md5Encryption.Encrypt(System.Configuration.ConfigurationManager.AppSettings["UserPassword"]);
                        newUser.UserType    = "Customer";
                        newUser.IsBlocked   = false;
                        newUser.IsConfirmed = true;

                        UsersList.Insert(newUser);
                        _unitOfWork.SaveChanges();

                        Session["CurrentUserInfo"] = newUser;
                    }
                    else
                    {
                        Session["CurrentUserInfo"] = IsUserExist;
                    }
                }

                #endregion
            }
            else
            {
            }

            return(View());
        }