Skip to content

Commit d3c39e4

Browse files
Merge pull request #5 from SendSafely/v3.1.0
v3.1.0
2 parents 20ac376 + 474c5a1 commit d3c39e4

12 files changed

+637
-17
lines changed

SendSafelyAPI/src/com/sendsafely/SendSafely.java

+11-5
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ public class SendSafely {
147147

148148
protected double version = 0.3;
149149

150+
private boolean ec2Proxy = false;
151+
150152
/**
151153
* @description Constructor to create a new SendSafely object.
152154
* @param host The hostname you use to access SendSafely. Should be https://companyname.sendsafely.com or https://www.sendsafely.com
@@ -216,6 +218,10 @@ public SendSafely(String host) {
216218
this(host, (ConnectionManager)null, (CredentialsManager)null);
217219
}
218220

221+
public void setEc2Proxy (boolean isProxy) {
222+
this.ec2Proxy = isProxy;
223+
}
224+
219225
/**
220226
* @description Add Contact Group as a recipient on a package.
221227
* @param packageId The unique package id of the package for the add the Contact Group operation.
@@ -435,7 +441,7 @@ public void deletePackage(String packageId) throws DeletePackageException
435441
*/
436442
public java.io.File downloadFile(String packageId, String fileId, String keyCode) throws DownloadFileException, PasswordRequiredException
437443
{
438-
return downloadFile(packageId, fileId, keyCode, null, (String)null);
444+
return downloadFile(packageId, fileId, keyCode, new DefaultProgress());
439445
}
440446

441447
/**
@@ -452,7 +458,7 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
452458
public java.io.File downloadFile(String packageId, String fileId, String keyCode, ProgressInterface progress) throws DownloadFileException, PasswordRequiredException
453459
{
454460
DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler(uploadManager);
455-
return handler.makeRequest(packageId, null, fileId, keyCode, progress, null);
461+
return handler.makeRequestS3(packageId, null, fileId, keyCode, progress, null, ec2Proxy);
456462
}
457463

458464
/**
@@ -485,7 +491,6 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
485491
return handler.makeRequest(packageId, null, fileId, keyCode, progress, password);
486492
}
487493

488-
489494
/**
490495
* @description Downloads a file from the server and decrypts it.
491496
* @param packageId The unique package id of the package for the file download operation.
@@ -499,7 +504,8 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
499504
*/
500505
public java.io.File downloadFile(String packageId, String fileId, String keyCode, String password) throws DownloadFileException, PasswordRequiredException
501506
{
502-
return downloadFile(packageId, fileId, keyCode, null, password);
507+
DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler(uploadManager);
508+
return handler.makeRequest(packageId, null, fileId, keyCode, null, password);
503509
}
504510

505511
/**
@@ -531,7 +537,7 @@ public java.io.File downloadFileFromDirectory(String packageId, String directory
531537
*/
532538
public java.io.File downloadFileFromDirectory(String packageId, String directoryId, String fileId, String keyCode, ProgressInterface progress) throws DownloadFileException, PasswordRequiredException {
533539
DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler(uploadManager);
534-
return handler.makeRequest(packageId, directoryId, fileId, keyCode, progress);
540+
return handler.makeRequestS3(packageId, directoryId, fileId, keyCode, progress, (String)null, ec2Proxy);
535541
}
536542

537543
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package com.sendsafely.dto.request;
2+
3+
import com.sendsafely.enums.GetParam;
4+
import com.sendsafely.enums.HTTPMethod;
5+
import com.sendsafely.json.JsonManager;
6+
7+
public class GetDownloadUrlsFromDirectoryRequest extends BaseRequest {
8+
9+
private HTTPMethod method = HTTPMethod.POST;
10+
private String path = "/package/" + GetParam.PACKAGE_ID + "/directory/" + GetParam.DIRECTORY_ID + "/file/" + GetParam.FILE_ID + "/download-urls/";
11+
12+
public GetDownloadUrlsFromDirectoryRequest(JsonManager jsonManager){
13+
initialize(jsonManager, method, path);
14+
}
15+
16+
public void setPackageId(String packageId) {
17+
super.setGetParam(GetParam.PACKAGE_ID, packageId);
18+
}
19+
20+
public void setFileId(String fileId) {
21+
super.setGetParam(GetParam.FILE_ID, fileId);
22+
}
23+
24+
public void setDirectoryId(String directoryId){
25+
super.setGetParam(GetParam.DIRECTORY_ID, directoryId);
26+
}
27+
28+
public void setStartSegment(int start) {
29+
super.setPostParam("startSegment", start);
30+
}
31+
32+
public void setEndSegment(int end) {
33+
super.setPostParam("endSegment", end);
34+
}
35+
public void setPackageCode(String packageCode){
36+
super.setPostParam("packageCode", packageCode);
37+
}
38+
public void setChecksum(String checksum){
39+
super.setPostParam("checksum", checksum);
40+
}
41+
public void setForceProxy(boolean forceProxy){
42+
super.setPostParam("forceProxy", forceProxy);
43+
}
44+
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package com.sendsafely.dto.request;
2+
3+
import com.sendsafely.enums.GetParam;
4+
import com.sendsafely.enums.HTTPMethod;
5+
import com.sendsafely.json.JsonManager;
6+
7+
public class GetDownloadUrlsRequest extends BaseRequest {
8+
9+
private HTTPMethod method = HTTPMethod.POST;
10+
private String path = "/package/" + GetParam.PACKAGE_ID + "/file/" + GetParam.FILE_ID + "/download-urls/";
11+
12+
public GetDownloadUrlsRequest(JsonManager jsonManager){
13+
initialize(jsonManager, method, path);
14+
}
15+
16+
public void setPackageId(String packageId) {
17+
super.setGetParam(GetParam.PACKAGE_ID, packageId);
18+
}
19+
20+
public void setFileId(String fileId) {
21+
super.setGetParam(GetParam.FILE_ID, fileId);
22+
}
23+
24+
public void setStartSegment(int start) {
25+
super.setPostParam("startSegment", start);
26+
}
27+
28+
public void setEndSegment(int end) {
29+
super.setPostParam("endSegment", end);
30+
}
31+
32+
public void setChecksum(String checksum){
33+
super.setPostParam("checksum", checksum);
34+
}
35+
public void setForceProxy(boolean forceProxy){
36+
super.setPostParam("forceProxy", forceProxy);
37+
}
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package com.sendsafely.dto.response;
2+
3+
import java.util.List;
4+
import java.util.Map;
5+
6+
public class GetDownloadUrlsResponse extends BaseResponse {
7+
8+
private List<Map<String, String>> downloadUrls;
9+
10+
public List<Map<String, String>> getDownloadUrls() {
11+
return downloadUrls;
12+
}
13+
14+
public void setDownloadUrls(List<Map<String, String>> downloadUrls) {
15+
this.downloadUrls = downloadUrls;
16+
}
17+
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package com.sendsafely.exceptions;
2+
3+
public class GetDownloadUrlsException extends Exception {
4+
5+
/**
6+
*
7+
*/
8+
private static final long serialVersionUID = 1L;
9+
10+
String error;
11+
12+
public GetDownloadUrlsException(Exception e) {
13+
super(e);
14+
error = e.getMessage();
15+
}
16+
17+
public GetDownloadUrlsException(String err){
18+
super(err);
19+
error = err;
20+
}
21+
22+
}

0 commit comments

Comments
 (0)