org.graylog.aws.s3.S3Reader Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog.aws.s3;
import com.amazonaws.regions.Region;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import com.amazonaws.services.s3.model.S3Object;
import okhttp3.HttpUrl;
import org.apache.commons.io.IOUtils;
import org.graylog.aws.auth.AWSAuthProvider;
import org.graylog.aws.config.Proxy;
import org.graylog2.plugin.Tools;
import java.io.IOException;
public class S3Reader {
private final AmazonS3 client;
public S3Reader(Region region, HttpUrl proxyUrl, AWSAuthProvider authProvider) {
AmazonS3ClientBuilder clientBuilder = AmazonS3ClientBuilder.standard().withRegion(region.getName()).withCredentials(authProvider);
if(proxyUrl != null) {
clientBuilder.withClientConfiguration(Proxy.forAWS(proxyUrl));
}
this.client = clientBuilder.build();
}
public String readCompressed(String bucket, String key) throws IOException {
S3Object o = this.client.getObject(bucket, key);
if (o == null) {
throw new RuntimeException("Could not get S3 object from bucket [" + bucket + "].");
}
byte[] bytes = IOUtils.toByteArray(o.getObjectContent());
return Tools.decompressGzip(bytes);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy