
com.qiniu.process.qdora.QueryAvinfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
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.storage.Configuration;
import com.qiniu.util.*;
import java.io.IOException;
import java.util.Map;
public class QueryAvinfo extends Base {
private String domain;
private String protocol;
private String urlIndex;
private MediaManager mediaManager;
public QueryAvinfo(Configuration configuration, String domain, String protocol, String urlIndex, String savePath,
int saveIndex) throws IOException {
super("avinfo", "", "", configuration, null, savePath, saveIndex);
set(protocol, domain, urlIndex);
this.mediaManager = new MediaManager(configuration.clone(), protocol);
}
public void updateQuery(String protocol, String domain, String urlIndex) throws IOException {
set(protocol, domain, urlIndex);
this.mediaManager = new MediaManager(configuration.clone(), protocol);
}
private void set(String protocol, String domain, String urlIndex) throws IOException {
if (urlIndex == null || "".equals(urlIndex)) {
this.urlIndex = null;
if (domain == null || "".equals(domain)) {
throw new IOException("please set one of domain and urlIndex.");
} else {
RequestUtils.checkHost(domain);
this.domain = domain;
this.protocol = protocol == null || !protocol.matches("(http|https)") ? "http" : protocol;
}
} else {
this.urlIndex = urlIndex;
}
}
public QueryAvinfo(Configuration configuration, String domain, String protocol, String urlIndex, String savePath)
throws IOException {
this(configuration, domain, protocol, urlIndex, savePath, 0);
}
public QueryAvinfo clone() throws CloneNotSupportedException {
QueryAvinfo queryAvinfo = (QueryAvinfo)super.clone();
queryAvinfo.mediaManager = new MediaManager(configuration.clone(), protocol);
return queryAvinfo;
}
@Override
protected String resultInfo(Map line) {
return line.get("key") + "\t" + line.get(urlIndex);
}
protected String singleResult(Map line) throws QiniuException {
String url = urlIndex != null ? line.get(urlIndex) :
protocol + "://" + domain + "/" + line.get("key").replaceAll("\\?", "%3F");
String avinfo = mediaManager.getAvinfoBody(url);
if (avinfo != null && !"".equals(avinfo)) {
// 由于响应的 body 为多行需经过格式化处理为一行字符串
try {
return JsonConvertUtils.toJson(avinfo);
} catch (JsonParseException e) {
throw new QiniuException(e, e.getMessage());
}
} else {
throw new QiniuException(null, "empty_result");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy