-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
139 changed files
with
1,942 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: [cryptomator] | ||
custom: https://cryptomator.org/sponsors/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 112 additions & 0 deletions
112
data/src/main/java/org/cryptomator/data/cloud/pcloud/PCloudApiError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
package org.cryptomator.data.cloud.pcloud; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
|
||
public class PCloudApiError { | ||
|
||
public static final HashSet<Integer> ignoreExistsSet = new HashSet<>( // | ||
Arrays.asList( // | ||
PCloudApiErrorCodes.COMPONENT_OF_PARENT_DIRECTORY_DOES_NOT_EXIST.getValue(), // | ||
PCloudApiErrorCodes.FILE_NOT_FOUND.getValue(), // | ||
PCloudApiErrorCodes.FILE_OR_FOLDER_NOT_FOUND.getValue(), // | ||
PCloudApiErrorCodes.DIRECTORY_DOES_NOT_EXIST.getValue(), // | ||
PCloudApiErrorCodes.INVALID_FILE_OR_FOLDER_NAME.getValue() // | ||
)); | ||
public static final HashSet<Integer> ignoreMoveSet = new HashSet<>( // | ||
Arrays.asList( // | ||
PCloudApiErrorCodes.FILE_OR_FOLDER_ALREADY_EXISTS.getValue(), // | ||
PCloudApiErrorCodes.COMPONENT_OF_PARENT_DIRECTORY_DOES_NOT_EXIST.getValue(), // | ||
PCloudApiErrorCodes.FILE_NOT_FOUND.getValue(), // | ||
PCloudApiErrorCodes.FILE_OR_FOLDER_NOT_FOUND.getValue(), // | ||
PCloudApiErrorCodes.DIRECTORY_DOES_NOT_EXIST.getValue() // | ||
) // | ||
); | ||
|
||
public static boolean isCloudNodeAlreadyExistsException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.FILE_OR_FOLDER_ALREADY_EXISTS.getValue(); | ||
} | ||
|
||
public static boolean isFatalBackendException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.INTERNAL_UPLOAD_ERROR.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.INTERNAL_UPLOAD_ERROR.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.UPLOAD_NOT_FOUND.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.TRANSFER_NOT_FOUND.getValue(); | ||
} | ||
|
||
public static boolean isForbiddenException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.ACCESS_DENIED.getValue(); | ||
} | ||
|
||
public static boolean isNetworkConnectionException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.CONNECTION_BROKE.getValue(); | ||
} | ||
|
||
public static boolean isNoSuchCloudFileException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.COMPONENT_OF_PARENT_DIRECTORY_DOES_NOT_EXIST.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.FILE_NOT_FOUND.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.FILE_OR_FOLDER_NOT_FOUND.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.DIRECTORY_DOES_NOT_EXIST.getValue(); | ||
} | ||
|
||
public static boolean isWrongCredentialsException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.INVALID_ACCESS_TOKEN.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.ACCESS_TOKEN_REVOKED.getValue(); | ||
} | ||
|
||
public static boolean isUnauthorizedException(int errorCode) { | ||
return errorCode == PCloudApiErrorCodes.LOGIN_FAILED.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.LOGIN_REQUIRED.getValue() // | ||
|| errorCode == PCloudApiErrorCodes.TOO_MANY_LOGIN_TRIES_FROM_IP.getValue(); | ||
} | ||
|
||
public enum PCloudApiErrorCodes { | ||
LOGIN_REQUIRED(1000), // | ||
NO_FULL_PATH_OR_NAME_FOLDER_ID_PROVIDED(1001), // | ||
NO_FULL_PATH_OR_FOLDER_ID_PROVIDED(1002), // | ||
NO_FILE_ID_OR_PATH_PROVIDED(1004), // | ||
INVALID_DATE_TIME_FORMAT(1013), // | ||
NO_DESTINATION_PROVIDED(1016), // | ||
INVALID_FOLDER_ID(1017), // | ||
INVALID_DESTINATION(1037), // | ||
PROVIDE_URL(1040), // | ||
UPLOAD_NOT_FOUND(1900), // | ||
TRANSFER_NOT_FOUND(1902), // | ||
LOGIN_FAILED(2000), // | ||
INVALID_FILE_OR_FOLDER_NAME(2001), // | ||
COMPONENT_OF_PARENT_DIRECTORY_DOES_NOT_EXIST(2002), // | ||
ACCESS_DENIED(2003), // | ||
FILE_OR_FOLDER_ALREADY_EXISTS(2004), // | ||
DIRECTORY_DOES_NOT_EXIST(2005), // | ||
FOLDER_NOT_EMPTY(2006), // | ||
CANNOT_DELETE_ROOT_FOLDER(2007), // | ||
USER_OVER_QUOTA(2008), // | ||
FILE_NOT_FOUND(2009), // | ||
INVALID_PATH(2010), // | ||
SHARED_FOLDER_IN_SHARED_FOLDER(2023), // | ||
ACTIVE_SHARES_OR_SHAREREQUESTS_PRESENT(2028), // | ||
CONNECTION_BROKE(2041), // | ||
CANNOT_RENAME_ROOT_FOLDER(2042), // | ||
CANNOT_MOVE_FOLDER_INTO_SUBFOLDER_OF_ITSELF(2043), // | ||
FILE_OR_FOLDER_NOT_FOUND(2055), // | ||
NO_FILE_UPLOAD_DETECTED(2088), // | ||
INVALID_ACCESS_TOKEN(2094), // | ||
ACCESS_TOKEN_REVOKED(2095), // | ||
TRANSFER_OVER_QUOTA(2097), // | ||
TARGET_FOLDER_DOES_NOT_EXIST(2208), // | ||
TOO_MANY_LOGIN_TRIES_FROM_IP(4000), // | ||
INTERNAL_ERROR(5000), // | ||
INTERNAL_UPLOAD_ERROR(5001); | ||
|
||
private final int value; | ||
|
||
PCloudApiErrorCodes(final int newValue) { | ||
value = newValue; | ||
} | ||
|
||
public int getValue() { | ||
return value; | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.