Skip to content

Commit 9ff3824

Browse files
authored
fix: file not found when not readable or parent not readable (#3985)
1 parent 93ac95b commit 9ff3824

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

opal-core-ws/src/main/java/org/obiba/opal/web/FilesResource.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,13 @@ public Response getFileSystemRootDetails() throws IOException {
9797
@NoAuthorization
9898
public Response getFileDetails(@PathParam("path") String path) throws IOException {
9999
FileObject file = resolveFileInFileSystem(path);
100-
return file.exists()
101-
? file.getType() == FileType.FILE ? getFileDetails(file) : getFolderDetails(file)
102-
: getPathNotExistResponse("/" + path);
100+
if (!file.getParent().isReadable() || !file.exists()) {
101+
return getPathNotExistResponse("/" + path);
102+
}
103+
if (file.getType() == FileType.FILE) {
104+
return file.isReadable() ? getFileDetails(file) : getPathNotExistResponse("/" + path);
105+
}
106+
return getFolderDetails(file);
103107
}
104108

105109
@GET

0 commit comments

Comments
 (0)