123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- /**
- * Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
- */
- package com.thinkgem.jeesite.modules.sys.web;
- import java.util.Map;
- import javax.annotation.Resource;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import javax.servlet.http.HttpSession;
- import com.caimei.modules.user.dao.MessageCenterDao;
- import com.caimei.redis.RedisService;
- import org.apache.shiro.authz.UnauthorizedException;
- import org.apache.shiro.authz.annotation.RequiresPermissions;
- import org.apache.shiro.web.util.WebUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.Model;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import com.google.common.collect.Maps;
- import com.thinkgem.jeesite.common.config.Global;
- import com.thinkgem.jeesite.common.security.shiro.session.SessionDAO;
- import com.thinkgem.jeesite.common.servlet.ValidateCodeServlet;
- import com.thinkgem.jeesite.common.utils.CacheUtils;
- import com.thinkgem.jeesite.common.utils.CookieUtils;
- import com.thinkgem.jeesite.common.utils.IdGen;
- import com.thinkgem.jeesite.common.utils.StringUtils;
- import com.thinkgem.jeesite.common.web.BaseController;
- import com.thinkgem.jeesite.modules.sys.security.FormAuthenticationFilter;
- import com.thinkgem.jeesite.modules.sys.security.SystemAuthorizingRealm.Principal;
- import com.thinkgem.jeesite.modules.sys.utils.UserUtils;
- /**
- * 登录Controller
- * @author ThinkGem
- * @version 2013-5-31
- */
- @Controller
- public class LoginController extends BaseController{
- @Resource
- private RedisService redisService;
- @Autowired
- private SessionDAO sessionDAO;
- @Autowired
- MessageCenterDao messageCenterDao;
- /**
- * 管理登录
- */
- @RequestMapping(value = "${adminPath}/login", method = RequestMethod.GET)
- public String login(HttpServletRequest request, HttpServletResponse response, Model model) {
- Principal principal = UserUtils.getPrincipal();
- // // 默认页签模式
- // String tabmode = CookieUtils.getCookie(request, "tabmode");
- // if (tabmode == null){
- // CookieUtils.setCookie(response, "tabmode", "1");
- // }
- if (logger.isDebugEnabled()){
- logger.debug("login, active session size: {}", sessionDAO.getActiveSessions(false).size());
- }
- // 如果已登录,再次访问主页,则退出原账号。
- if (Global.TRUE.equals(Global.getConfig("notAllowRefreshIndex"))){
- CookieUtils.setCookie(response, "LOGINED", "false");
- }
- // 如果已经登录,则跳转到管理首页
- if(principal != null && !principal.isMobileLogin()){
- return "redirect:" + adminPath;
- }
- // String view;
- // view = "/WEB-INF/views/modules/sys/sysLogin.jsp";
- // view = "classpath:";
- // view += "jar:file:/D:/GitHub/jeesite/src/main/webapp/WEB-INF/lib/jeesite.jar!";
- // view += "/"+getClass().getName().replaceAll("\\.", "/").replace(getClass().getSimpleName(), "")+"view/sysLogin";
- // view += ".jsp";
- return "modules/sys/sysLogin";
- }
- /**
- * 登录失败,真正登录的POST请求由Filter完成
- */
- @RequestMapping(value = "${adminPath}/login", method = RequestMethod.POST)
- public String loginFail(HttpServletRequest request, HttpServletResponse response, Model model) {
- Principal principal = UserUtils.getPrincipal();
- // 如果已经登录,则跳转到管理首页
- if(principal != null){
- return "redirect:" + adminPath;
- }
- String username = WebUtils.getCleanParam(request, FormAuthenticationFilter.DEFAULT_USERNAME_PARAM);
- boolean rememberMe = WebUtils.isTrue(request, FormAuthenticationFilter.DEFAULT_REMEMBER_ME_PARAM);
- boolean mobile = WebUtils.isTrue(request, FormAuthenticationFilter.DEFAULT_MOBILE_PARAM);
- String exception = (String)request.getAttribute(FormAuthenticationFilter.DEFAULT_ERROR_KEY_ATTRIBUTE_NAME);
- String message = (String)request.getAttribute(FormAuthenticationFilter.DEFAULT_MESSAGE_PARAM);
- if (StringUtils.isBlank(message) || StringUtils.equals(message, "null")){
- message = "用户或密码错误, 请重试.";
- }
- model.addAttribute(FormAuthenticationFilter.DEFAULT_USERNAME_PARAM, username);
- model.addAttribute(FormAuthenticationFilter.DEFAULT_REMEMBER_ME_PARAM, rememberMe);
- model.addAttribute(FormAuthenticationFilter.DEFAULT_MOBILE_PARAM, mobile);
- model.addAttribute(FormAuthenticationFilter.DEFAULT_ERROR_KEY_ATTRIBUTE_NAME, exception);
- model.addAttribute(FormAuthenticationFilter.DEFAULT_MESSAGE_PARAM, message);
- if (logger.isDebugEnabled()){
- logger.debug("login fail, active session size: {}, message: {}, exception: {}",
- sessionDAO.getActiveSessions(false).size(), message, exception);
- }
- // 非授权异常,登录失败,验证码加1。
- if (!UnauthorizedException.class.getName().equals(exception)){
- model.addAttribute("isValidateCodeLogin", isValidateCodeLogin(username, true, false));
- }
- // 验证失败清空验证码
- request.getSession().setAttribute(ValidateCodeServlet.VALIDATE_CODE, IdGen.uuid());
- // 如果是手机登录,则返回JSON字符串
- if (mobile){
- return renderString(response, model);
- }
- return "modules/sys/sysLogin";
- }
- /**
- * 登录成功,进入管理首页
- */
- @RequiresPermissions("user")
- @RequestMapping(value = "${adminPath}")
- public String index(HttpServletRequest request, HttpServletResponse response,Model model) {
- redisService.set("onLineFlag","online",36000l);//设置10小时有效(提供老admin系统免登入)
- Principal principal = UserUtils.getPrincipal();
- Integer count=messageCenterDao.count();
- model.addAttribute("count",count);
- // 登录成功后,验证码计算器清零
- isValidateCodeLogin(principal.getLoginName(), false, true);
- if (logger.isDebugEnabled()){
- logger.debug("show index, active session size: {}", sessionDAO.getActiveSessions(false).size());
- }
- // 如果已登录,再次访问主页,则退出原账号。
- if (Global.TRUE.equals(Global.getConfig("notAllowRefreshIndex"))){
- String logined = CookieUtils.getCookie(request, "LOGINED");
- if (StringUtils.isBlank(logined) || "false".equals(logined)){
- CookieUtils.setCookie(response, "LOGINED", "true");
- }else if (StringUtils.equals(logined, "true")){
- UserUtils.getSubject().logout();
- return "redirect:" + adminPath + "/login";
- }
- }
- // 如果是手机登录,则返回JSON字符串
- if (principal.isMobileLogin()){
- if (request.getParameter("login") != null){
- return renderString(response, principal);
- }
- if (request.getParameter("index") != null){
- return "modules/sys/sysIndex";
- }
- return "redirect:" + adminPath + "/login";
- }
- // // 登录成功后,获取上次登录的当前站点ID
- // UserUtils.putCache("siteId", StringUtils.toLong(CookieUtils.getCookie(request, "siteId")));
- // System.out.println("==========================a");
- // try {
- // byte[] bytes = com.thinkgem.jeesite.common.utils.FileUtils.readFileToByteArray(
- // com.thinkgem.jeesite.common.utils.FileUtils.getFile("c:\\sxt.dmp"));
- // UserUtils.getSession().setAttribute("kkk", bytes);
- // UserUtils.getSession().setAttribute("kkk2", bytes);
- // } catch (Exception e) {
- // e.printStackTrace();
- // }
- //// for (int i=0; i<1000000; i++){
- //// //UserUtils.getSession().setAttribute("a", "a");
- //// request.getSession().setAttribute("aaa", "aa");
- //// }
- // System.out.println("==========================b");
- return "modules/sys/sysIndex";
- }
- /**
- * 获取主题方案
- */
- @RequestMapping(value = "/theme/{theme}")
- public String getThemeInCookie(@PathVariable String theme, HttpServletRequest request, HttpServletResponse response){
- if (StringUtils.isNotBlank(theme)){
- CookieUtils.setCookie(response, "theme", theme);
- }else{
- theme = CookieUtils.getCookie(request, "theme");
- }
- return "redirect:"+request.getParameter("url");
- }
- /**
- * 是否是验证码登录
- * @param useruame 用户名
- * @param isFail 计数加1
- * @param clean 计数清零
- * @return
- */
- @SuppressWarnings("unchecked")
- public static boolean isValidateCodeLogin(String useruame, boolean isFail, boolean clean){
- Map<String, Integer> loginFailMap = (Map<String, Integer>)CacheUtils.get("loginFailMap");
- if (loginFailMap==null){
- loginFailMap = Maps.newHashMap();
- CacheUtils.put("loginFailMap", loginFailMap);
- }
- Integer loginFailNum = loginFailMap.get(useruame);
- if (loginFailNum==null){
- loginFailNum = 0;
- }
- if (isFail){
- loginFailNum++;
- loginFailMap.put(useruame, loginFailNum);
- }
- if (clean){
- loginFailMap.remove(useruame);
- }
- return loginFailNum >= 3;
- }
- }
|