minafaw3

VolleyErrorHelper

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