Coverage Report - org.kuali.rice.ksb.security.admin.web.JavaSecurityManagementAction
 
Classes in this File Line Coverage Branch Coverage Complexity
JavaSecurityManagementAction
0%
0/43
0%
0/4
2.667
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.ksb.security.admin.web;
 17  
 
 18  
 import java.io.ByteArrayOutputStream;
 19  
 import java.io.IOException;
 20  
 import java.security.KeyStore;
 21  
 import java.security.KeyStoreException;
 22  
 import java.security.NoSuchAlgorithmException;
 23  
 import java.security.cert.CertificateException;
 24  
 import java.util.Collection;
 25  
 
 26  
 import javax.servlet.http.HttpServletRequest;
 27  
 import javax.servlet.http.HttpServletResponse;
 28  
 
 29  
 import org.apache.struts.action.ActionForm;
 30  
 import org.apache.struts.action.ActionForward;
 31  
 import org.apache.struts.action.ActionMapping;
 32  
 import org.apache.struts.action.ActionMessages;
 33  
 import org.kuali.rice.ksb.messaging.web.KSBAction;
 34  
 import org.kuali.rice.ksb.security.admin.ExportServlet;
 35  
 import org.kuali.rice.ksb.security.admin.KeyStoreEntryDataContainer;
 36  
 import org.kuali.rice.ksb.service.KSBServiceLocator;
 37  
 
 38  
 
 39  
 /**
 40  
  * Struts action for admin users to manage keys and keystore files for client applications 
 41  
  * 
 42  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 43  
  *
 44  
  */
 45  0
 public class JavaSecurityManagementAction extends KSBAction {
 46  
 
 47  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(JavaSecurityManagementAction.class);
 48  
 
 49  
     /**
 50  
      * @see org.kuali.rice.ksb.messaging.web.KSBAction#establishRequiredState(javax.servlet.http.HttpServletRequest, org.apache.struts.action.ActionForm)
 51  
      */
 52  
     @Override
 53  
     public ActionMessages establishRequiredState(HttpServletRequest request, ActionForm form) throws Exception {
 54  0
         request.setAttribute("rice_constant", getServlet().getServletContext().getAttribute("RiceConstants"));
 55  0
         request.setAttribute("entryListPageSize", 30);
 56  0
         Collection<KeyStoreEntryDataContainer> keyStoreEntryList = KSBServiceLocator.getJavaSecurityManagementService().getListOfModuleKeyStoreEntries();
 57  0
         LOG.info("Found " + keyStoreEntryList.size() + " entries in module keystore");
 58  0
         request.setAttribute("keyStoreEntryList", keyStoreEntryList);
 59  0
         return null;
 60  
     }
 61  
 
 62  
     /**
 63  
      * @see org.kuali.rice.ksb.messaging.web.KSBAction#start(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
 64  
      */
 65  
     @Override
 66  
     public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 67  0
         return mapping.findForward("report");
 68  
     }
 69  
 
 70  
     /**
 71  
      *  Method to sort the list of keystore entries
 72  
      */
 73  
     public ActionForward sort(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 74  0
         return mapping.findForward("report");
 75  
     }
 76  
 
 77  
     /**
 78  
      *  Clear the form
 79  
      */
 80  
     public ActionForward clear(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 81  0
         form = new JavaSecurityManagementForm();
 82  0
         return mapping.findForward("restart");
 83  
     }
 84  
 
 85  
     /**
 86  
      *  Remove the entry associated with the given alias parameter
 87  
      */
 88  
     public ActionForward removeEntry(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 89  0
         String aliasToRemove = request.getParameter("aliasToRemove");
 90  0
         LOG.info("Removing alias " + aliasToRemove + " from module keystore file");
 91  0
         KSBServiceLocator.getJavaSecurityManagementService().removeClientCertificate(aliasToRemove);
 92  0
         return mapping.findForward("restart");
 93  
     }
 94  
 
 95  
     public ActionForward generateClientKeyStore(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 96  0
         JavaSecurityManagementForm managementForm = (JavaSecurityManagementForm)form;
 97  0
         ActionMessages errors = managementForm.validateGenerateClientKeystore(mapping, request);
 98  0
         if (errors == null || errors.isEmpty()) {
 99  0
             KeyStore clientKeyStore = KSBServiceLocator.getJavaSecurityManagementService().generateClientKeystore(managementForm.getAlias(), managementForm.getPassword());
 100  0
             byte[] data = {};
 101  0
             ByteArrayOutputStream baos = null;
 102  
             try {
 103  0
                 baos = new ByteArrayOutputStream();
 104  0
                 clientKeyStore.store(baos, managementForm.getPassword().toCharArray());
 105  0
                 data = baos.toByteArray();
 106  0
             } catch (KeyStoreException e) {
 107  0
                 e.printStackTrace();
 108  0
                 throw new RuntimeException(e);
 109  0
             } catch (NoSuchAlgorithmException e) {
 110  0
                 e.printStackTrace();
 111  0
                 throw new RuntimeException(e);
 112  0
             } catch (CertificateException e) {
 113  0
                 e.printStackTrace();
 114  0
                 throw new RuntimeException(e);
 115  
             } finally {
 116  0
                 try {
 117  0
                     baos.close();
 118  0
                 } catch (IOException e) {}
 119  0
             }
 120  
 
 121  0
             form = new JavaSecurityManagementForm();
 122  0
             request.getSession().setAttribute(ExportServlet.CLIENT_KEYSTORE_DATA, data);
 123  0
             return new ActionForward(ExportServlet.generateExportPath(managementForm.getAlias() + "_keystore", request), true);
 124  
         } else {
 125  
             // found at least one error
 126  0
             saveErrors(request, errors);
 127  0
             return mapping.findForward("report");
 128  
         }
 129  
     }
 130  
 }