blob: 2da0f0c80537aff5acfd836a9942ea52287527ac [file] [log] [blame]
<#-- FreeMarker template (see http://freemarker.org/)
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.
-->
<#assign licenseFirst = "/*">
<#assign licensePrefix = " * ">
<#assign licenseLast = " */">
<#include "${project.licensePath}">
<#if package?? && package != "">
package ${package};
</#if>
import java.io.IOException;
import java.math.BigInteger;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.TreeMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.netbeans.saas.RestConnection;
/**
*
* @author ${user}
*/
public class ${name} {
private static String apiKey;
private static String secret;
static {
try {
Properties props = new Properties();
props.load(${name}.class.getResourceAsStream(
"profile.properties"));
apiKey = props.getProperty("api_key");
secret = props.getProperty("secret");
} catch (IOException ex) {
Logger.getLogger(${name}.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static String getApiKey() {
return apiKey;
}
public static String sign(String[][] params) {
return sign(secret, params);
}
private static String sign(String secret,
String[][] params) {
try {
TreeMap<String, String> map = new TreeMap<String, String>();
for (int i = 0; i < params.length; i++) {
String key = params[i][0];
String value = params[i][1];
if (value != null) {
map.put(key, URLEncoder.encode(value, "UTF-8"));
}
}
String signature = "";
Set<Map.Entry<String, String>> entrySet = map.entrySet();
for (Map.Entry<String, String> entry : entrySet) {
signature += entry.getKey() + "=" + entry.getValue();
}
signature += secret;
MessageDigest md = MessageDigest.getInstance("MD5");
byte[] sum = md.digest(signature.getBytes("UTF-8"));
BigInteger bigInt = new BigInteger(1, sum);
return bigInt.toString(16);
} catch (Exception ex) {
Logger.getLogger(${name}.class.getName()).log(Level.SEVERE, null, ex);
}
return null;
}
}