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

Java tutorial

Introduction

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

Source

// Description: Java 7 Security Manager Add Device 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.*;
import java.security.*;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.X509EncodedKeySpec;
import java.util.*;

import javax.crypto.Cipher;
import javax.crypto.NoSuchPaddingException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;

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 CFAstSMWarLoginHtml
 */
@WebServlet("/CFAstSMWarAddDeviceHtml")
public class CFAstSMWarAddDeviceHtml extends HttpServlet {
    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public CFAstSMWarAddDeviceHtml() {
        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) {
                response.sendRedirect("CFAstSMWarLoginHtml");
                return;
            }
        }

        CFAstAuthorization auth = schemaObj.getAuthorization();
        if (auth == null) {
            response.sendRedirect("CFAstSMWarLoginHtml");
            return;
        }

        ICFAstSchema dbSchema = null;
        try {
            dbSchema = CFAstSchemaPool.getSchemaPool().getInstance();
            schemaObj.setBackingStore(dbSchema);
            schemaObj.beginTransaction();
            ICFAstSecUserObj secUser = schemaObj.getSecUserTableObj().readSecUserByIdIdx(auth.getSecUserId());

            ICFAstClusterObj secCluster = schemaObj.getClusterTableObj().readClusterByIdIdx(auth.getSecClusterId());
            if (secCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "secCluster");
            }
            String clusterDescription = secCluster.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=\"CFAstSMWarAddDeviceHtml\">");
            out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
            out.println("<H2 style=\"text-align:center\">Add new device for " + secUser.getRequiredEMailAddress()
                    + "</H2>");
            out.println("<p>");
            out.println("<table style=\"width:90%\">");
            out.println(
                    "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
            out.println(
                    "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
            out.println("</table>");
            out.println(
                    "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel;</button>");
            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) {
                response.sendRedirect("CFAstSMWarLoginHtml");
                return;
            }
        }

        CFAstAuthorization auth = schemaObj.getAuthorization();
        if (auth == null) {
            response.sendRedirect("CFAstSMWarLoginHtml");
            return;
        }

        ICFAstSecUserObj secUser = null;
        ICFAstClusterObj secCluster = null;
        String clusterDescription = "";

        ICFAstSchema dbSchema = null;
        try {
            dbSchema = CFAstSchemaPool.getSchemaPool().getInstance();
            schemaObj.setBackingStore(dbSchema);
            schemaObj.beginTransaction();

            secUser = schemaObj.getSecUserTableObj().readSecUserByIdIdx(auth.getSecUserId());

            secCluster = schemaObj.getClusterTableObj().readClusterByIdIdx(auth.getSecClusterId());
            if (secCluster == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "secCluster");
            }
            clusterDescription = secCluster.getRequiredDescription();

            String deviceName = request.getParameter("DeviceName");
            if ((deviceName == null) || (deviceName.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=\"CFAstSMWarAddDeviceHtml\">");
                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\">Device Name must be specified.");
                out.println("<H2 style=\"text-align:center\">Add new device for "
                        + secUser.getRequiredEMailAddress() + "</H2>");
                out.println("<p>");
                out.println("<table style=\"width:90%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
                out.println(
                        "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
                out.println("</table>");
                out.println(
                        "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel</button>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

            ICFAstSecDeviceObj secDev = schemaObj.getSecDeviceTableObj()
                    .readSecDeviceByIdIdx(secUser.getRequiredSecUserId(), deviceName);
            if (secDev != 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=\"CFAstSMWarAddDeviceHtml\">");
                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\">Device Name \"" + deviceName + "\" already in use.");
                out.println("<H2 style=\"text-align:center\">Add new device for "
                        + secUser.getRequiredEMailAddress() + "</H2>");
                out.println("<p>");
                out.println("<table style=\"width:90%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
                out.println(
                        "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
                out.println("</table>");
                out.println(
                        "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel</button>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

            String publicKey = request.getParameter("PublicKey");
            if ((publicKey == null) || (publicKey.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=\"CFAstSMWarAddDeviceHtml\">");
                out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
                out.println("<p style=\"text-align:center\">Public Key must be specified.");
                out.println("<H2 style=\"text-align:center\">Add new device for "
                        + secUser.getRequiredEMailAddress() + "</H2>");
                out.println("<p>");
                out.println("<table style=\"width:90%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
                out.println(
                        "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
                out.println("</table>");
                out.println(
                        "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel</button>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

            byte wrapped[] = Base64.decodeBase64(publicKey);

            X509EncodedKeySpec x509KeySpec = new X509EncodedKeySpec(wrapped);
            KeyFactory kf = KeyFactory.getInstance("RSA");
            if (kf == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "kf");
            }

            PublicKey decodedPublicKey = kf.generatePublic(x509KeySpec);
            if (decodedPublicKey == 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=\"CFAstSMWarAddDeviceHtml\">");
                out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
                out.println("<p style=\"text-align:center\">Public Key must be a valid RSA 2048 Key.");
                out.println("<H2 style=\"text-align:center\">Add new device for "
                        + secUser.getRequiredEMailAddress() + "</H2>");
                out.println("<p>");
                out.println("<table style=\"width:90%\">");
                out.println(
                        "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
                out.println(
                        "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
                out.println("</table>");
                out.println(
                        "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel</button>");
                out.println("</form>");
                out.println("</BODY>");
                out.println("</HTML>");
                return;
            }

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

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

            secDev = schemaObj.getSecDeviceTableObj().newInstance();
            ICFAstSecDeviceEditObj editDev = secDev.beginEdit();
            editDev.setRequiredContainerSecUser(secUser);
            editDev.setRequiredDevName(deviceName);
            editDev.setOptionalPubKey(publicKey);
            secDev = editDev.create();
            editDev.endEdit();

            if (null == secUser.getOptionalLookupDefDev()) {
                ICFAstSecUserEditObj editSecUser = secUser.beginEdit();
                editSecUser.setOptionalLookupDefDev(secDev);
                editSecUser.update();
                editSecUser.endEdit();
            }

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

            schemaObj.commit();

            schemaObj.setAuthorization(auth);

            response.sendRedirect("CFAstSMWarSecurityMainHtml");

        } catch (InvalidKeySpecException e) {
            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=\"CFAstSMWarAddDeviceHtml\">");
            out.println("<H1 style=\"text-align:center\">" + clusterDescription + " Security Manager</H1>");
            out.println("<p style=\"text-align:center\">Public Key must be a valid RSA 2048 Key.");
            out.println("<H2 style=\"text-align:center\">Add new device for " + secUser.getRequiredEMailAddress()
                    + "</H2>");
            out.println("<p>");
            out.println("<table style=\"width:90%\">");
            out.println(
                    "<tr><th style=\"text-align:left\">Device Name:</th><td><input type=\"text\" name=\"DeviceName\"/></td></tr>");
            out.println(
                    "<tr><th style=\"text-align:left\">Public Key:</th><td><textarea name=\"PublicKey\" cols=\"60\" rows=\"10\"></textarea></td></tr>");
            out.println("</table>");
            out.println(
                    "<p style=\"text-align:center\"><button type=\"submit\" name=\"Ok\"\">Add Device</button>&nbsp;&nbsp;&nbsp;&nbsp;<button type=\"button\" name=\"Cancel\"\" onclick=\"window.location.href='CFAstSMWarSecurityMainHtml'\">Cancel</button>");
            out.println("</form>");
            out.println("</BODY>");
            out.println("</HTML>");
        } catch (NoSuchAlgorithmException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught NoSuchAlgorithmException -- " + e.getMessage(), e);
        } catch (RuntimeException e) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Caught RuntimeException -- " + e.getMessage(), e);
        } finally {
            schemaObj.setAuthorization(auth);
            if (dbSchema != null) {
                try {
                    if (schemaObj.isTransactionOpen()) {
                        schemaObj.rollback();
                    }
                } catch (RuntimeException e) {
                }
                schemaObj.setBackingStore(null);
                CFAstSchemaPool.getSchemaPool().releaseInstance(dbSchema);
            }
        }
    }
}