blob: f3c92b7d5d5201f1b3db1b5df205c486d6bd0550 [file] [log] [blame]
package org.apache.ambari.infra.job.archive;
import static org.apache.commons.lang.StringUtils.isNotBlank;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import org.apache.ambari.infra.conf.security.CompositeSecret;
import org.apache.ambari.infra.conf.security.S3Secrets;
import org.apache.ambari.infra.conf.security.Secret;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.xmlpull.v1.XmlPullParserException;
import io.minio.MinioClient;
import io.minio.errors.ErrorResponseException;
import io.minio.errors.InsufficientDataException;
import io.minio.errors.InternalException;
import io.minio.errors.InvalidArgumentException;
import io.minio.errors.InvalidBucketNameException;
import io.minio.errors.InvalidEndpointException;
import io.minio.errors.InvalidPortException;
import io.minio.errors.NoResponseException;
import io.minio.errors.RegionConflictException;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
public class S3Uploader extends AbstractFileAction {
private static final Logger logger = LogManager.getLogger(S3Uploader.class);
private final MinioClient client;
private final String keyPrefix;
private final String bucketName;
private final Secret s3AccessKey;
private final Secret s3SecretKey;
public S3Uploader(S3Properties s3Properties, S3Secrets s3Secrets) {
logger.info("Initializing S3 client with " + s3Properties);
this.keyPrefix = s3Properties.getS3KeyPrefix();
this.bucketName = s3Properties.getS3BucketName();
if (isNotBlank(s3Properties.getS3AccessFile())) {
this.s3AccessKey = new CompositeSecret(s3Secrets.getS3AccessKeyId(), S3AccessCsv.file(s3Properties.getS3AccessFile(), "Access key ID"));
this.s3SecretKey = new CompositeSecret(s3Secrets.getS3SecretAccessKey(), S3AccessCsv.file(s3Properties.getS3AccessFile(), "Secret access key"));
}
else {
this.s3AccessKey = s3Secrets.getS3AccessKeyId();
this.s3SecretKey = s3Secrets.getS3SecretAccessKey();
}
try {
client = new MinioClient(s3Properties.getS3EndPoint(),
s3AccessKey.get().orElseThrow(() -> new IllegalArgumentException("Access key Id is not present!")),
s3SecretKey.get().orElseThrow(() -> new IllegalArgumentException("Secret Access Key is not present!")));
if (!client.bucketExists(bucketName))
client.makeBucket(bucketName);
} catch (RegionConflictException | XmlPullParserException | InvalidBucketNameException | NoSuchAlgorithmException | InsufficientDataException | ErrorResponseException | InvalidKeyException | NoResponseException | InvalidPortException | InvalidEndpointException | InternalException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
@Override
public File onPerform(File inputFile) {
String key = keyPrefix + inputFile.getName();
try {
if (client.listObjects(bucketName, key).iterator().hasNext()) {
throw new UnsupportedOperationException(String.format("Object '%s' already exists in bucket '%s'", key, bucketName));
}
try (FileInputStream fileInputStream = new FileInputStream(inputFile)) {
client.putObject(bucketName, key, fileInputStream, inputFile.length(), "application/json");
return inputFile;
}
} catch (InvalidKeyException | NoSuchAlgorithmException | NoResponseException | XmlPullParserException | InvalidArgumentException | InvalidBucketNameException | ErrorResponseException | InternalException | InsufficientDataException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
}