com.alogic.s3.S3Exist Maven / Gradle / Ivy
package com.alogic.s3;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.alogic.xscript.doc.XsObject;
import com.amazonaws.services.s3.AmazonS3;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;
import org.apache.commons.lang3.StringUtils;
/**
* 检测对象是否存在
*
* @since 1.6.16.8
*/
public class S3Exist extends S3Client.Operation{
protected String $name;
protected String $path;
protected String cid = S3Metadata.CONTEXT_ID;
public S3Exist(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Properties props){
super.configure(props);
$name = PropertiesConstants.getRaw(props,"name",NULL);
$path = PropertiesConstants.getRaw(props,"path",NULL);
cid = PropertiesConstants.getString(props,"cid",cid);
}
@Override
protected void onExecute(AmazonS3 client, XsObject root, XsObject current, LogicletContext ctx, ExecuteWatcher watcher) {
boolean result = false;
try {
String name = PropertiesConstants.transform(ctx, $name, NULL);
if (StringUtils.isEmpty(name)) {
log("Bucket name is empty", "error");
return;
}
String path = PropertiesConstants.transform(ctx,$path,NULL);
if (StringUtils.isEmpty(path)){
log("Object path is empty", "error");
return;
}
try {
result = client.doesObjectExist(name,path);
}catch (Exception ex) {
log(ex.getMessage(), "error");
}
}finally {
PropertiesConstants.setBoolean(ctx,id,result);
}
}
}