We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93ac95b commit 9ff3824Copy full SHA for 9ff3824
opal-core-ws/src/main/java/org/obiba/opal/web/FilesResource.java
@@ -97,9 +97,13 @@ public Response getFileSystemRootDetails() throws IOException {
97
@NoAuthorization
98
public Response getFileDetails(@PathParam("path") String path) throws IOException {
99
FileObject file = resolveFileInFileSystem(path);
100
- return file.exists()
101
- ? file.getType() == FileType.FILE ? getFileDetails(file) : getFolderDetails(file)
102
- : getPathNotExistResponse("/" + path);
+ if (!file.getParent().isReadable() || !file.exists()) {
+ return getPathNotExistResponse("/" + path);
+ }
103
+ if (file.getType() == FileType.FILE) {
104
+ return file.isReadable() ? getFileDetails(file) : getPathNotExistResponse("/" + path);
105
106
+ return getFolderDetails(file);
107
}
108
109
@GET
0 commit comments