com.yourmediashelf.fedora.akubra.IdMapperUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uuid-datepath-idmapper Show documentation
Show all versions of uuid-datepath-idmapper Show documentation
Implementation of IdMapper that uses version 1 UUIDs to calculate paths
/**
* Copyright (C) 2012 MediaShelf
*
* This file is part of uuid-datepath-idmapper.
*
* uuid-datepath-idmapper is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* uuid-datepath-idmapper 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with uuid-datepath-idmapper. If not, see .
*/
package com.yourmediashelf.fedora.akubra;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
/**
* Utility methods for IdMapper implementations.
*
* @author Edwin Shin
*
*/
public class IdMapperUtil {
/**
*
* @param uri
* @return the encoded URI, as a String
*/
public static String encode(String uri) {
// encode char-by-char because we only want to borrow
// URLEncoder.encode's behavior for some characters
StringBuilder out = new StringBuilder();
for (int i = 0; i < uri.length(); i++) {
char c = uri.charAt(i);
if (c >= 'a' && c <= 'z') {
out.append(c);
} else if (c >= '0' && c <= '9') {
out.append(c);
} else if (c >= 'A' && c <= 'Z') {
out.append(c);
} else if (c == '-' || c == '=' || c == '(' || c == ')'
|| c == '[' || c == ']' || c == ';') {
out.append(c);
} else if (c == ':') {
out.append("%3A");
} else if (c == ' ') {
out.append("%20");
} else if (c == '+') {
out.append("%2B");
} else if (c == '_') {
out.append("%5F");
} else if (c == '*') {
out.append("%2A");
} else if (c == '.') {
if (i == uri.length() - 1) {
out.append("%2E");
} else {
out.append(".");
}
} else {
try {
out.append(URLEncoder.encode("" + c, "UTF-8"));
} catch (UnsupportedEncodingException wontHappen) {
throw new RuntimeException(wontHappen);
}
}
}
return out.toString();
}
/**
*
* @param encodedURI
* @return the decoded URI, as a String
*/
public static String decode(String encodedURI) {
if (encodedURI.endsWith("%2E")) {
encodedURI = encodedURI.substring(0, encodedURI.length() - 3) + ".";
}
try {
return URLDecoder.decode(encodedURI, "UTF-8");
} catch (UnsupportedEncodingException wontHappen) {
throw new RuntimeException(wontHappen);
}
}
}