CAS内外网都能访问配置说明

由于项目需要,需要内外网都能同时访问,原本的不能符合要求,只能着手修改,以下是 修改步骤。我用的是cas-client-core-3.3.3.jar的客户端版本
1.获得cas-client-core-3.3.3.jar的源码。
2.新增工具类CustomConfigUtil,我把工具类放在org.jasig.cas.client.util下。

package org.jasig.cas.client.util;
 
import java.util.HashMap;
import java.util.Map;
 
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
 
public class CustomConfigUtil {
     
    /**
     * @Description 获取属性文件中的属性信息
     * @return
     */
    public static Map<String, String> getCustomConfig(
            final ServletContext servletContext,
            final HttpServletRequest request) {
        Map<String, String> map = new HashMap<String, String>();
        Map<String, String> map2 = HttpConnectionUtil.getServiceUrlMap();
        //读取配置文件
        Map<String, String> segmentMap = PropertiesUtil.readProperties(CustomConfigUtil.class.getResource("/").getPath() + "segment.properties");
        boolean falg = false;
        for (String key : segmentMap.keySet()) {
            //判断是否属于某个网段
            falg =  HttpConnectionUtil.ipIsValid(segmentMap.get(key), request.getRemoteAddr());
            if(falg){
                break;
            }
        }
        // 判断请求是从外网访问还是从内网访问
        if (falg) {
            //client客户端地址
            map.put("client", map2.get("cas.inClient"));
            //cas服务器地址
            map.put("casServerTicketUrl", map2.get("cas.inCasServer"));
            //cas服务器地址
            map.put("casServerTicket", map2.get("cas.inCasServerTicket"));
        } else {
            //client客户端地址
            map.put("client", map2.get("cas.outClient"));
            //cas服务器地址
            map.put("casServerTicketUrl", map2.get("cas.outCasServer"));
            //cas服务器地址
            boolean flag =  HttpConnectionUtil.isConnection(map2.get("cas.outCasServerTicket"));
            if(flag){
                map.put("casServerTicket", map2.get("cas.outCasServerTicket"));
            }else{
                map.put("casServerTicket", map2.get("cas.inCasServerTicket"));
            }
        }
        return map;
    }
}

3.新增工具类HttpConnectionUtil 代码如下

package org.jasig.cas.client.util;
 
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Map;
 
public class HttpConnectionUtil {
 
    /**
     * 测试网络是否能连接通畅
     *
     * @param serviceURL
     * @return
     */
    public static boolean isConnection(String serviceURL) {
        try {
            URL url = new URL(serviceURL);
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setConnectTimeout(2000);// 2秒则超时
            conn.setReadTimeout(2000);
            int state = conn.getResponseCode();
            if (state == 200) {
                return true;
            }
        } catch (Exception e) {
            return false;
        }
        return false;
    }
 
    public static boolean ipIsValid(String ipSection, String ip) { 
        if (ipSection == null)
            throw new NullPointerException("IP段不能为空!"); 
        if (ip == null)
            throw new NullPointerException("IP不能为空!"); 
        ipSection = ipSection.trim();
        ip = ip.trim();
        final String REGX_IP = "((25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]\\d|\\d)\\.){3}(25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]\\d|\\d)"; 
        final String REGX_IPB = REGX_IP + "\\-" + REGX_IP; 
        if (!ipSection.matches(REGX_IPB) || !ip.matches(REGX_IP)) 
            return false; 
        int idx = ipSection.indexOf('-'); 
        String[] sips = ipSection.substring(0, idx).split("\\."); 
        String[] sipe = ipSection.substring(idx + 1).split("\\."); 
        String[] sipt = ip.split("\\."); 
        long ips = 0L, ipe = 0L, ipt = 0L; 
        for (int i = 0; i < 4; ++i) { 
            ips = ips << 8 | Integer.parseInt(sips[i]); 
            ipe = ipe << 8 | Integer.parseInt(sipe[i]); 
            ipt = ipt << 8 | Integer.parseInt(sipt[i]); 
        } 
        if (ips > ipe) { 
            long t = ips; 
            ips = ipe; 
            ipe = t; 
        } 
        return ips <= ipt && ipt <= ipe; 
    }
 
    public static void main(String[] args) {
        if (ipIsValid("127.0.0.1-127.0.0.1", "127.0.0.1")) {
            System.out.println("ip属于该网段");
        } else{
            System.out.println("ip不属于该网段");
        }
    }
      
      
     /**
     * 获取配置文件信息
     *
     * @return
     */
     public static Map<String, String> getServiceUrlMap() {
         return PropertiesUtil.readProperties(HttpConnectionUtil.class
                 .getResource("/").getPath() + "cas-service.properties");
     }
 
 
}

4.新增工具类:PropertiesUtil:

package org.jasig.cas.client.util;
 
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
 
public class PropertiesUtil {
 
    public static Map<String, String> readProperties(String path) {
         
        Map<String, String> map = new HashMap<String, String>();
        try {
            Properties props = new Properties();
//          System.out.println(path);
            props.load(new FileInputStream(path));
            Enumeration<?> enum1 = props.propertyNames();
            while(enum1.hasMoreElements()) {
              String strKey = (String) enum1.nextElement();
              String strValue = props.getProperty(strKey);
              map.put(strKey, strValue);
            }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return map;
    }
}

5.所属的两个配置文件
cas-service.properties文件:

#cas服务端的内网和外网
cas.inCasServer=http://10.206.20.52:8982/cas
cas.outCasServer=http://218.6.169.98:18982/cas

#客户端的内网和外网
cas.inClient=http://10.206.20.52:8982/tickets
cas.outClient=http://218.6.169.98:18982/tickets

#服务端的内网和外网
cas.inCasServerTicket=http://10.206.20.52:8982/cas
cas.outCasServerTicket=http://218.6.169.98:18982/cas

segment.properties文件:

#网段
segment_1 =10.0.0.0-10.255.255.255
segment_2 =172.16.0.0-172.31.255.255
segment_3 =192.168.0.0-192.168.255.255
segment_4 =172.10.0.0-172.31.255.255

6.做好以上工作开始修改源码,首先修改AuthenticationFilte ,添加静态属性
public static final String CONST_CAS_GATEWAY = "const_cas_gateway";
然后找到方法:doFilter 方法内容修改为:

public final void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain)
    throws IOException, ServletException
  {
    HttpServletRequest request = (HttpServletRequest)servletRequest;
    HttpServletResponse response = (HttpServletResponse)servletResponse;
    HttpSession session = request.getSession(false);
    String ticket = request.getParameter(getArtifactParameterName());
    Assertion assertion = session != null ? 
      (Assertion)session.getAttribute("_const_cas_assertion_") : null;
    boolean wasGatewayed = (session != null) && 
      (session.getAttribute("_const_cas_gateway_") != null);
    
    String isToLogout = request.getParameter("isToLogout");
    if ((CommonUtils.isBlank(ticket)) && (assertion == null) && (!wasGatewayed) && 
      (!"1".equals(isToLogout)))
    {
      this.logger.debug("noticket and no assertion found");
      if (this.gateway)
      {
        this.logger.debug("settinggateway attribute in session");
        request.getSession(true).setAttribute("_const_cas_gateway_", "yes");
      }
    //修改部分
      String serviceUrl = constructServiceUrl(request, response, 
        "auth");
      
      Map<String, String> config = CustomConfigUtil.getCustomConfig(
        request.getServletContext(), request);
      this.casServerLoginUrl = ((String)config.get("casServerTicketUrl")).toString();
      setCasServerLoginUrl(((String)config.get("casServerTicketUrl")).toString());
      String urlToRedirectTo = CommonUtils.constructRedirectUrl(
        this.casServerLoginUrl, getServiceParameterName(), 
        serviceUrl, this.renew, this.gateway);
      if (this.logger.isDebugEnabled()) {
        this.logger.debug("redirectingto \"" + urlToRedirectTo + "\"");
      }
      response.sendRedirect(urlToRedirectTo);
      return;
    }
    if (session != null)
    {
      this.logger.debug("removinggateway attribute from session");
      session.setAttribute("_const_cas_gateway_", null);
    }
    filterChain.doFilter(request, response);
  }

7.修改后constructServiceUrl报错 因为之前该方法只有两个参数 现在修改为3个 找到改方法的类AbstractCasFilter
源码在113行那样constructServiceUrl重载该方法:

protected final String constructServiceUrl(final HttpServletRequest request, final HttpServletResponse response,final String type) {
        //从配置文件中取出cas服务器的登陆地址
      Map<String,String> config = CustomConfigUtil.getCustomConfig(request.getServletContext(),request);
      if("auth".equals(type)){
          this.serverName = config.get("client").toString();
          this.service = config.get("client").toString();
      }else if("validation".equals(type)){
          this.serverName = config.get("casServerTicket").toString();
          this.service = config.get("client").toString();
}

注意 该方法调用的地方还有几个 需要全部都修改为重载的方法 可以先不忙重载, 先在原方法修改 看到源码报错的地方修改后在做调整,其他地方调整后传人参数为:“validation”
很多地方写的不是很好,配置文件那些有的都直接到里面固定了,有些还需要优化 不过总体来说 是可以实现了内网和外网的通用访问。

具体项目和说明示例可下载:
http://pan.baidu.com/s/1sklXCK1

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,483评论 25 707
  • JEESZ分布式框架单点登录集成方案 第一节:单点登录简介 第一步:了解单点登录 SSO主要特点是: SSO应用之...
    ITsupuerlady阅读 666评论 0 6
  • 人生是一场漫长的旅行, 每一个下一分钟都有我的期盼, 无法得到了也只好说再见, 我不能为了拥有, 而放弃整个旅行,...
    小黄皇冠阅读 214评论 0 1
  • 奇迹感恩(2017、7、27) 1、早上跟随冥想音频,进入深邃的内在空间,一股很大的能量涌了上来,为我清理,感觉特...
    心静若水1阅读 195评论 0 0
  • 昨天晚上把一个扫描的文件,经过文字识别,用vim转化成了PDF。这个过程用到了很多编程时养成的习惯,非常有趣,特此...
    早起祷告的猴子阅读 724评论 0 2