/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * 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 2 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.servlet.admin; import java.io.FileInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import javax.jcr.LoginException; import javax.jcr.Session; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.IOUtils; import org.apache.jackrabbit.core.nodetype.InvalidNodeTypeDefException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.openkm.api.OKMPropertyGroup; import com.openkm.bean.PropertyGroup; import com.openkm.bean.form.FormElement; import com.openkm.core.Config; import com.openkm.core.DatabaseException; import com.openkm.core.ParseException; import com.openkm.core.RepositoryException; import com.openkm.jcr.JCRUtils; import com.openkm.module.direct.DirectRepositoryModule; import com.openkm.util.FormUtils; import com.openkm.util.UserActivity; import com.openkm.util.WebUtils; /** * Property groups servlet */ public class PropertyGroupsServlet extends BaseServlet { private static final long serialVersionUID = 1L; private static Logger log = LoggerFactory.getLogger(PropertyGroupsServlet.class); @Override public void service(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { String method = request.getMethod(); if (checkMultipleInstancesAccess(request, response)) { if (method.equals(METHOD_GET)) { doGet(request, response); } else if (method.equals(METHOD_POST)) { doPost(request, response); } } } @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { log.debug("doGet({}, {})", request, response); request.setCharacterEncoding("UTF-8"); String action = WebUtils.getString(request, "action"); Session session = null; updateSessionManager(request); try { session = JCRUtils.getSession(); if (action.equals("register")) { register(session, request, response); } list(request, response); } catch (LoginException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (RepositoryException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (DatabaseException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (javax.jcr.RepositoryException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (ParseException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (org.apache.jackrabbit.core.nodetype.compact.ParseException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } catch (InvalidNodeTypeDefException e) { log.error(e.getMessage(), e); sendErrorRedirect(request,response, e); } finally { JCRUtils.logout(session); } } /** * Register property group */ private void register(Session session, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, ParseException, org.apache.jackrabbit.core.nodetype.compact.ParseException, javax.jcr.RepositoryException, InvalidNodeTypeDefException { log.debug("register({}, {}, {})", new Object[] { session, request, response }); // Check xml property groups definition FormUtils.resetPropertyGroupsForms(); FormUtils.parsePropertyGroupsForms(Config.PROPERTY_GROUPS_XML); // If it is ok, register it FileInputStream fis = null; try { fis = new FileInputStream(Config.PROPERTY_GROUPS_CND); DirectRepositoryModule.registerCustomNodeTypes(session, fis); } finally { IOUtils.closeQuietly(fis); } // Activity log UserActivity.log(request.getRemoteUser(), "ADMIN_PROPERTY_GROUP_REGISTER", Config.PROPERTY_GROUPS_CND, null); log.debug("register: void"); } /** * List property groups */ private void list(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, ParseException, RepositoryException, DatabaseException { log.debug("list({}, {})", new Object[] { request, response }); ServletContext sc = getServletContext(); FormUtils.resetPropertyGroupsForms(); OKMPropertyGroup okmPropGroups = OKMPropertyGroup.getInstance(); List<PropertyGroup> groups = okmPropGroups.getAllGroups(null); Map<PropertyGroup, List<Map<String, String>>> pGroups = new LinkedHashMap<PropertyGroup, List<Map<String,String>>>(); for (PropertyGroup group : groups) { List<FormElement> mData = okmPropGroups.getPropertyGroupForm(null, group.getName()); List<Map<String, String>> fMaps = new ArrayList<Map<String,String>>(); for (FormElement fe : mData) { fMaps.add(FormUtils.toString(fe)); } pGroups.put(group, fMaps); } sc.setAttribute("pgCnd", JCRUtils.getName(Config.PROPERTY_GROUPS_CND)); sc.setAttribute("pGroups", pGroups); sc.getRequestDispatcher("/admin/property_groups.jsp").forward(request, response); // Activity log UserActivity.log(request.getRemoteUser(), "ADMIN_PROPERTY_GROUP_LIST", null, null); log.debug("list: void"); } }