⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 signonfilter.java

📁 ejb克斯人随风俗
💻 JAVA
字号:
/* Copyright 2004 Sun Microsystems, Inc. All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  - Redistributions of source code must retain the above copyright   notice, this list of conditions and the following disclaimer.  - Redistribution in binary form must reproduce the above copyright   notice, this list of conditions and the following disclaimer in   the documentation and/or other materials provided with the   distribution.  Neither the name of Sun Microsystems, Inc. or the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.  This software is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.  You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. $Id: SignOnFilter.java,v 1.1 2004/04/09 00:42:42 yutayoshida Exp $ */package com.sun.j2ee.blueprints.signon.web;import java.io.*;import java.util.*;import java.net.URL;// J2EE importsimport javax.servlet.*;import javax.servlet.http.*;import javax.naming.*;import com.sun.j2ee.blueprints.signon.SignOnFacade;public class SignOnFilter implements Filter {    // these static strings define where to put/get things    public static final String FORM_SIGNON_URL = "j_signon_check";    public static final String FORM_USER_NAME = "j_username";    public static final String FORM_PASSWORD = "j_password";    public static final String REMEMBER_USERNAME = "j_remember_username";    public static final String USER_NAME = "j_signon_username";    public static final String SIGNED_ON_USER  = "j_signon";    public static final String ORIGINAL_URL = "j_signon_original_url";    public static final String CREATE_USER_URL = "j_create_user";    public static final String COOKIE_NAME = "bp_signon";    private HashMap protectedResources;    private FilterConfig config = null;    private String signOnErrorPage = null;    private String signOnPage = null;    private String userCreationError = null;    public void init(FilterConfig config) throws ServletException {        this.config = config;        URL protectedResourcesURL = null;        try {            protectedResourcesURL = config.getServletContext().getResource("/WEB-INF/signon-config.xml");            ConfigFileSignOnDAO dao = new ConfigFileSignOnDAO(protectedResourcesURL);            signOnErrorPage = dao.getSignOnErrorPage();            signOnPage = dao.getSignOnPage();            protectedResources = dao.getProtectedResources();        } catch (java.net.MalformedURLException ex) {                        System.err.println("SignonFilter: malformed URL exception: " + ex);            throw new RuntimeException(ex);        }    }    public void destroy() {        config = null;    }     public  void doFilter(ServletRequest request, ServletResponse  response, FilterChain chain)        throws IOException, ServletException {        HttpServletRequest hreq = (HttpServletRequest)request;        String currentURI = hreq.getRequestURL().toString();        String currentURL = hreq.getRequestURI();        // get everything after the context root        int firstSlash = currentURL.indexOf("/",1); // jump past the starting slash        String targetURL = null;        if (firstSlash != -1) targetURL = currentURL.substring(firstSlash + 1, currentURL.length());        if ((targetURL != null) && targetURL.equals(FORM_SIGNON_URL)) {            validateSignOn(request, response, chain);            // jump out of this method            return;        }        // check if the user is signed on        boolean signedOn = false;        if (hreq.getSession().getAttribute(SIGNED_ON_USER) != null) {            signedOn =((Boolean)hreq.getSession().getAttribute(SIGNED_ON_USER)).booleanValue();        } else {            hreq.getSession().setAttribute(SIGNED_ON_USER, new Boolean(false));        }        // jump to the resource if signed on        if (signedOn) {                chain.doFilter(request,response);                return;        }        // find out if the patterns match the target URL        Iterator it = protectedResources.keySet().iterator();        while (it.hasNext()) {            String protectedName = (String)it.next();            ProtectedResource resource  = (ProtectedResource)protectedResources.get(protectedName);            String urlPattern = resource.getURLPattern();            // now check agains the targetURL            if (urlPattern.equals(targetURL)) {                // put the orginal url in the session so others can access                hreq.getSession().setAttribute(ORIGINAL_URL,  targetURL);                config.getServletContext().getRequestDispatcher("/" + signOnPage).forward(request, response);                // Jump out of the filter and go to the next page                return;            }        }        // No matches if we made it to here        chain.doFilter(request,response);    }     public  void validateSignOn(ServletRequest request, ServletResponse  response, FilterChain chain)        throws IOException, ServletException {        // convert to a http servlet request for now        HttpServletRequest hreq = (HttpServletRequest)request;        HttpServletResponse hres = (HttpServletResponse)response;        // get the user name        String userName = hreq.getParameter(FORM_USER_NAME);        // get the password        String password = hreq.getParameter(FORM_PASSWORD);        // check if the user wants userName set in cookie        String rememberUserName = hreq.getParameter(REMEMBER_USERNAME);        if (rememberUserName != null) {          // set a cookie with the username in it          Cookie userNameCookie = new Cookie(COOKIE_NAME, userName);          // set cookie to last for one month          userNameCookie.setMaxAge(2678400);          hres.addCookie(userNameCookie);        } else {            // see if the cookie exists and remove accordingly            Cookie[] cookies = hreq.getCookies();            if (cookies != null) {                for (int loop=0; loop < cookies.length; loop++) {                    if (cookies[loop].getName().equals(COOKIE_NAME)) {                        cookies[loop].setMaxAge(0);                        hres.addCookie(cookies[loop]);                    }                }            }        }        //validate against the registered users        try {            SignOnFacade signOn = new SignOnFacade();            boolean authenticated = signOn.authenticate(userName, password);            if (authenticated) {                // place a true boolean in the session                if (hreq.getSession().getAttribute(USER_NAME) != null) {                    hreq.getSession().removeAttribute(USER_NAME);                }                hreq.getSession().setAttribute(USER_NAME, userName);                // remove the sign on user key before putting it back in                if (hreq.getSession().getAttribute(SIGNED_ON_USER) != null) {                    hreq.getSession().removeAttribute(SIGNED_ON_USER);                }                hreq.getSession().setAttribute(SIGNED_ON_USER, new Boolean(true));                // redirect to the original destination                String targetURL = (String)hreq.getSession().getAttribute(ORIGINAL_URL);                hres.sendRedirect(targetURL);                return;            } else {                hres.sendRedirect(signOnErrorPage);                return;            }        } catch(Exception e) {            System.out.println("SignOnFilter signOnError:::exception to:" + e);        }     } }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -