nl.b3p.commons.security.XmlSecurityDatabase.java Source code

Java tutorial

Introduction

Here is the source code for nl.b3p.commons.security.XmlSecurityDatabase.java

Source

/*
 * B3P Commons Core is a library with commonly used classes for webapps.
 * Included are clieop3, oai, security, struts, taglibs and other
 * general helper classes and extensions.
 *
 * Copyright 2000 - 2008 B3Partners BV
 * 
 * This file is part of B3P Commons Core.
 * 
 * B3P Commons Core is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * B3P Commons Core is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with B3P Commons Core.  If not, see <http://www.gnu.org/licenses/>.
 */
package nl.b3p.commons.security;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.io.*;
import java.util.ArrayList;
import java.util.HashMap;

import javax.servlet.*;
import javax.servlet.http.*;

import nl.b3p.commons.security.xml.*;
import org.exolab.castor.xml.*;

/**
 * @author <a href="chrisvanlith@b3partners.nl">Chris van Lith</a>
 * @version $Revision: 1.1 $ $Date: 2004/04/29 16:47:27 $
 */
public class XmlSecurityDatabase extends HttpServlet {

    private static final Log log = LogFactory.getLog(XmlSecurityDatabase.class);

    private static WebappUsers securityDatabase = null;
    private static HashMap userpasswords = null;
    private static HashMap userroles = null;
    private static int maxNumOfSessions = 0;
    private static boolean initialized = false;

    /** Initializes the servlet.
     */
    @Override
    public void init(ServletConfig config) throws ServletException {
        super.init(config);

        // log = LogFactory.getLog(this.getClass());
        // Initialize Torque
        try {
            String configLocation = getServletContext().getRealPath(config.getInitParameter("config"));
            log("config pad: " + configLocation);
            FileReader fr = new FileReader(configLocation);
            if (fr == null) {
                if (log.isDebugEnabled()) {
                    log.debug("config reader is null");
                }
            } else {
                try {
                    securityDatabase = WebappUsers.unmarshal(fr);
                } catch (MarshalException me) {
                    log.error("MarshalException", me);
                } catch (ValidationException ve) {
                    log.error("MarshalException", ve);
                }
            }
        } catch (Exception e) {
            log.error("Xml Security Database load exception", e);
            throw new UnavailableException("Cannot load xml security database");
        }

        // Omzetten in gemakkelijk uitleesbare objecten
        if (securityDatabase != null && log != null) {
            if (log.isDebugEnabled()) {
                log.debug("Xml Database is not null.");
            }
            maxNumOfSessions = securityDatabase.getMaxsessions();

            log.debug("Max number of active sessions: " + maxNumOfSessions + " (0 = no limit)");

            userpasswords = new HashMap();
            userroles = new HashMap();
            int userCount = securityDatabase.getUserCount();
            for (int i = 0; i < userCount; i++) {
                User aUser = null;
                try {
                    aUser = securityDatabase.getUser(i);
                } catch (IndexOutOfBoundsException ioobe) {
                    break;
                }
                if (aUser != null) {
                    if (log.isDebugEnabled()) {
                        log.debug("Init user: " + aUser.getUsername());
                    }
                    userpasswords.put(aUser.getUsername(), aUser.getPassword());
                    String theRoles = aUser.getRoles();
                    if (theRoles == null || theRoles.length() == 0) {
                        continue;
                    }
                    ArrayList roleList = new ArrayList();
                    int roleCount = securityDatabase.getRoleCount();
                    for (int j = 0; j < roleCount; j++) {
                        Role aRole = null;
                        try {
                            aRole = securityDatabase.getRole(j);
                        } catch (IndexOutOfBoundsException ioobe) {
                            break;
                        }
                        if (aRole != null && theRoles.indexOf(aRole.getRolename()) >= 0) {
                            roleList.add(aRole.getRolename());
                            if (log.isDebugEnabled()) {
                                log.debug("  adding role: " + aRole.getRolename());
                            }
                        }
                    }
                    userroles.put(aUser.getUsername(), roleList);
                }
            }
            initialized = true;
            if (log.isInfoEnabled()) {
                log.debug("Initializing Xml Security Database servlet");
            }
        } else {
            System.out.println("XML Security Database servlet not initialized!");
        }

    }

    /** Destroys the servlet.
     */
    @Override
    public void destroy() {
        securityDatabase = null;
        userpasswords = null;
        userroles = null;
        super.destroy();
    }

    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
     * @param request servlet request
     * @param response servlet response
     */
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {
        response.setContentType("text/html");
        java.io.PrintWriter out = response.getWriter();
        out.close();
    }

    /** Handles the HTTP <code>GET</code> method.
     * @param request servlet request
     * @param response servlet response
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {
        processRequest(request, response);
    }

    /** Handles the HTTP <code>POST</code> method.
     * @param request servlet request
     * @param response servlet response
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {
        processRequest(request, response);
    }

    public static boolean booleanAuthenticate(String username, String password) {
        if (!isInitialized()) {
            return false;
        }
        if (log.isDebugEnabled()) {
            log.debug("Trying to login: " + username + " with password: " + password);
        }
        int nos = SessionCounter.getActiveSessions();
        if (log.isDebugEnabled()) {
            log.debug("Number of active sessions: " + nos);
        }
        if (maxNumOfSessions > 0 && nos > maxNumOfSessions) {
            return false;
        }
        if (userpasswords == null) {
            return false;
        }
        if (username == null || password == null) {
            return false;
        }
        if (userpasswords.containsKey(username) && password.equals((String) userpasswords.get(username))) {
            return true;
        }
        return false;
    }

    public static boolean isUserInRole(String username, String role) {
        if (!isInitialized()) {
            return false;
        }
        if (log.isDebugEnabled()) {
            log.debug("Checking role: " + role + " for user: " + username);
        }
        int nos = SessionCounter.getActiveSessions();
        if (log.isDebugEnabled()) {
            log.debug("Number of active sessions: " + nos);
        }
        if (maxNumOfSessions > 0 && nos > maxNumOfSessions) {
            return false;
        }
        if (userroles == null) {
            return false;
        }
        if (username == null || role == null) {
            return false;
        }
        if (userroles.containsKey(username)) {
            ArrayList roleList = (ArrayList) userroles.get(username);
            if (roleList.contains(role)) {
                if (log.isDebugEnabled()) {
                    log.debug("  OK!");
                }
                return true;
            }
        }
        return false;
    }

    /**
     * Return the jndi path for this database.
     * @return
     */
    public static WebappUsers getSecurityDatabase() {
        return (securityDatabase);
    }

    public static boolean isInitialized() {
        return initialized;
    }

    /** Returns a short description of the servlet.
     */
    @Override
    public String getServletInfo() {
        return "XML Security Database servlet";
    }
}