Exemplo n.º 1
0
 /// <summary>
 /// 写入登录信息
 /// </summary>
 /// <param name="user">成员信息</param>
 public virtual void AddCurrent(IManageUser user)
 {
     try
     {
         if (LoginProvider == "Cookie")
         {
             CookieHelper.WriteCookie(LoginUserKey, DESEncrypt.Encrypt(JsonConvert.SerializeObject(user)), 1440);
         }
         else
         {
             SessionHelper.Add(LoginUserKey, DESEncrypt.Encrypt(JsonConvert.SerializeObject(user)));
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 当前用户
 /// </summary>
 /// <returns></returns>
 public virtual IManageUser Current()
 {
     try
     {
         IManageUser user = new IManageUser();
         if (LoginProvider == "Cookie")
         {
             user = JsonConvert.DeserializeObject<IManageUser>(DESEncrypt.Decrypt(CookieHelper.GetCookie(LoginUserKey)));
         }
         else
         {
             user = JsonConvert.DeserializeObject<IManageUser>(DESEncrypt.Decrypt(SessionHelper.Get(LoginUserKey).ToString()));
         }
         if (user == null)
         {
             throw new Exception("登录信息超时,请重新登录。");
         }
         return user;
     }
     catch
     {
         throw new Exception("登录信息超时,请重新登录。");
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// 登录验证
 /// </summary>
 /// <param name="Account">账户</param>
 /// <param name="Password">密码</param>
 /// <returns></returns>
 public ActionResult CheckLogin(string Account, string Password, string Token)
 {
     string Msg = "";
     try
     {
         IPScanerHelper objScan = new IPScanerHelper();
         string IPAddress = NetHelper.GetIPAddress();
         objScan.IP = IPAddress;
         objScan.DataPath = Server.MapPath("~/Resource/IPScaner/QQWry.Dat");
         string IPAddressName = objScan.IPLocation();
         string outmsg = "";
         //IP限制
         //VerifyIPAddress(Account, IPAddress, IPAddressName, Token);
         //系统管理
         if (Account == ConfigHelper.AppSettings("CurrentUserName"))
         {
             if (ConfigHelper.AppSettings("CurrentPassword") == Password)
             {
                 IManageUser imanageuser = new IManageUser();
                 imanageuser.UserId = "System";
                 imanageuser.Account = "System";
                 imanageuser.UserName = "******";
                 imanageuser.Gender = "男";
                 imanageuser.Code = "System";
                 imanageuser.LogTime = DateTime.Now;
                 imanageuser.CompanyId = "系统";
                 imanageuser.DepartmentId = "系统";
                 imanageuser.IPAddress = IPAddress;
                 imanageuser.IPAddressName = IPAddressName;
                 imanageuser.IsSystem = true;
                 ManageProvider.Provider.AddCurrent(imanageuser);
                 //对在线人数全局变量进行加1处理
                 HttpContext rq = System.Web.HttpContext.Current;
                 rq.Application["OnLineCount"] = (int)rq.Application["OnLineCount"] + 1;
                 Msg = "3";//验证成功
                 Base_SysLogBll.Instance.WriteLog(Account, OperationType.Login, "1", "登陆成功、IP所在城市:" + IPAddressName);
             }
             else
             {
                 return Content("4");
             }
         }
         else
         {
             Base_User base_user = base_userbll.UserLogin(Account, Password, out outmsg);
             switch (outmsg)
             {
                 case "-1":      //账户不存在
                     Msg = "-1";
                     Base_SysLogBll.Instance.WriteLog(Account, OperationType.Login, "-1", "账户不存在、IP所在城市:" + IPAddressName);
                     break;
                 case "lock":    //账户锁定
                     Msg = "2";
                     Base_SysLogBll.Instance.WriteLog(Account, OperationType.Login, "-1", "账户锁定、IP所在城市:" + IPAddressName);
                     break;
                 case "error":   //密码错误
                     Msg = "4";
                     Base_SysLogBll.Instance.WriteLog(Account, OperationType.Login, "-1", "密码错误、IP所在城市:" + IPAddressName);
                     break;
                 case "succeed": //验证成功
                     IManageUser imanageuser = new IManageUser();
                     imanageuser.UserId = base_user.UserId;
                     imanageuser.Account = base_user.Account;
                     imanageuser.UserName = base_user.RealName;
                     imanageuser.Gender = base_user.Gender;
                     imanageuser.Password = base_user.Password;
                     imanageuser.Code = base_user.Code;
                     imanageuser.Secretkey = base_user.Secretkey;
                     imanageuser.LogTime = DateTime.Now;
                     imanageuser.CompanyId = base_user.CompanyId;
                     imanageuser.DepartmentId = base_user.DepartmentId;
                     imanageuser.ObjectId = base_objectuserrelationbll.GetObjectId(imanageuser.UserId);
                     imanageuser.IPAddress = IPAddress;
                     imanageuser.IPAddressName = IPAddressName;
                     imanageuser.IsSystem = false;
                     ManageProvider.Provider.AddCurrent(imanageuser);
                     //对在线人数全局变量进行加1处理
                     HttpContext rq = System.Web.HttpContext.Current;
                     rq.Application["OnLineCount"] = (int)rq.Application["OnLineCount"] + 1;
                     Msg = "3";//验证成功
                     Base_SysLogBll.Instance.WriteLog(Account, OperationType.Login, "1", "登陆成功、IP所在城市:" + IPAddressName);
                     break;
                 default:
                     break;
             }
         }
     }
     catch (Exception ex)
     {
         Msg = ex.Message;
     }
     return Content(Msg);
 }