Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update getFolders() method name, added recursion feature #7

Merged
merged 1 commit into from
Aug 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 39 additions & 14 deletions src/main/java/org/aarboard/nextcloud/api/NextcloudConnector.java
Original file line number Diff line number Diff line change
Expand Up @@ -535,12 +535,37 @@ public CompletableFuture<GroupsXMLAnswer> getGroupsAsync(String search, int limi
*
* @param path path of the folder
* @return found subfolders
* @deprecated The methods naming is somehow misleading, as it lists all resources (subfolders and files) within the given {@code rootPath}. Please use {@link #listFolderContent(String)} instead.
*/
@Deprecated
public List<String> getFolders(String path)
{
return fd.getFolders(path);
}

/**
* Get all subfolders of the specified path
*
* @param path path of the folder
* @return found subfolders
*/
public List<String> listFolderContent(String path)
{
return fd.listFolderContent(path);
}

/**
* List all file names and subfolders of the specified path traversing into subfolders to the given depth.
*
* @param path path of the folder
* @param depth depth of recursion while listing folder contents
* @return found file names and subfolders
*/
public List<String> listFolderContent(String path, int depth)
{
return fd.listFolderContent(path, depth);
}

/**
* Checks if the folder at the specified path exists
*
Expand Down Expand Up @@ -595,16 +620,16 @@ public Share doShare(
}

/**
* Shares the specified path with the provided parameters asynchronously
*
* @param path path to the file/folder which should be shared
* @param shareType 0 = user; 1 = group; 3 = public link; 6 = federated cloud share
* @param shareWithUserOrGroupId user / group id with which the file should be shared
* @param publicUpload allow public upload to a public shared folder (true/false)
* @param password password to protect public link Share with
* @param permissions 1 = read; 2 = update; 4 = create; 8 = delete; 16 = share; 31 = all (default: 31, for public shares: 1)
* @return a CompletableFuture containing the result of the operation
*/
* Shares the specified path with the provided parameters asynchronously
*
* @param path path to the file/folder which should be shared
* @param shareType 0 = user; 1 = group; 3 = public link; 6 = federated cloud share
* @param shareWithUserOrGroupId user / group id with which the file should be shared
* @param publicUpload allow public upload to a public shared folder (true/false)
* @param password password to protect public link Share with
* @param permissions 1 = read; 2 = update; 4 = create; 8 = delete; 16 = share; 31 = all (default: 31, for public shares: 1)
* @return a CompletableFuture containing the result of the operation
*/
public CompletableFuture<SingleShareXMLAnswer> doShareAsync(
String path,
ShareType shareType,
Expand Down Expand Up @@ -659,10 +684,10 @@ public CompletableFuture<SharesXMLAnswer> getSharesAsync()
}

/** Uploads a file at the specified path with the data from the InputStream
*
* @param inputStream InputStream of the file which should be uploaded
* @param remotePath path where the file should be uploaded to
*/
*
* @param inputStream InputStream of the file which should be uploaded
* @param remotePath path where the file should be uploaded to
*/
public void uploadFile(InputStream inputStream, String remotePath)
{
fl.uploadFile(inputStream, remotePath);
Expand Down
41 changes: 34 additions & 7 deletions src/main/java/org/aarboard/nextcloud/api/webdav/Folders.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Copyright (C) 2017 a.schild
*
* This program is free software: you can redistribute it and/or modify
Expand All @@ -16,16 +16,17 @@
*/
package org.aarboard.nextcloud.api.webdav;

import com.github.sardine.DavResource;
import com.github.sardine.Sardine;
import com.github.sardine.SardineFactory;

import java.io.IOException;
import java.util.LinkedList;
import java.util.List;

import org.aarboard.nextcloud.api.ServerConfig;
import org.aarboard.nextcloud.api.exception.NextcloudApiException;

import com.github.sardine.DavResource;
import com.github.sardine.Sardine;
import com.github.sardine.SardineFactory;

/**
*
* @author a.schild
Expand All @@ -45,17 +46,43 @@ public Folders(ServerConfig _serverConfig) {
*
* @param rootPath path of the folder
* @return found subfolders
*
* @deprecated The methods naming is somehow misleading, as it lists all resources (subfolders and files) within the given {@code rootPath}. Please use {@link #listFolderContent(String)} instead.
*/
@Deprecated
public List<String> getFolders(String rootPath)
{
String path= (_serverConfig.isUseHTTPS() ? "https" : "http") +"://"+_serverConfig.getServerName()+"/"+WEB_DAV_BASE_PATH+rootPath ;
return listFolderContent(rootPath);
}

/**
* List all file names and subfolders of the specified path
*
* @param path path of the folder
* @return found file names and subfolders
*/
public List<String> listFolderContent(String path)
{
return listFolderContent(path, 1);
}

/**
* List all file names and subfolders of the specified path traversing into subfolders to the given depth.
*
* @param path path of the folder
* @param depth depth of recursion while listing folder contents
* @return found file names and subfolders
*/
public List<String> listFolderContent(String path, int depth)
{
String url = (_serverConfig.isUseHTTPS() ? "https" : "http") +"://"+_serverConfig.getServerName()+"/"+WEB_DAV_BASE_PATH+path ;

List<String> retVal= new LinkedList<>();
Sardine sardine = SardineFactory.begin();
sardine.setCredentials(_serverConfig.getUserName(), _serverConfig.getPassword());
List<DavResource> resources;
try {
resources = sardine.list(path);
resources = sardine.list(url, depth);
} catch (IOException e) {
throw new NextcloudApiException(e);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Copyright (C) 2017 a.schild
*
* This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -354,4 +354,44 @@ public void t27_testRemoveFile() {
_nc.removeFile(TESTFILE);
}
}

@Test
public void t28_testList() {
System.out.println("list");

if (_nc != null)
{
//prepare
_nc.createFolder(TEST_FOLDER);

String rootPath = "";
List<String> result = _nc.listFolderContent(rootPath);

//cleanup
_nc.deleteFolder(TEST_FOLDER);

assertNotNull(result);
assertTrue(result.contains(TEST_FOLDER));
}
}

@Test
public void t29_testListRecursive() {
System.out.println("list recursive");
if (_nc != null)
{
//prepare
_nc.createFolder(TEST_FOLDER);
_nc.createFolder(TEST_FOLDER+"/"+TEST_FOLDER+"_sub");

String rootPath = "";
List<String> result = _nc.listFolderContent(rootPath, 2);

//cleanup
_nc.deleteFolder(TEST_FOLDER);

assertNotNull(result);
assertTrue(result.contains(TEST_FOLDER+"_sub"));
}
}
}