All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modeshape.web.jcr.rest.RestHelper Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.modeshape.web.jcr.rest;

import java.io.IOException;
import java.io.InputStream;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import javax.jcr.PropertyType;
import javax.jcr.RepositoryException;
import javax.jcr.Value;
import javax.jcr.ValueFormatException;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.MediaType;
import org.codehaus.jettison.json.JSONArray;
import org.codehaus.jettison.json.JSONException;
import org.codehaus.jettison.json.JSONObject;
import org.modeshape.common.text.UrlEncoder;
import org.modeshape.common.util.Base64;
import org.modeshape.common.util.StringUtil;
import org.modeshape.jcr.api.Logger;
import org.modeshape.jcr.api.ValueFactory;
import org.modeshape.web.jcr.WebLogger;

/**
 * Utility class for the rest services and supporting classes.
 * 
 * @author Horia Chiorean
 */
public final class RestHelper {

    public static final UrlEncoder URL_ENCODER = new UrlEncoder();

    public static final String BINARY_METHOD_NAME = "binary";
    public static final String ITEMS_METHOD_NAME = "items";
    public static final String NODES_METHOD_NAME = "nodes";
    public static final String QUERY_METHOD_NAME = "query";
    public static final String QUERY_PLAN_METHOD_NAME = "queryPlan";
    public static final String NODE_TYPES_METHOD_NAME = "nodetypes";
    public static final String UPLOAD_METHOD_NAME = "upload";
    public static final String BACKUP_METHOD_NAME = "backup";
    public static final String RESTORE_METHOD_NAME = "restore";
    
    private static final List ALL_METHODS = Arrays.asList(BINARY_METHOD_NAME,
                                                                  ITEMS_METHOD_NAME,
                                                                  NODES_METHOD_NAME,
                                                                  QUERY_METHOD_NAME,
                                                                  QUERY_PLAN_METHOD_NAME,
                                                                  NODE_TYPES_METHOD_NAME,
                                                                  UPLOAD_METHOD_NAME);
    // almost ISO8601, because in JDK 6 Z/z do not support timezones of the format hh:mm
    private static final List ISO8601_DATE_PARSERS = Arrays.asList(new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"),
                                                                                     new SimpleDateFormat("yyyy-MM-dd"));

    private static final Logger LOGGER = WebLogger.getLogger(RestHelper.class);

    private RestHelper() {
    }

    /**
     * @param object the object to be converted to a response string
     * @param request the servlet request
     * @return the response string
     * @throws JSONException if the JSON representation cannot be generated
     * @deprecated since 3.0, dedicated writers are used for the output
     */
    @Deprecated
    public static String responseString( Object object,
                                         HttpServletRequest request ) throws JSONException {
        String acceptHeader = request.getHeader("Accept");
        if (StringUtil.isBlank(acceptHeader)) {
            return responseAsText(object);
        }
        acceptHeader = acceptHeader.toLowerCase();
        if (acceptHeader.contains(MediaType.APPLICATION_JSON.toLowerCase())) {
            return responseAsApplicationJSON(object);
        } else if (acceptHeader.contains(MediaType.TEXT_HTML.toLowerCase())) {
            return responseAsHTML(object);
        }
        return responseAsText(object);
    }

    private static String responseAsText( Object object ) throws JSONException {
        if (object instanceof JSONObject) {
            return ((JSONObject)object).toString(2);
        } else if (object instanceof JSONArray) {
            return ((JSONArray)object).toString(1);
        }
        return object.toString();
    }

    private static String responseAsApplicationJSON( Object object ) {
        return object.toString();
    }

    private static String responseAsHTML( Object object ) throws JSONException {
        String indentedString = responseAsText(object);
        indentedString = indentedString.replaceAll("\n", "
").replaceAll("\\\\", "").replaceAll("\\s", " "); return "" + indentedString + ""; } /** * Determines the absolute URL to a repository/workspace from the given request, by trimming known service methods. * * @param request a {@code non-null} {@link HttpServletRequest} * @return a string representing an absolute-url */ public static String repositoryUrl( HttpServletRequest request ) { String requestURL = request.getRequestURL().toString(); int delimiterSegmentIdx = requestURL.length(); for (String methodName : ALL_METHODS) { if (requestURL.indexOf(methodName) != -1) { delimiterSegmentIdx = requestURL.indexOf(methodName); break; } } return requestURL.substring(0, delimiterSegmentIdx); } /** * Creates an absolute url using the given request's url as base and appending optional segments. * * @param request a {@code non-null} {@link HttpServletRequest} * @param pathSegments an option array of segments * @return a string representing an absolute-url */ public static String urlFrom( HttpServletRequest request, String... pathSegments ) { return urlFrom(request.getRequestURL().toString(), pathSegments); } /** * Creates an url using base url and appending optional segments. * * @param baseUrl a {@code non-null} string which will act as a base. * @param pathSegments an option array of segments * @return a string representing an absolute-url */ public static String urlFrom( String baseUrl, String... pathSegments ) { StringBuilder urlBuilder = new StringBuilder(baseUrl); if (urlBuilder.charAt(urlBuilder.length() - 1) == '/') { urlBuilder.deleteCharAt(urlBuilder.length() - 1); } for (String pathSegment : pathSegments) { if (pathSegment.equalsIgnoreCase("..")) { urlBuilder.delete(urlBuilder.lastIndexOf("/"), urlBuilder.length()); } else { if (!pathSegment.startsWith("/")) { urlBuilder.append("/"); } urlBuilder.append(pathSegment); } } return urlBuilder.toString(); } /** * Return the JSON-compatible string representation of the given property value. If the value is a * {@link javax.jcr.PropertyType#BINARY binary} value, then this method returns the Base-64 encoding of that value. Otherwise, * it just returns the string representation of the value. * * @param value the property value; may not be null * @return the string representation of the value * @deprecated since 3.0 binary values are handled via URLs */ @Deprecated public static String jsonEncodedStringFor( Value value ) { try { if (value.getType() != PropertyType.BINARY) { return value.getString(); } // Encode the binary value in Base64 ... InputStream stream = value.getBinary().getStream(); try { return Base64.encode(stream); } finally { if (stream != null) { try { stream.close(); } catch (IOException e) { // Error accessing the value, so throw this ... LOGGER.error(e.getMessage(), e); } } } } catch (RepositoryException e) { LOGGER.error(e.getMessage(), e); return null; } } /** * Converts an object value coming from a JSON object, to a JCR value by attempting to convert it to a valid data type. * * @param value a generic value, may be {@code null} * @param valueFactory a {@link ValueFactory} instance which is used to perform the conversion * @return either a {@link Value} or {@code null} if the object value is {@code null}. */ public static Value jsonValueToJCRValue( Object value, ValueFactory valueFactory ) { if (value == null) { return null; } // try the datatypes that can be handled by Jettison if (value instanceof Integer || value instanceof Long) { return valueFactory.createValue(((Number)value).longValue()); } else if (value instanceof Double || value instanceof Float) { return valueFactory.createValue(((Number)value).doubleValue()); } else if (value instanceof Boolean) { return valueFactory.createValue((Boolean)value); } // try to convert to a date String valueString = value.toString(); for (DateFormat dateFormat : ISO8601_DATE_PARSERS) { try { Date date = dateFormat.parse(valueString); return valueFactory.createValue(date); } catch (ParseException e) { // ignore } catch (ValueFormatException e) { // ignore } } // default to a string return valueFactory.createValue(valueString); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy