blob: 9a9f8370143e1d6801f2a1aca3d271326228d021 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.sling.jcr.contentloader;
public class ContentTypeUtil {
public static final String EXT_JSON = ".json";
public static final String TYPE_JSON = "application/json";
public static final String EXT_XML = ".xml";
public static final String TYPE_XML = "application/xml";
public static final String EXT_JCR_XML = ".jcr.xml";
// unofficial content type!
public static final String TYPE_JCR_XML = "application/x-jcr+xml";
public static final String EXT_ZIP = ".zip";
public static final String TYPE_ZIP = "application/zip";
public static final String EXT_JAR = ".jar";
public static final String TYPE_JAR = "application/java-archive";
public static String detectContentType(final String filename) {
if (filename != null && !filename.isEmpty()) {
if ( filename.toLowerCase().endsWith(EXT_JSON) ) {
return TYPE_JSON;
}
if ( filename.toLowerCase().endsWith(EXT_JCR_XML)) {
return TYPE_JCR_XML;
}
if ( filename.toLowerCase().endsWith(EXT_XML)) {
return TYPE_XML;
}
if ( filename.toLowerCase().endsWith(EXT_ZIP)) {
return TYPE_ZIP;
}
if ( filename.toLowerCase().endsWith(EXT_JAR)) {
return TYPE_JAR;
}
}
return null;
}
public static String getDefaultExtension(final String contentType) {
if (contentType != null && !contentType.isEmpty()) {
if (TYPE_JSON.equalsIgnoreCase(contentType)) {
return EXT_JSON;
}
if (TYPE_JCR_XML.equalsIgnoreCase(contentType)) {
return EXT_JCR_XML;
}
if (TYPE_XML.equalsIgnoreCase(contentType)) {
return EXT_XML;
}
if (TYPE_ZIP.equalsIgnoreCase(contentType)) {
return EXT_ZIP;
}
if (TYPE_JAR.equalsIgnoreCase(contentType)) {
return EXT_JAR;
}
}
return null;
}
}