-
Notifications
You must be signed in to change notification settings - Fork 92
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
Handle user disabled exception as its own result code #1215
base: master
Are you sure you want to change the base?
Conversation
29df43f
c30fb8e
to
29df43f
Compare
29df43f
to
acd94f3
Compare
acd94f3
to
fb2260e
Compare
/rebase |
fb2260e
to
0681669
Compare
0681669
to
17843e1
Compare
library/src/main/java/com/owncloud/android/lib/common/operations/ExceptionParser.java
Outdated
Show resolved
Hide resolved
library/src/main/java/com/owncloud/android/lib/common/operations/ExceptionParser.java
Outdated
Show resolved
Hide resolved
17843e1
to
9c4d46d
Compare
9c4d46d
to
6e70857
Compare
6e70857
to
353b9f5
Compare
2428067
353b9f5
to
2428067
Compare
2428067
to
d46ecea
Compare
1 similar comment
Signed-off-by: tobiasKaminsky <[email protected]>
d46ecea
to
71557b9
Compare
Signed-off-by: tobiasKaminsky <[email protected]>
Signed-off-by: tobiasKaminsky <[email protected]>
Signed-off-by: tobiasKaminsky <[email protected]>
Signed-off-by: tobiasKaminsky <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1215 +/- ##
=============================================
- Coverage 49.05% 22.92% -26.13%
+ Complexity 1029 623 -406
=============================================
Files 215 215
Lines 8087 8182 +95
Branches 1038 1041 +3
=============================================
- Hits 3967 1876 -2091
- Misses 3553 6123 +2570
+ Partials 567 183 -384
|
@@ -30,6 +30,8 @@ public class ExceptionParser { | |||
private static final String INVALID_PATH_EXCEPTION_STRING = "OC\\Connector\\Sabre\\Exception\\InvalidPath"; | |||
private static final String INVALID_PATH_EXCEPTION_UPLOAD_STRING = "OCP\\Files\\InvalidPathException"; | |||
private static final String VIRUS_EXCEPTION_STRING = "OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType"; | |||
private static final String USER_DISABLED_MESSAGE = "OC\\User\\LoginException: Account disabled"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we can include the 'Account disabled` part since it gets translated on the backend:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we make this more generic (for all LoginException's) we could also maybe cover other scenarios we're apprently not handling well like:
"message": "OC\\User\\LoginException: Password is expired, please use forgot password method to reset"
(#8697)
If an user account is disabled, previously ResultCode was MAINTENANCE_MODE, now it is USER_DISABLED.
I will create a branch on Files app that is using this.