net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstSMWar.CFAstSMWarRequestResetPasswordHtml.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstSMWar.CFAstSMWarRequestResetPasswordHtml.java

Source

// Description: Java 7 Security Manager Request Reset Password Servlet

/*
 *   Code Factory Asterisk 11 Configuration Model
 *
 *   Copyright (c) 2014-2015 Mark Sobkow
 *   
 *   This program is available as free software under the GNU GPL v3, or
 *   under a commercial license from Mark Sobkow.  For commercial licensing
 *   details, please contact msobkow@sasktel.net.
 *   
 *   Under the terms of the GPL:
 *   
 *      This program 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.
 *     
 *      This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 *   
 *   This software incorporates code originally Copyright (c) Mark Sobkow 2014-2015
 *   and licensed under the BSD 3-Clause license as written by xfree86.org:
 *   
 *   Redistribution and use in source and binary forms, with or without
 *   modification, are permitted provided that the following conditions are
 *   met:
 *   
 *       (1) Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer. 
 *   
 *       (2) Redistributions 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.  
 *       
 *       (3)The name of the author may not be used to
 *       endorse or promote products derived from this software without
 *       specific prior written permission.
 *   
 *   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 *   IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 *   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 *   DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
 *   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 *   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 *   SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 *   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 *   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 *   IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 *   POSSIBILITY OF SUCH DAMAGE.
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstSMWar;

import java.io.IOException;
import java.io.PrintWriter;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Calendar;
import java.util.Date;
import java.util.Properties;
import java.util.UUID;

import javax.mail.*;
import javax.mail.internet.*;
import javax.naming.*;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
import javax.sql.DataSource;

import org.apache.commons.codec.binary.Base64;

import net.sourceforge.msscodefactory.cflib.v2_1.CFLib.CFLib;

import net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAst.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstObj.*;

/**
 * Servlet implementation class CFAstSMWarRequestResetPasswordHtml
 */
@WebServlet("/CFAstSMWarRequestResetPasswordHtml")
public class CFAstSMWarRequestResetPasswordHtml extends HttpServlet {
    private static final long serialVersionUID = 1L;

    protected String smtpUsername = null;
    protected String smtpPassword = null;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public CFAstSMWarRequestResetPasswordHtml() {
        super();
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        final String S_ProcName = "doGet";
        ICFAstSchemaObj schemaObj;
        HttpSession sess = request.getSession(false);
        if (sess == null) {
            sess = request.getSession(true);
            schemaObj = new CFAstSchemaObj();
            sess.setAttribute("SchemaObj", schemaObj);
        } else {
            schemaObj = (ICFAstSchemaObj) sess.getAttribute("SchemaObj");
            if (schemaObj == null) {
                schemaObj = new CFAstSchemaObj();
                sess.setAttribute("SchemaObj", schemaObj);
            }
        }

        ICFAstSchema dbSchema = null;
        try {
            CFAstAuthorization auth = schemaObj.getAuthorization();
            if (auth != null) {
                response.sendRedirect("CFAstSMWarSecurityMainHtml");
                return;
            }

            dbSchema = CFAstSchemaPool.getSchemaPool().getInstance();
            schemaObj.setBackingStore(dbSchema);
            schemaObj.beginTransaction();
            ICFAstSecUserObj systemUser = schemaObj.getSecUserTableObj().readSecUserByULoginIdx("system");
            String passwordHash = systemUser.getRequiredPasswordHash();
            if ((passwordHash == null) || (passwordHash.length() <= 0) || passwordHash.equals("bootstrap")) {
                response.sendRedirect("CFAstSMWarSetSystemPasswordHtml");
                return;
            }

            ICFAstSysClusterObj sysCluster = schemaObj.getSysClusterTableObj().readSysClusterByIdIdx(1, false);
            if (sysCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "sysCluster");
            }

            ICFAstClusterObj resolvedCluster = sysCluster.getRequiredContainerCluster();
            if (resolvedCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName,
                        "resolvedCluster");
            }
            String clusterDomainName = resolvedCluster.getRequiredFullDomainName();
            String clusterDescription = resolvedCluster.getRequiredDescription();

            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">");
            out.println("<HTML>");
            out.println("<BODY>");
            out.println("<form method=\"post\" formaction=\"CFAstSMWarRequestResetPasswordHtml\">");
            out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
            out.println(
                    "<H2 style=\"text-align:center\">Enter the login you'd like to request a password reset for.</H2>");
            out.println("<p>");
            out.println("<center>");
            out.println("<table style=\"width:60%\">");
            out.println(
                    "<tr><th style=\"text-align:left\">Login Id:</th><td><input type=\"text\" name=\"LoginId\"/></td></tr>");
            out.println(
                    "<tr><td colspan=\"2\" style=\"text-align:center\"><button type=\"submit\" name=\"Ok, Request Password Reset\"\">Ok</button></td></tr>");
            out.println("<tr><td colSpan=\"2\" style=\"text-align:center\"><A HRef=\"CFAstSMWarLoginHtml\">Back to "
                    + clusterDescription + " Security Manager Login</A></td></tr>");
            out.println("</table>");
            out.println("</center>");
            out.println("</form>");
            out.println("</BODY>");
            out.println("</HTML>");
        } catch (RuntimeException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught RuntimeException -- " + e.getMessage(), e);
        } finally {
            if (dbSchema != null) {
                try {
                    if (schemaObj.isTransactionOpen()) {
                        schemaObj.rollback();
                    }
                } catch (RuntimeException e) {
                }
                schemaObj.setBackingStore(null);
                CFAstSchemaPool.getSchemaPool().releaseInstance(dbSchema);
            }
        }
    }

    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        final String S_ProcName = "doPost";

        ICFAstSchemaObj schemaObj;
        HttpSession sess = request.getSession(false);
        if (sess == null) {
            sess = request.getSession(true);
            schemaObj = new CFAstSchemaObj();
            sess.setAttribute("SchemaObj", schemaObj);
        } else {
            schemaObj = (ICFAstSchemaObj) sess.getAttribute("SchemaObj");
            if (schemaObj == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "schemaObj");
            }
        }

        ICFAstSchema dbSchema = null;
        try {
            CFAstAuthorization auth = schemaObj.getAuthorization();
            if (auth != null) {
                response.sendRedirect("CFAstSMWarSecurityMainHtml");
                return;
            }

            dbSchema = CFAstSchemaPool.getSchemaPool().getInstance();
            schemaObj.setBackingStore(dbSchema);
            schemaObj.beginTransaction();
            ICFAstSecUserObj systemUser = schemaObj.getSecUserTableObj().readSecUserByULoginIdx("system");
            String passwordHash = systemUser.getRequiredPasswordHash();
            if ((passwordHash == null) || (passwordHash.length() <= 0) || passwordHash.equals("bootstrap")) {
                response.sendRedirect("CFAstSMWarSetSystemPasswordHtml");
            }

            ICFAstClusterObj resolvedCluster;
            ICFAstSysClusterObj sysCluster = schemaObj.getSysClusterTableObj().readSysClusterByIdIdx(1, false);
            if (sysCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "sysCluster");
            }
            resolvedCluster = sysCluster.getRequiredContainerCluster();
            if (resolvedCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName,
                        "resolvedCluster");
            }
            String clusterDomainName = resolvedCluster.getRequiredFullDomainName();
            String clusterDescription = resolvedCluster.getRequiredDescription();

            String loginId = (String) request.getParameter("LoginId");
            if ((loginId == null) || (loginId.length() <= 0)) {
                response.setContentType("text/html");
                PrintWriter out = response.getWriter();
                out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">");
                out.println("<HTML>");
                out.println("<BODY>");
                out.println("<form method=\"post\" formaction=\"CFAstSMWarRequestResetPasswordHtml\">");
                out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
                out.println("<H2 style=\"text-align:center\">ERROR</H2>");
                out.println("<p style=\"text-align:center\">");
                out.println("You must specify a login id to reset.");
                out.println("<p style=\"text-align:center\">");
                out.println("Enter the login you'd like to request a password reset for.");
                out.println("<p>");
                out.println("<center>");
                out.println("<table style=\"width:60%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Login Id:</th><td><input type=\"text\" name=\"LoginId\"/></td></tr>");
                out.println(
                        "<tr><td colspan=\"2\" style=\"text-align:center\"><button type=\"submit\" name=\"Ok, Request Password Reset\"\">Ok</button></td></tr>");
                out.println(
                        "<tr><td colSpan=\"2\" style=\"text-align:center\"><A HRef=\"CFAstSMWarLoginHtml\">Back to "
                                + clusterDescription + " Security Manager Login</A></td></tr>");
                out.println("</table>");
                out.println("</center>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

            ICFAstSecUserObj authenticatingUser = schemaObj.getSecUserTableObj().readSecUserByULoginIdx(loginId,
                    true);
            if (authenticatingUser == null) {
                response.setContentType("text/html");
                PrintWriter out = response.getWriter();
                out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">");
                out.println("<HTML>");
                out.println("<BODY>");
                out.println("<form method=\"post\" formaction=\"CFAstSMWarRequestResetPasswordHtml\">");
                out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
                out.println("<H2 style=\"text-align:center\">ERROR</H2>");
                out.println("<p style=\"text-align:center\">");
                out.println("Login id not found.");
                out.println("<p style=\"text-align:center\">");
                out.println("Enter the login you'd like to request a password reset for.");
                out.println("<p>");
                out.println("<center>");
                out.println("<table style=\"width:60%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Login Id:</th><td><input type=\"text\" name=\"LoginId\"/></td></tr>");
                out.println(
                        "<tr><td colspan=\"2\" style=\"text-align:center\"><button type=\"submit\" name=\"Ok, Request Password Reset\"\">Ok</button></td></tr>");
                out.println(
                        "<tr><td colSpan=\"2\" style=\"text-align:center\"><A HRef=\"CFAstSMWarLoginHtml\">Back to "
                                + clusterDescription + " Security Manager Login</A></td></tr>");
                out.println("</table>");
                out.println("</center>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

            if (null != authenticatingUser.getOptionalPasswordResetUuid()) {

                sendPasswordResetEMail(request, authenticatingUser, resolvedCluster);

                response.setContentType("text/html");
                PrintWriter out = response.getWriter();
                out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">");
                out.println("<HTML>");
                out.println("<BODY>");
                out.println("<form method=\"post\" formaction=\"CFAstSMWarRequestResetPasswordHtml\">");
                out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
                out.println("<H2 style=\"text-align:center\">INFO</H2>");
                out.println("<p style=\"text-align:center\">");
                out.println("Password reset email resent.");
                out.println("<center>");
                out.println("<table style=\"width:60%\">");
                out.println(
                        "<tr><td colSpan=\"2\" style=\"text-align:center\"><A HRef=\"CFAstSMWarLoginHtml\">Back to "
                                + clusterDescription + " Security Manager Login</A></td></tr>");
                out.println("</table>");
                out.println("</center>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
            }

            ICFAstClusterObj systemCluster = schemaObj.getClusterTableObj().readClusterByUDomainNameIdx("system");
            ICFAstTenantObj systemTenant = schemaObj.getTenantTableObj()
                    .readTenantByUNameIdx(systemCluster.getRequiredId(), "system");
            ICFAstSecSessionObj systemSession = schemaObj.getSecSessionTableObj().newInstance();
            ICFAstSecSessionEditObj editSystemSession = (ICFAstSecSessionEditObj) systemSession.beginEdit();
            editSystemSession.setRequiredContainerSecUser(systemUser);
            editSystemSession.setRequiredStart(Calendar.getInstance());
            systemSession = editSystemSession.create();
            editSystemSession.endEdit();

            auth = new CFAstAuthorization();
            auth.setSecCluster(systemCluster);
            auth.setSecTenant(systemTenant);
            auth.setSecSession(systemSession);
            schemaObj.setAuthorization(auth);

            ICFAstSecUserEditObj editAuthenticatingUser = authenticatingUser.beginEdit();
            editAuthenticatingUser.setOptionalPasswordResetUuid(UUID.randomUUID());
            editAuthenticatingUser.update();
            editAuthenticatingUser.endEdit();

            editSystemSession = (ICFAstSecSessionEditObj) systemSession.beginEdit();
            editSystemSession.setOptionalFinish(Calendar.getInstance());
            editSystemSession.update();
            editSystemSession.endEdit();

            schemaObj.setAuthorization(null);

            schemaObj.commit();

            sendPasswordResetEMail(request, authenticatingUser, resolvedCluster);

            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">");
            out.println("<HTML>");
            out.println("<BODY>");
            out.println("<form method=\"post\" formaction=\"CFAstSMWarRequestResetPasswordHtml\">");
            out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
            out.println("<H2 style=\"text-align:center\">INFO</H2>");
            out.println("<p style=\"text-align:center\">");
            out.println(
                    "Password reset email sent.  Please use the links in the email to set a new password or to cancel the request.");
            out.println("<center>");
            out.println("<table style=\"width:60%\">");
            out.println("<tr><td colSpan=\"2\" style=\"text-align:center\"><A HRef=\"CFAstSMWarLoginHtml\">Back to "
                    + clusterDescription + " Security Manager Login</A></td></tr>");
            out.println("</table>");
            out.println("</center>");
            out.println("</form>");
            out.println("</BODY>");
            out.println("</HTML>");
        } catch (MessagingException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught MessagingException -- " + e.getMessage(), e);
        } catch (NamingException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught NamingException -- " + e.getMessage(), e);
        } catch (RuntimeException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught RuntimeException -- " + e.getMessage(), e);
        } finally {
            if (dbSchema != null) {
                try {
                    if (schemaObj.isTransactionOpen()) {
                        schemaObj.rollback();
                    }
                } catch (RuntimeException e) {
                }
                schemaObj.setBackingStore(null);
                CFAstSchemaPool.getSchemaPool().releaseInstance(dbSchema);
            }
        }
    }

    protected void sendPasswordResetEMail(HttpServletRequest request, ICFAstSecUserObj resetUser,
            ICFAstClusterObj cluster) throws AddressException, MessagingException, NamingException {

        final String S_ProcName = "sendPasswordResetEMail";

        Properties props = System.getProperties();
        String clusterDescription = cluster.getRequiredDescription();

        Context ctx = new InitialContext();

        String smtpEmailFrom = (String) ctx.lookup("java:comp/env/CFAst22SmtpEmailFrom");
        if ((smtpEmailFrom == null) || (smtpEmailFrom.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "JNDI lookup for CFAst22SmtpEmailFrom");
        }

        smtpUsername = (String) ctx.lookup("java:comp/env/CFAst22SmtpUsername");
        if ((smtpUsername == null) || (smtpUsername.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "JNDI lookup for CFAst22SmtpUsername");
        }

        smtpPassword = (String) ctx.lookup("java:comp/env/CFAst22SmtpPassword");
        if ((smtpPassword == null) || (smtpPassword.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "JNDI lookup for CFAst22SmtpPassword");
        }

        Session emailSess = Session.getInstance(props, new Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(smtpUsername, smtpPassword);
            }
        });

        String thisURI = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
                + request.getRequestURI().toString();
        int lastSlash = thisURI.lastIndexOf('/');
        String baseURI = thisURI.substring(0, lastSlash);
        UUID resetUUID = resetUser.getOptionalPasswordResetUuid();

        String msgBody = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n" + "<HTML>\n" + "<BODY>\n"
                + "<p>\n" + "You requested a password reset for " + resetUser.getRequiredEMailAddress()
                + " used for accessing " + clusterDescription + ".\n" + "<p>"
                + "Please click on the following link to reset your password:<br>\n" + "<A HRef=\"" + baseURI
                + "/CFAstSMWarResetPasswordHtml?ResetUUID=" + resetUUID.toString() + "\">" + baseURI
                + "/CFAstSMWarResetPasswordHtml?ResetUUID=" + resetUUID.toString() + "</A>\n" + "<p>"
                + "Or click on the following link to cancel the reset request:<br>\n" + "<A HRef=\"" + baseURI
                + "/CFAstSMWarCancelResetPasswordHtml?ResetUUID=" + resetUUID.toString() + "\">" + baseURI
                + "/CFAstSMWarCancelResetPasswordHtml?ResetUUID=" + resetUUID.toString() + "</A>\n" + "</BODY>\n"
                + "</HTML>\n";

        MimeMessage msg = new MimeMessage(emailSess);
        msg.setFrom(new InternetAddress(smtpEmailFrom));
        InternetAddress mailTo[] = InternetAddress.parse(resetUser.getRequiredEMailAddress(), false);
        msg.setRecipient(Message.RecipientType.TO, mailTo[0]);
        msg.setSubject("You requested a password reset for your account with " + clusterDescription + "?");
        msg.setContent(msgBody, "text/html");
        msg.setSentDate(new Date());
        msg.saveChanges();

        Transport.send(msg);
    }
}