⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 metadataschemaregistryservlet.java

📁 dspace 用j2ee架构的一个数字图书馆.开源程序
💻 JAVA
字号:
/* * MetadataSchemaRegistryServlet.java * * Version: $Revision: 1.1 $ * * Date: $Date: 2005/11/16 21:40:50 $ * * Copyright (c) 2002-2005, Hewlett-Packard Company and Massachusetts * Institute of Technology.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - 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. * * - Neither the name of the Hewlett-Packard Company nor the name of the * Massachusetts Institute of Technology nor the names of their * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``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 COPYRIGHT * HOLDERS OR CONTRIBUTORS 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. */package org.dspace.app.webui.servlet.admin;import java.io.IOException;import java.sql.SQLException;import java.util.Locale;import java.util.ResourceBundle;import javax.servlet.ServletException;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.jsp.jstl.fmt.LocaleSupport;import org.apache.log4j.Logger;import org.dspace.app.webui.servlet.DSpaceServlet;import org.dspace.app.webui.util.JSPManager;import org.dspace.app.webui.util.UIUtil;import org.dspace.authorize.AuthorizeException;import org.dspace.content.MetadataSchema;import org.dspace.content.NonUniqueMetadataException;import org.dspace.core.Context;/** * Servlet for editing the Dublin Core schema registry. * * @author Martin Hald * @version $Revision: 1.1 $ */public class MetadataSchemaRegistryServlet extends DSpaceServlet{    /** Logger */    private static Logger log = Logger.getLogger(MetadataSchemaRegistryServlet.class);    private String clazz = "org.dspace.app.webui.servlet.admin.MetadataSchemaRegistryServlet";    protected void doDSGet(Context context, HttpServletRequest request,            HttpServletResponse response) throws ServletException, IOException,            SQLException, AuthorizeException    {        // GET just displays the list of type        showSchemas(context, request, response);    }    protected void doDSPost(Context context, HttpServletRequest request,            HttpServletResponse response) throws ServletException, IOException,            SQLException, AuthorizeException    {        String button = UIUtil.getSubmitButton(request, "submit");        if (button.equals("submit_add"))        {            // We are either going to create a new dc schema or update and            // existing one depending on if a schema_id was passed in            String id = request.getParameter("dc_schema_id");            // The sanity check will update the request error string if needed            if (!sanityCheck(request))            {                showSchemas(context, request, response);                context.abort();                return;            }            try            {                if (id.equals(""))                {                    // Create a new metadata schema                    MetadataSchema schema = new MetadataSchema();                    schema.setNamespace(request.getParameter("namespace"));                    schema.setName(request.getParameter("short_name"));                    schema.create(context);                    showSchemas(context, request, response);                    context.complete();                }                else                {                    // Update an existing schema                    MetadataSchema schema = MetadataSchema.find(context,                            UIUtil.getIntParameter(request, "dc_schema_id"));                    schema.setNamespace(request.getParameter("namespace"));                    schema.setName(request.getParameter("short_name"));                    schema.update(context);                    showSchemas(context, request, response);                    context.complete();                }            }            catch (NonUniqueMetadataException e)            {                request.setAttribute("error",                        "Please make the namespace and short name unique.");                showSchemas(context, request, response);                context.abort();                return;            }        }        else if (button.equals("submit_delete"))        {            // Start delete process - go through verification step            MetadataSchema schema = MetadataSchema.find(context, UIUtil                    .getIntParameter(request, "dc_schema_id"));            request.setAttribute("schema", schema);            JSPManager.showJSP(request, response,                    "/dspace-admin/confirm-delete-mdschema.jsp");        }        else if (button.equals("submit_confirm_delete"))        {            // User confirms deletion of type            MetadataSchema dc = MetadataSchema.find(context, UIUtil                    .getIntParameter(request, "dc_schema_id"));            dc.delete(context);            showSchemas(context, request, response);            context.complete();        }        else        {            // Cancel etc. pressed - show list again            showSchemas(context, request, response);        }    }    /**     * Return false if the schema arguments fail to pass the constraints. If     * there is an error the request error String will be updated with an error     * description.     *     * @param request     * @return true of false     */    private boolean sanityCheck(HttpServletRequest request)    {        Locale locale = request.getLocale();        ResourceBundle labels =            ResourceBundle.getBundle("Messages", locale);                // TODO: add more namespace checks        String namespace = request.getParameter("namespace");        if (namespace.length() == 0)        {            return error(request, labels.getString(clazz  + ".emptynamespace"));        }        String name = request.getParameter("short_name");        if (name.length() == 0)        {            return error(request, labels.getString(clazz  + ".emptyname"));        }        if (name.length() > 32)        {            return error(request, labels.getString(clazz  + ".nametolong"));        }        for (int ii = 0; ii < name.length(); ii++)        {            if (name.charAt(ii) == ' ' || name.charAt(ii) == '_'                    || name.charAt(ii) == '.')            {                return error(request,                        labels.getString(clazz  + ".illegalchar"));            }        }        return true;    }    /**     * Bind the error text to the request object.     *     * @param request     * @param text     * @return false     */    private boolean error(HttpServletRequest request, String text)    {        request.setAttribute("error", text);        return false;    }    /**     * Show list of DC type     *     * @param context     *            Current DSpace context     * @param request     *            Current HTTP request     * @param response     *            Current HTTP response     * @throws ServletException     * @throws IOException     * @throws SQLException     * @throws IOException     */    private void showSchemas(Context context, HttpServletRequest request,            HttpServletResponse response) throws ServletException,            SQLException, IOException    {        MetadataSchema[] schemas = MetadataSchema.findAll(context);        request.setAttribute("schemas", schemas);        log.info("Showing Schemas");        JSPManager.showJSP(request, response,                "/dspace-admin/list-metadata-schemas.jsp");    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -