1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
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 | |
|
41 | |
|
42 | |
|
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 | |
|
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 | |
|
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 | |
|
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 | |
|
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 | |
|
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 | |
|
126 | 0 | saveErrors(request, errors); |
127 | 0 | return mapping.findForward("report"); |
128 | |
} |
129 | |
} |
130 | |
} |