Skip to content

Commit

Permalink
Merge pull request #74 from kestra-io/feat/recursive_listing
Browse files Browse the repository at this point in the history
feat: add recursive listing option
  • Loading branch information
Martin authored Sep 27, 2023
2 parents 01caca1 + 9e7ae2c commit b376f08
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 14 deletions.
11 changes: 9 additions & 2 deletions src/main/java/io/kestra/plugin/fs/vfs/Downloads.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import org.apache.commons.vfs2.impl.StandardFileSystemManager;
import org.slf4j.Logger;

import javax.validation.constraints.NotNull;
import java.net.URI;
import java.util.stream.Collectors;
import javax.validation.constraints.NotNull;

import static io.kestra.core.utils.Rethrow.throwFunction;

Expand Down Expand Up @@ -49,6 +49,12 @@ public abstract class Downloads extends AbstractVfsTask implements RunnableTask<
@PluginProperty(dynamic = true)
private String regExp;

@Schema(
title = "List file recursively"
)
@Builder.Default
private boolean recursive = false;

public Output run(RunContext runContext) throws Exception {
Logger logger = runContext.logger();

Expand All @@ -66,7 +72,8 @@ public Output run(RunContext runContext) throws Exception {
fsm,
fileSystemOptions,
this.uri(runContext, this.from),
this.regExp
this.regExp,
recursive
);

java.util.List<io.kestra.plugin.fs.vfs.models.File> files = run
Expand Down
9 changes: 8 additions & 1 deletion src/main/java/io/kestra/plugin/fs/vfs/List.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ public abstract class List extends AbstractVfsTask implements RunnableTask<List.
@PluginProperty(dynamic = true)
private String regExp;

@Schema(
title = "List file recursively"
)
@Builder.Default
private boolean recursive = false;

public Output run(RunContext runContext) throws Exception {
try (StandardFileSystemManager fsm = new StandardFileSystemManager()) {
fsm.init();
Expand All @@ -39,7 +45,8 @@ public Output run(RunContext runContext) throws Exception {
fsm,
this.fsOptions(runContext),
this.uri(runContext, this.from),
this.regExp
this.regExp,
this.recursive
);
}
}
Expand Down
17 changes: 11 additions & 6 deletions src/main/java/io/kestra/plugin/fs/vfs/Trigger.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package io.kestra.plugin.fs.vfs;

import io.kestra.core.exceptions.IllegalVariableEvaluationException;
import io.kestra.core.models.annotations.Example;
import io.kestra.core.models.annotations.Plugin;
import io.kestra.core.models.annotations.PluginProperty;
import io.kestra.core.models.conditions.ConditionContext;
import io.kestra.core.models.executions.Execution;
Expand All @@ -13,8 +11,6 @@
import io.kestra.core.models.triggers.TriggerContext;
import io.kestra.core.models.triggers.TriggerOutput;
import io.kestra.core.runners.RunContext;
import io.kestra.core.utils.IdUtils;
import io.kestra.plugin.fs.sftp.SftpInterface;
import io.kestra.plugin.fs.vfs.models.File;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
Expand All @@ -25,12 +21,12 @@
import org.apache.commons.vfs2.impl.StandardFileSystemManager;
import org.slf4j.Logger;

import javax.validation.constraints.NotNull;
import java.io.IOException;
import java.net.URI;
import java.time.Duration;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.validation.constraints.NotNull;

import static io.kestra.core.utils.Rethrow.throwFunction;

Expand Down Expand Up @@ -76,8 +72,16 @@ public abstract class Trigger extends AbstractTrigger implements PollingTriggerI
@PluginProperty(dynamic = true)
private String regExp;

@Schema(
title = "List file recursively"
)
@Builder.Default
private boolean recursive = false;

abstract public String getPort();

abstract protected FileSystemOptions fsOptions(RunContext runContext) throws IllegalVariableEvaluationException, IOException;

abstract protected String scheme();

@Override
Expand Down Expand Up @@ -107,7 +111,8 @@ public Optional<Execution> evaluate(ConditionContext conditionContext, TriggerCo
fsm,
fileSystemOptions,
from,
this.regExp
this.regExp,
this.recursive
);
} catch (FileNotFolderException fileNotFolderException) {
logger.debug("From path doesn't exist '{}'", String.join(", ", fileNotFolderException.getInfo()));
Expand Down
29 changes: 24 additions & 5 deletions src/main/java/io/kestra/plugin/fs/vfs/VfsService.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSystemOptions;
import org.apache.commons.vfs2.Selectors;
import org.apache.commons.vfs2.*;
import org.apache.commons.vfs2.impl.StandardFileSystemManager;
import org.apache.commons.vfs2.provider.AbstractFileObject;

Expand All @@ -17,6 +15,7 @@
import java.net.URI;
import java.net.URISyntaxException;
import java.util.NoSuchElementException;
import java.util.Objects;
import java.util.stream.Collectors;
import java.util.stream.Stream;

Expand Down Expand Up @@ -88,10 +87,30 @@ public static List.Output list(
StandardFileSystemManager fsm,
FileSystemOptions fileSystemOptions,
URI from,
String regExp
String regExp,
boolean recursive
) throws Exception {
try (FileObject local = fsm.resolveFile(from.toString(), fileSystemOptions)) {
FileObject[] children = local.getChildren();
FileObject[] children = local.findFiles(new FileSelector() {
@Override
public boolean traverseDescendents(FileSelectInfo file) {
// if not recursive only traverse "from"
return recursive || Objects.equals(file.getFile().getName().getPath(), local.getName().getPath());
}

@Override
public boolean includeFile(FileSelectInfo file) throws Exception {
// Do not include directories in the result and apply user's filter
return file.getFile().isFile()
&& (regExp == null || file.getFile().getName().getPath().matches(regExp));
}
});

if (children == null) {
return List.Output.builder()
.files(java.util.List.of())
.build();
}

java.util.List<File> list = Stream.of(children)
.map(throwFunction(r -> File.of((AbstractFileObject<?>) r)))
Expand Down
29 changes: 29 additions & 0 deletions src/test/java/io/kestra/plugin/fs/ftp/ListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ void all() throws Exception {
for (int i = 0; i < 6; i++) {
lastFile = IdUtils.create();
ftpUtils.upload("upload" + dir + "/" + lastFile + ".yaml");
ftpUtils.upload("upload" + dir + "/subfolder/" + lastFile + ".yaml");
}
ftpUtils.upload("upload" + dir + "/file with space.yaml");

Expand All @@ -52,5 +53,33 @@ void all() throws Exception {
run = task.run(TestsUtils.mockRunContext(runContextFactory, task, ImmutableMap.of()));

assertThat(run.getFiles().size(), is(1));

task = List.builder()
.id(ListTest.class.getSimpleName())
.type(ListTest.class.getName())
.from("/upload" + dir)
.host("localhost")
.port("6621")
.username("guest")
.password("guest")
.recursive(true).build();

run = task.run(TestsUtils.mockRunContext(runContextFactory, task, ImmutableMap.of()));

assertThat(run.getFiles().size(), is(13));

task = List.builder()
.id(ListTest.class.getSimpleName())
.type(ListTest.class.getName())
.from("/" + dir)
.host("localhost")
.port("6621")
.username("guest")
.password("guest")
.recursive(true).build();

run = task.run(TestsUtils.mockRunContext(runContextFactory, task, ImmutableMap.of()));

assertThat(run.getFiles().size(), is(0));
}
}
Empty file modified src/test/resources/ssh/setpasswd.sh
100644 → 100755
Empty file.

0 comments on commit b376f08

Please sign in to comment.