All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.tencent.PrivateUrl Maven / Gradle / Ivy
Go to download
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.process.tencent;
import com.qcloud.cos.COSClient;
import com.qcloud.cos.ClientConfig;
import com.qcloud.cos.auth.BasicCOSCredentials;
import com.qcloud.cos.auth.COSCredentials;
import com.qcloud.cos.http.HttpProtocol;
import com.qcloud.cos.model.GeneratePresignedUrlRequest;
import com.qcloud.cos.region.Region;
import com.qiniu.interfaces.ILineProcess;
import com.qiniu.process.Base;
import com.qiniu.util.CloudApiUtils;
import java.io.IOException;
import java.net.URL;
import java.util.Date;
import java.util.Map;
public class PrivateUrl extends Base> {
private Date expiration;
private Map queries;
private GeneratePresignedUrlRequest request;
private COSCredentials credentials;
private ClientConfig clientConfig;
private COSClient cosClient;
private ILineProcess> nextProcessor;
public PrivateUrl(String secretId, String secretKey, String bucket, String region, boolean useHttps, long expires,
Map queries) {
super("tenprivate", secretId, secretKey, bucket);
this.expiration = new Date(System.currentTimeMillis() + expires);
this.queries = queries;
request = new GeneratePresignedUrlRequest(bucket, "");
request.setExpiration(expiration);
if (queries != null) {
for (Map.Entry entry : queries.entrySet())
request.addRequestParameter(entry.getKey(), entry.getValue());
}
credentials = new BasicCOSCredentials(secretId, secretKey);
clientConfig = new ClientConfig(new Region(region));
if (useHttps) clientConfig.setHttpProtocol(HttpProtocol.https);
else clientConfig.setHttpProtocol(HttpProtocol.http);
cosClient = new COSClient(credentials, clientConfig);
CloudApiUtils.checkTencent(cosClient);
}
public PrivateUrl(String secretId, String secretKey, String bucket, String region, boolean useHttps, long expires,
Map queries, String savePath, int saveIndex) throws IOException {
super("tenprivate", secretId, secretKey, bucket, savePath, saveIndex);
this.expiration = new Date(System.currentTimeMillis() + expires);
this.queries = queries;
request = new GeneratePresignedUrlRequest(bucket, "");
request.setExpiration(expiration);
if (queries != null) {
for (Map.Entry entry : queries.entrySet())
request.addRequestParameter(entry.getKey(), entry.getValue());
}
credentials = new BasicCOSCredentials(secretId, secretKey);
clientConfig = new ClientConfig(new Region(region));
if (useHttps) clientConfig.setHttpProtocol(HttpProtocol.https);
else clientConfig.setHttpProtocol(HttpProtocol.http);
cosClient = new COSClient(credentials, clientConfig);
CloudApiUtils.checkTencent(cosClient);
}
public PrivateUrl(String secretId, String secretKey, String bucket, String endpoint, boolean useHttps, long expires,
Map queries, String savePath) throws IOException {
this(secretId, secretKey, bucket, endpoint, useHttps, expires, queries, savePath, 0);
}
@Override
public void setNextProcessor(ILineProcess> nextProcessor) {
this.nextProcessor = nextProcessor;
if (nextProcessor != null) processName = String.join("_with_",
nextProcessor.getProcessName(), processName);
}
@Override
public PrivateUrl clone() throws CloneNotSupportedException {
PrivateUrl cosPrivateUrl = (PrivateUrl)super.clone();
cosPrivateUrl.request = new GeneratePresignedUrlRequest(bucket, "");
cosPrivateUrl.request.setExpiration(expiration);
if (queries != null) {
for (Map.Entry entry : queries.entrySet())
cosPrivateUrl.request.addRequestParameter(entry.getKey(), entry.getValue());
}
cosPrivateUrl.cosClient = new COSClient(credentials, clientConfig);
if (nextProcessor != null) cosPrivateUrl.nextProcessor = nextProcessor.clone();
return cosPrivateUrl;
}
@Override
public String resultInfo(Map line) {
return line.get("key");
}
@Override
public String singleResult(Map line) throws Exception {
String key = line.get("key");
if (key == null) throw new IOException("key is not exists or empty in " + line);
request.setKey(key);
URL url = cosClient.generatePresignedUrl(request);
if (nextProcessor != null) {
line.put("url", url.toString());
return nextProcessor.processLine(line);
}
return String.join("\t", key, url.toString());
}
@Override
public void closeResource() {
super.closeResource();
expiration = null;
queries = null;
request = null;
credentials = null;
clientConfig = null;
if (cosClient != null) {
cosClient.shutdown();
cosClient = null;
}
if (nextProcessor != null) nextProcessor.closeResource();
nextProcessor = null;
}
}