Skip to content

Commit

Permalink
fix(core): now creating each sub-directory in the path recursively up…
Browse files Browse the repository at this point in the history
…on creating a resource or directory for listing to work properly
  • Loading branch information
brian-mulier-p committed Nov 8, 2023
1 parent 45cd541 commit 470b5b9
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions src/main/java/io/kestra/storage/s3/S3Storage.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private InputStream get(String path) throws IOException {
@Override
public List<FileAttributes> list(String tenantId, URI uri) throws IOException {
String path = getPath(tenantId, uri);
String prefix = (path.endsWith("/")) ? path : path + "/";
String prefix = path.endsWith("/") ? path : path + "/";
try {
ListObjectsV2Request request = ListObjectsV2Request.builder()
.bucket(s3Config.getBucket())
Expand Down Expand Up @@ -161,7 +161,8 @@ private FileAttributes getFileAttributes(String path) throws IOException {
.key(path)
.build();
S3FileAttributes.S3FileAttributesBuilder builder = S3FileAttributes.builder()
.fileName(Path.of(path).getFileName().toString())
.fileName(Optional.ofNullable(Path.of(path).getFileName()).map(Path::toString)
.orElse("/"))
.head(s3Client.headObject(headObjectRequest));
if (path.endsWith("/")) {
builder.isDirectory(true);
Expand Down Expand Up @@ -230,16 +231,19 @@ public URI createDirectory(String tenantId, URI uri) throws IOException {
}

private void mkdirs(String path) throws IOException {
path = path.replaceAll("^/*", "");
String[] directories = path.split("/");
StringBuilder aggregatedPath = new StringBuilder("/");
try {
if (!path.endsWith("/") && path.lastIndexOf('/') > 0) {
path = path.substring(0, path.lastIndexOf('/') + 1);
// perform 1 put request per parent directory in the path
for (int i = 0; i <= directories.length - (path.endsWith("/") ? 1 : 2); i++) {
aggregatedPath.append(directories[i]).append("/");
PutObjectRequest putRequest = PutObjectRequest.builder()
.bucket(s3Config.getBucket())
.key(aggregatedPath.toString())
.build();
s3Client.putObject(putRequest, RequestBody.empty());
}

PutObjectRequest putRequest = PutObjectRequest.builder()
.bucket(s3Config.getBucket())
.key(path)
.build();
s3Client.putObject(putRequest, RequestBody.empty());
} catch (AwsServiceException | SdkClientException exception) {
throw new IOException(exception);
}
Expand Down Expand Up @@ -332,11 +336,20 @@ public List<URI> deleteByPrefix(String tenantId, URI storagePrefix) throws IOExc
}

private String getPath(String tenantId, URI uri) {
if (uri == null) {
return "/";
}

parentTraversalGuard(uri);
String path = uri.getPath();
if (!path.startsWith("/")) {
path = "/" + path;
}

if (tenantId == null) {
return uri.getPath();
return path;
}
return "/" + tenantId + uri.getPath();
return "/" + tenantId + path;
}

// Traversal does not work with s3 but it just return empty objects so throwing is more explicit
Expand Down

0 comments on commit 470b5b9

Please sign in to comment.