Advertisement
minafaw3

VolleyErrorHelper

Oct 12th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. package com.imaadv.leaynik.api;
  2.  
  3. import android.content.Context;
  4.  
  5. import com.android.volley.AuthFailureError;
  6. import com.android.volley.NetworkError;
  7. import com.android.volley.NetworkResponse;
  8. import com.android.volley.NoConnectionError;
  9. import com.android.volley.ServerError;
  10. import com.android.volley.TimeoutError;
  11. import com.android.volley.VolleyError;
  12. import com.google.gson.Gson;
  13. import com.google.gson.reflect.TypeToken;
  14. import com.imaadv.leaynik.R;
  15.  
  16. import java.util.HashMap;
  17. import java.util.Map;
  18. import java.util.Objects;
  19.  
  20. /**
  21. * Created by NT on 10/7/15.
  22. */
  23. public class VolleyErrorHelper {
  24.  
  25. /**
  26. * Returns appropriate message which is to be displayed to the user
  27. * against the specified error object.
  28. *
  29. * @param error
  30. * @param context
  31. * @return
  32. */
  33.  
  34. public static String getMessage (Object error , Context context){
  35.  
  36. if(error instanceof TimeoutError){
  37. return context.getResources().getString(R.string.timeout);
  38. }else if (isServerProblem(error)){
  39. return handleServerError(error ,context);
  40.  
  41. }else if(isNetworkProblem(error)){
  42. return context.getResources().getString(R.string.nointernet);
  43. }
  44. return context.getResources().getString(R.string.genericerror);
  45.  
  46. }
  47.  
  48. private static String handleServerError(Object error, Context context) {
  49.  
  50. VolleyError er = (VolleyError)error;
  51. NetworkResponse response = er.networkResponse;
  52. if(response != null){
  53. switch (response.statusCode){
  54.  
  55. case 404:
  56. case 422:
  57. case 401:
  58. try {
  59. // server might return error like this { "error": "Some error occured" }
  60. // Use "Gson" to parse the result
  61. HashMap<String, String> result = new Gson().fromJson(new String(response.data),
  62. new TypeToken<Map<String, String>>() {
  63. }.getType());
  64.  
  65. if (result != null && result.containsKey("error")) {
  66. return result.get("error");
  67. }
  68.  
  69. } catch (Exception e) {
  70. e.printStackTrace();
  71. }
  72. // invalid request
  73. return ((VolleyError) error).getMessage();
  74.  
  75. default:
  76. return context.getResources().getString(R.string.timeout);
  77. }
  78. }
  79.  
  80. return context.getResources().getString(R.string.genericerror);
  81. }
  82.  
  83. private static boolean isServerProblem(Object error) {
  84. return (error instanceof ServerError || error instanceof AuthFailureError);
  85. }
  86.  
  87. private static boolean isNetworkProblem (Object error){
  88. return (error instanceof NetworkError || error instanceof NoConnectionError);
  89. }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement