blob: b8135bb8f75e8e63a1fe162f9bb59175a91f6e5e [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.freemarker.generator.base.util;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import static org.apache.commons.io.FilenameUtils.separatorsToUnix;
import static org.apache.freemarker.generator.base.util.StringUtils.isNotEmpty;
public class UriUtils {
public static URI toUri(String str) {
try {
return new URI(separatorsToUnix(str));
} catch (URISyntaxException e) {
throw new RuntimeException("Failed to create URI: " + str, e);
}
}
public static URI toUri(String scheme, String path) {
return toUri(scheme + ":///" + path);
}
public static URI toUri(URL url) {
return toUri(url.toString());
}
/**
* Return the URI string representation without fragment part.
*
* @param uri uri
* @return string representation of URI without fragment part
*/
public static String toStringWithoutFragment(URI uri) {
final String str = uri.toString();
final int index = str.indexOf('#');
return index > 0 ? str.substring(0, index) : str;
}
public static boolean isUri(String str) {
return isNotEmpty(str) && str.contains("://");
}
public static boolean isHttpUri(URI uri) {
if (uri == null) {
return false;
}
return "http".equalsIgnoreCase(uri.getScheme()) || "https".equalsIgnoreCase(uri.getScheme());
}
public static boolean isFileUri(URI uri) {
if (uri == null) {
return false;
}
return "file".equalsIgnoreCase(uri.getScheme());
}
public static boolean isEnvUri(URI uri) {
if (uri == null) {
return false;
}
return "env".equalsIgnoreCase(uri.getScheme());
}
}