ErrorMessageAdapter.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * Copyright (C) 2016 ownCloud GmbH.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.utils;
  21. import android.content.res.Resources;
  22. import android.text.TextUtils;
  23. import com.owncloud.android.R;
  24. import com.owncloud.android.lib.common.operations.RemoteOperation;
  25. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  26. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  27. import com.owncloud.android.operations.CopyFileOperation;
  28. import com.owncloud.android.operations.CreateFolderOperation;
  29. import com.owncloud.android.operations.CreateShareViaLinkOperation;
  30. import com.owncloud.android.operations.CreateShareWithShareeOperation;
  31. import com.owncloud.android.operations.DownloadFileOperation;
  32. import com.owncloud.android.operations.MoveFileOperation;
  33. import com.owncloud.android.operations.RemoveFileOperation;
  34. import com.owncloud.android.operations.RenameFileOperation;
  35. import com.owncloud.android.operations.SynchronizeFileOperation;
  36. import com.owncloud.android.operations.SynchronizeFolderOperation;
  37. import com.owncloud.android.operations.UnshareOperation;
  38. import com.owncloud.android.operations.UpdateSharePermissionsOperation;
  39. import com.owncloud.android.operations.UpdateShareViaLinkOperation;
  40. import com.owncloud.android.operations.UploadFileOperation;
  41. import org.apache.commons.httpclient.ConnectTimeoutException;
  42. import java.io.File;
  43. import java.net.SocketTimeoutException;
  44. import androidx.annotation.NonNull;
  45. import androidx.annotation.Nullable;
  46. /**
  47. * Class to choose proper error messages to show to the user depending on the results of operations,
  48. * always following the same policy
  49. */
  50. public final class ErrorMessageAdapter {
  51. private ErrorMessageAdapter() {
  52. // utility class -> private constructor
  53. }
  54. /**
  55. * Return an internationalized user message corresponding to an operation result
  56. * and the operation performed.
  57. *
  58. * @param result Result of a {@link RemoteOperation} performed.
  59. * @param operation Operation performed.
  60. * @param res Reference to app resources, for i18n.
  61. * @return User message corresponding to 'result' and 'operation'.
  62. */
  63. @NonNull
  64. public static String getErrorCauseMessage(
  65. RemoteOperationResult result,
  66. RemoteOperation operation,
  67. Resources res
  68. ) {
  69. String message = getSpecificMessageForResultAndOperation(result, operation, res);
  70. if (TextUtils.isEmpty(message)) {
  71. message = getCommonMessageForResult(result, res);
  72. }
  73. if (TextUtils.isEmpty(message)) {
  74. message = getGenericErrorMessageForOperation(operation, res);
  75. }
  76. if (message == null) {
  77. if (result.isSuccess()) {
  78. message = res.getString(R.string.common_ok);
  79. } else {
  80. message = res.getString(R.string.common_error_unknown);
  81. }
  82. }
  83. return message;
  84. }
  85. /**
  86. * Return a user message corresponding to an operation result and specific for the operation
  87. * performed.
  88. *
  89. * @param result Result of a {@link RemoteOperation} performed.
  90. * @param operation Operation performed.
  91. * @param res Reference to app resources, for i18n.
  92. * @return User message corresponding to 'result' and 'operation', or NULL if there is no
  93. * specific message for both.
  94. */
  95. @Nullable
  96. private static String getSpecificMessageForResultAndOperation(
  97. RemoteOperationResult result,
  98. RemoteOperation operation,
  99. Resources res
  100. ) {
  101. String message = null;
  102. if (operation instanceof UploadFileOperation) {
  103. message = getMessageForUploadFileOperation(result, (UploadFileOperation) operation, res);
  104. } else if (operation instanceof DownloadFileOperation) {
  105. message = getMessageForDownloadFileOperation(result, (DownloadFileOperation) operation, res);
  106. } else if (operation instanceof RemoveFileOperation) {
  107. message = getMessageForRemoveFileOperation(result, res);
  108. } else if (operation instanceof RenameFileOperation) {
  109. message = getMessageForRenameFileOperation(result, res);
  110. } else if (operation instanceof SynchronizeFileOperation) {
  111. if (!((SynchronizeFileOperation) operation).transferWasRequested()) {
  112. message = res.getString(R.string.sync_file_nothing_to_do_msg);
  113. }
  114. } else if (operation instanceof CreateFolderOperation) {
  115. message = getMessageForCreateFolderOperation(result, res);
  116. } else if (operation instanceof CreateShareViaLinkOperation ||
  117. operation instanceof CreateShareWithShareeOperation) {
  118. message = getMessageForCreateShareOperations(result, res);
  119. } else if (operation instanceof UnshareOperation) {
  120. message = getMessageForUnshareOperation(result, res);
  121. } else if (operation instanceof UpdateShareViaLinkOperation ||
  122. operation instanceof UpdateSharePermissionsOperation) {
  123. message = getMessageForUpdateShareOperations(result, res);
  124. } else if (operation instanceof MoveFileOperation) {
  125. message = getMessageForMoveFileOperation(result, res);
  126. } else if (operation instanceof SynchronizeFolderOperation) {
  127. message = getMessageForSynchronizeFolderOperation(result, (SynchronizeFolderOperation) operation, res);
  128. } else if (operation instanceof CopyFileOperation) {
  129. message = getMessageForCopyFileOperation(result, res);
  130. }
  131. return message;
  132. }
  133. private static String getMessageForSynchronizeFolderOperation(
  134. RemoteOperationResult result,
  135. SynchronizeFolderOperation operation,
  136. Resources res
  137. ) {
  138. if (!result.isSuccess() && result.getCode() == ResultCode.FILE_NOT_FOUND) {
  139. return String.format(
  140. res.getString(R.string.sync_current_folder_was_removed),
  141. new File(operation.getFolderPath()).getName()
  142. );
  143. }
  144. return
  145. null;
  146. }
  147. private static String getMessageForMoveFileOperation(RemoteOperationResult result, Resources res) {
  148. if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
  149. return res.getString(R.string.move_file_not_found);
  150. } else if (result.getCode() == ResultCode.INVALID_MOVE_INTO_DESCENDANT) {
  151. return res.getString(R.string.move_file_invalid_into_descendent);
  152. } else if (result.getCode() == ResultCode.INVALID_OVERWRITE) {
  153. return res.getString(R.string.move_file_invalid_overwrite);
  154. } else if (result.getCode() == ResultCode.FORBIDDEN) {
  155. return String.format(res.getString(R.string.forbidden_permissions),
  156. res.getString(R.string.forbidden_permissions_move));
  157. } else if (result.getCode() == ResultCode.INVALID_CHARACTER_DETECT_IN_SERVER) {
  158. return res.getString(R.string.filename_forbidden_charaters_from_server);
  159. }
  160. return null;
  161. }
  162. private static String getMessageForUpdateShareOperations(RemoteOperationResult result, Resources res) {
  163. if (result.getData() != null && result.getData().size() > 0) {
  164. return (String) result.getData().get(0); // share API sends its own error messages
  165. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  166. return res.getString(R.string.update_link_file_no_exist);
  167. } else if (result.getCode() == ResultCode.SHARE_FORBIDDEN) {
  168. // Error --> No permissions
  169. return String.format(res.getString(R.string.forbidden_permissions),
  170. res.getString(R.string.update_link_forbidden_permissions));
  171. }
  172. return null;
  173. }
  174. private static String getMessageForUnshareOperation(RemoteOperationResult result, Resources res) {
  175. if (result.getData() != null && result.getData().size() > 0) {
  176. return (String) result.getData().get(0); // share API sends its own error messages
  177. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  178. return res.getString(R.string.unshare_link_file_no_exist);
  179. } else if (result.getCode() == ResultCode.SHARE_FORBIDDEN) {
  180. // Error --> No permissions
  181. return String.format(res.getString(R.string.forbidden_permissions),
  182. res.getString(R.string.unshare_link_forbidden_permissions));
  183. }
  184. return null;
  185. }
  186. private static String getMessageForCopyFileOperation(RemoteOperationResult result, Resources res) {
  187. if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
  188. return res.getString(R.string.copy_file_not_found);
  189. } else if (result.getCode() == ResultCode.INVALID_COPY_INTO_DESCENDANT) {
  190. return res.getString(R.string.copy_file_invalid_into_descendent);
  191. } else if (result.getCode() == ResultCode.INVALID_OVERWRITE) {
  192. return res.getString(R.string.copy_file_invalid_overwrite);
  193. } else if (result.getCode() == ResultCode.FORBIDDEN) {
  194. return String.format(res.getString(R.string.forbidden_permissions),
  195. res.getString(R.string.forbidden_permissions_copy));
  196. }
  197. return null;
  198. }
  199. private static String getMessageForCreateShareOperations(RemoteOperationResult result, Resources res) {
  200. if (result.getData() != null && result.getData().size() > 0) {
  201. return (String) result.getData().get(0); // share API sends its own error messages
  202. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  203. return res.getString(R.string.share_link_file_no_exist);
  204. } else if (result.getCode() == ResultCode.SHARE_FORBIDDEN) {
  205. // Error --> No permissions
  206. return String.format(res.getString(R.string.forbidden_permissions),
  207. res.getString(R.string.share_link_forbidden_permissions));
  208. }
  209. return null;
  210. }
  211. private static String getMessageForCreateFolderOperation(RemoteOperationResult result, Resources res) {
  212. if (result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME) {
  213. return res.getString(R.string.filename_forbidden_characters);
  214. } else if (result.getCode().equals(ResultCode.FORBIDDEN)) {
  215. return String.format(res.getString(R.string.forbidden_permissions),
  216. res.getString(R.string.forbidden_permissions_create));
  217. } else if (result.getCode() == ResultCode.INVALID_CHARACTER_DETECT_IN_SERVER) {
  218. return res.getString(R.string.filename_forbidden_charaters_from_server);
  219. }
  220. return null;
  221. }
  222. private static String getMessageForRenameFileOperation(RemoteOperationResult result, Resources res) {
  223. if (result.getCode().equals(ResultCode.INVALID_LOCAL_FILE_NAME)) {
  224. return res.getString(R.string.rename_local_fail_msg);
  225. } else if (result.getCode().equals(ResultCode.FORBIDDEN)) {
  226. // Error --> No permissions
  227. return String.format(res.getString(R.string.forbidden_permissions),
  228. res.getString(R.string.forbidden_permissions_rename));
  229. } else if (result.getCode().equals(ResultCode.INVALID_CHARACTER_IN_NAME)) {
  230. return res.getString(R.string.filename_forbidden_characters);
  231. } else if (result.getCode() == ResultCode.INVALID_CHARACTER_DETECT_IN_SERVER) {
  232. return res.getString(R.string.filename_forbidden_charaters_from_server);
  233. }
  234. return null;
  235. }
  236. private static String getMessageForRemoveFileOperation(RemoteOperationResult result, Resources res) {
  237. if (result.isSuccess()) {
  238. return res.getString(R.string.remove_success_msg);
  239. } else {
  240. if (result.getCode().equals(ResultCode.FORBIDDEN)) {
  241. // Error --> No permissions
  242. return String.format(res.getString(R.string.forbidden_permissions),
  243. res.getString(R.string.forbidden_permissions_delete));
  244. }
  245. }
  246. return null;
  247. }
  248. private static String getMessageForDownloadFileOperation(
  249. RemoteOperationResult result,
  250. DownloadFileOperation operation,
  251. Resources res
  252. ) {
  253. if (result.isSuccess()) {
  254. return String.format(
  255. res.getString(R.string.downloader_download_succeeded_content),
  256. new File(operation.getSavePath()).getName());
  257. } else {
  258. if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
  259. return res.getString(R.string.downloader_download_file_not_found);
  260. }
  261. }
  262. return null;
  263. }
  264. private static String getMessageForUploadFileOperation(
  265. RemoteOperationResult result,
  266. UploadFileOperation operation,
  267. Resources res
  268. ) {
  269. if (result.isSuccess()) {
  270. return String.format(
  271. res.getString(R.string.uploader_upload_succeeded_content_single),
  272. operation.getFileName());
  273. } else {
  274. if (result.getCode() == ResultCode.LOCAL_STORAGE_FULL
  275. || result.getCode() == ResultCode.LOCAL_STORAGE_NOT_COPIED) {
  276. return String.format(
  277. res.getString(R.string.error__upload__local_file_not_copied),
  278. operation.getFileName(),
  279. res.getString(R.string.app_name));
  280. } else if (result.getCode() == ResultCode.FORBIDDEN) {
  281. return String.format(res.getString(R.string.forbidden_permissions),
  282. res.getString(R.string.uploader_upload_forbidden_permissions));
  283. } else if (result.getCode() == ResultCode.INVALID_CHARACTER_DETECT_IN_SERVER) {
  284. return res.getString(R.string.filename_forbidden_charaters_from_server);
  285. }
  286. }
  287. return null;
  288. }
  289. /**
  290. * Return a user message corresponding to an operation result with no knowledge about the operation
  291. * performed.
  292. *
  293. * @param result Result of a {@link RemoteOperation} performed.
  294. * @param res Reference to app resources, for i18n.
  295. * @return User message corresponding to 'result'.
  296. */
  297. @Nullable
  298. private static String getCommonMessageForResult(RemoteOperationResult result, Resources res) {
  299. String message = null;
  300. if (!result.isSuccess()) {
  301. if (result.getCode() == ResultCode.WRONG_CONNECTION) {
  302. message = res.getString(R.string.network_error_socket_exception);
  303. } else if (result.getCode() == ResultCode.TIMEOUT) {
  304. message = res.getString(R.string.network_error_socket_exception);
  305. if (result.getException() instanceof SocketTimeoutException) {
  306. message = res.getString(R.string.network_error_socket_timeout_exception);
  307. } else if (result.getException() instanceof ConnectTimeoutException) {
  308. message = res.getString(R.string.network_error_connect_timeout_exception);
  309. }
  310. } else if (result.getCode() == ResultCode.HOST_NOT_AVAILABLE) {
  311. message = res.getString(R.string.network_host_not_available);
  312. } else if (result.getCode() == ResultCode.MAINTENANCE_MODE) {
  313. message = res.getString(R.string.maintenance_mode);
  314. } else if (result.getCode() == ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED) {
  315. message = res.getString(R.string.uploads_view_upload_status_failed_ssl_certificate_not_trusted);
  316. } else if (result.getCode() == ResultCode.BAD_OC_VERSION) {
  317. message = res.getString(R.string.auth_bad_oc_version_title);
  318. } else if (result.getCode() == ResultCode.INCORRECT_ADDRESS) {
  319. message = res.getString(R.string.auth_incorrect_address_title);
  320. } else if (result.getCode() == ResultCode.SSL_ERROR) {
  321. message = res.getString(R.string.auth_ssl_general_error_title);
  322. } else if (result.getCode() == ResultCode.UNAUTHORIZED) {
  323. message = res.getString(R.string.auth_unauthorized);
  324. } else if (result.getCode() == ResultCode.INSTANCE_NOT_CONFIGURED) {
  325. message = res.getString(R.string.auth_not_configured_title);
  326. } else if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
  327. message = res.getString(R.string.auth_incorrect_path_title);
  328. } else if (result.getCode() == ResultCode.OAUTH2_ERROR) {
  329. message = res.getString(R.string.auth_oauth_error);
  330. } else if (result.getCode() == ResultCode.OAUTH2_ERROR_ACCESS_DENIED) {
  331. message = res.getString(R.string.auth_oauth_error_access_denied);
  332. } else if (result.getCode() == ResultCode.ACCOUNT_NOT_NEW) {
  333. message = res.getString(R.string.auth_account_not_new);
  334. } else if (result.getCode() == ResultCode.ACCOUNT_NOT_THE_SAME) {
  335. message = res.getString(R.string.auth_account_not_the_same);
  336. }
  337. else if (!TextUtils.isEmpty(result.getHttpPhrase())) {
  338. // last chance: error message from server
  339. message = result.getHttpPhrase();
  340. }
  341. }
  342. return message;
  343. }
  344. /**
  345. * Return a user message corresponding to a generic error for a given operation.
  346. *
  347. * @param operation Operation performed.
  348. * @param res Reference to app resources, for i18n.
  349. * @return User message corresponding to a generic error of 'operation'.
  350. */
  351. @Nullable
  352. private static String getGenericErrorMessageForOperation(RemoteOperation operation, Resources res) {
  353. String message = null;
  354. if (operation instanceof UploadFileOperation) {
  355. message = String.format(
  356. res.getString(R.string.uploader_upload_failed_content_single),
  357. ((UploadFileOperation) operation).getFileName());
  358. } else if (operation instanceof DownloadFileOperation) {
  359. message = String.format(
  360. res.getString(R.string.downloader_download_failed_content),
  361. new File(((DownloadFileOperation) operation).getSavePath()).getName()
  362. );
  363. } else if (operation instanceof RemoveFileOperation) {
  364. message = res.getString(R.string.remove_fail_msg);
  365. } else if (operation instanceof RenameFileOperation) {
  366. message = res.getString(R.string.rename_server_fail_msg);
  367. } else if (operation instanceof CreateFolderOperation) {
  368. message = res.getString(R.string.create_dir_fail_msg);
  369. } else if (operation instanceof CreateShareViaLinkOperation ||
  370. operation instanceof CreateShareWithShareeOperation
  371. ) {
  372. message = res.getString(R.string.share_link_file_error);
  373. } else if (operation instanceof UnshareOperation) {
  374. message = res.getString(R.string.unshare_link_file_error);
  375. } else if (operation instanceof UpdateShareViaLinkOperation ||
  376. operation instanceof UpdateSharePermissionsOperation
  377. ) {
  378. message = res.getString(R.string.update_link_file_error);
  379. } else if (operation instanceof MoveFileOperation) {
  380. message = res.getString(R.string.move_file_error);
  381. } else if (operation instanceof SynchronizeFolderOperation) {
  382. String folderPathName = new File(
  383. ((SynchronizeFolderOperation) operation).getFolderPath()
  384. ).getName();
  385. message = String.format(res.getString(R.string.sync_folder_failed_content), folderPathName);
  386. } else if (operation instanceof CopyFileOperation) {
  387. message = res.getString(R.string.copy_file_error);
  388. }
  389. return message;
  390. }
  391. }