com.alogic.s3.S3BucketExist 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.BaseException;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.exception.ExceptionUtils;
/**
* Bucket exists
*
* @since 1.6.16.6
*/
public class S3BucketExist extends S3Client.Operation{
protected String $name;
public S3BucketExist(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Properties props){
super.configure(props);
$name = PropertiesConstants.getRaw(props,"name",NULL);
}
@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;
}
try {
result = client.doesBucketExistV2(name);
} catch (Exception ex) {
log(ExceptionUtils.getStackTrace(ex), "error");
throw new BaseException("core.e1003", ex.getMessage());
}
}finally {
PropertiesConstants.setBoolean(ctx,id,result);
}
}
}