// --- BEGIN COPYRIGHT BLOCK --- // 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; version 2 of the License. // // 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, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // // (C) 2012 Red Hat, Inc. // All rights reserved. // --- END COPYRIGHT BLOCK --- package com.netscape.cms.servlet.base; import java.lang.reflect.Method; import java.security.cert.CertificateEncodingException; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.FormParam; import javax.ws.rs.core.CacheControl; import javax.ws.rs.core.Context; import javax.ws.rs.core.EntityTag; import javax.ws.rs.core.HttpHeaders; import javax.ws.rs.core.Request; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.ResponseBuilder; import javax.ws.rs.core.UriInfo; import com.netscape.certsrv.apps.CMS; import com.netscape.certsrv.cert.CertData; import com.netscape.certsrv.logging.IAuditor; import com.netscape.certsrv.logging.ILogger; /** * Base class for CMS RESTful resources * * @author alee * */ public class PKIService { public static final String HEADER = "-----BEGIN NEW CERTIFICATE REQUEST-----"; public static final String TRAILER = "-----END NEW CERTIFICATE REQUEST-----"; // caching parameters public static final int DEFAULT_LONG_CACHE_LIFETIME = 1000; @Context protected UriInfo uriInfo; @Context protected HttpHeaders headers; @Context protected Request request; @Context protected HttpServletRequest servletRequest; public ILogger logger = CMS.getLogger(); public IAuditor auditor = CMS.getAuditor(); public Response createOKResponse(Object object) { return Response.ok(object).build(); } public Response sendConditionalGetResponse(int ctime, Object object) { CacheControl cc = new CacheControl(); cc.setMaxAge(ctime); EntityTag tag = new EntityTag(Integer.toString(object.hashCode())); ResponseBuilder builder = request.evaluatePreconditions(tag); if (builder != null) { builder.cacheControl(cc); return builder.build(); } builder = Response.ok(object); builder.cacheControl(cc); builder.tag(tag); return builder.build(); } public CertData createCertificateData(org.mozilla.jss.crypto.X509Certificate cert) throws CertificateEncodingException { CertData data = new CertData(); String b64 = HEADER + CMS.BtoA(cert.getEncoded()) + TRAILER; data.setEncoded(b64); return data; } public Locale getLocale() { if (headers == null) return Locale.getDefault(); List locales = headers.getAcceptableLanguages(); if (locales == null || locales.isEmpty()) return Locale.getDefault(); return locales.get(0); } public String getUserMessage(String messageId, String... params) { return CMS.getUserMessage(getLocale(), messageId, params); } public void log(int source, int level, String message) { if (logger == null) return; logger.log(ILogger.EV_SYSTEM, null, source, level, getClass().getSimpleName() + ": " + message); } public void audit(String message, String scope, String type, String id, Map params, String status) { if (auditor == null) return; String auditMessage = CMS.getLogMessage( message, auditor.getSubjectID(), status, auditor.getParamString(scope, type, id, params)); auditor.log(auditMessage); } /** * Get the values of the fields annotated with @FormParam. */ public Map getParams(Object object) { Map map = new HashMap(); // for each fields in the object for (Method method : object.getClass().getMethods()) { FormParam element = method.getAnnotation(FormParam.class); if (element == null) continue; String name = element.value(); try { // get the value from the object Object value = method.invoke(object); // put the value in the map map.put(name, value == null ? null : value.toString()); } catch (Exception e) { // ignore inaccessible fields e.printStackTrace(); } } return map; } }