Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.qiniu.process.qdora.QueryHash Maven / Gradle / Ivy
Go to download
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.process.qdora;
import com.google.gson.JsonParseException;
import com.qiniu.common.QiniuException;
import com.qiniu.process.Base;
import com.qiniu.process.qoss.FileChecker;
import com.qiniu.storage.Configuration;
import com.qiniu.util.*;
import java.io.IOException;
import java.util.Map;
public class QueryHash extends Base> {
private String algorithm;
private String domain;
private String protocol;
private String urlIndex;
private Configuration configuration;
private FileChecker fileChecker;
public QueryHash(Configuration configuration, String algorithm, String protocol, String domain, String urlIndex)
throws IOException {
super("qhash", "", "", null);
set(configuration, algorithm, protocol, domain, urlIndex);
this.fileChecker = new FileChecker(configuration.clone(), algorithm, protocol);
}
public QueryHash(Configuration configuration, String algorithm, String protocol, String domain, String urlIndex,
String savePath, int saveIndex) throws IOException {
super("qhash", "", "", null, savePath, saveIndex);
set(configuration, algorithm, protocol, domain, urlIndex);
this.fileChecker = new FileChecker(configuration.clone(), algorithm, protocol);
}
public QueryHash(Configuration configuration, String algorithm, String protocol, String domain, String urlIndex,
String savePath) throws IOException {
this(configuration, algorithm, protocol, domain, urlIndex, savePath, 0);
}
private void set(Configuration configuration, String algorithm, String protocol, String domain, String urlIndex)
throws IOException {
this.configuration = configuration;
this.algorithm = algorithm;
if (urlIndex == null || "".equals(urlIndex)) {
this.urlIndex = "url";
if (domain == null || "".equals(domain)) {
throw new IOException("please set one of domain and url-index.");
} else {
RequestUtils.lookUpFirstIpFromHost(domain);
this.domain = domain;
this.protocol = protocol == null || !protocol.matches("(http|https)") ? "http" : protocol;
}
} else {
this.urlIndex = urlIndex;
}
}
public void updateAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
public void updateDomain(String domain) {
this.domain = domain;
}
public void updateProtocol(String protocol) {
this.protocol = protocol;
}
public void updateUrlIndex(String urlIndex) {
this.urlIndex = urlIndex;
}
public QueryHash clone() throws CloneNotSupportedException {
QueryHash queryHash = (QueryHash)super.clone();
queryHash.fileChecker = new FileChecker(configuration.clone(), algorithm, protocol);
return queryHash;
}
@Override
public String resultInfo(Map line) {
return line.get(urlIndex);
}
@Override
public boolean validCheck(Map line) {
String url = line.get(urlIndex);
return line.get("key") != null || (url != null && !url.isEmpty());
}
@Override
public String singleResult(Map line) throws QiniuException {
String url = line.get(urlIndex);
if (url == null || "".equals(url)) {
url = protocol + "://" + domain + "/" + line.get("key").replaceAll("\\?", "%3F");
line.put(urlIndex, url);
}
String qhash = fileChecker.getQHashBody(url);
if (qhash != null && !"".equals(qhash)) {
// 由于响应的 body 为多行需经过格式化处理为一行字符串
try {
return url + "\t" + JsonUtils.toJson(qhash);
} catch (JsonParseException e) {
throw new QiniuException(e, e.getMessage());
}
} else {
throw new QiniuException(null, "empty_result");
}
}
}