Advertisement
minafaw3

VolleyRequestHandler

Feb 1st, 2016
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. package org.aidmaid;
  2.  
  3. import android.content.Context;
  4.  
  5. import com.android.volley.AuthFailureError;
  6. import com.android.volley.DefaultRetryPolicy;
  7. import com.android.volley.Response;
  8. import com.android.volley.VolleyError;
  9. import com.android.volley.toolbox.JsonObjectRequest;
  10.  
  11. import org.json.JSONException;
  12. import org.json.JSONObject;
  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 VolleyRequestHandler implements Response.ErrorListener , Response.Listener{
  21.  
  22. public static final int LOGIN_INT = 0;
  23. public static final int SINGUP_INT = 1;
  24.  
  25.  
  26. public static final String APPLICATION_JSON = "application/json";
  27. public static final String CONTENT_TYPE = "Content-Type";
  28. public static final String ACCEPT = "Accept";
  29.  
  30.  
  31. public static String BASE_URL = "";
  32.  
  33. public static final String LOGIN_URL = "login.php";
  34.  
  35. public static final String SINGUP_URL = "signup.php";
  36.  
  37.  
  38.  
  39. private Context _Context;
  40. private int con_type;
  41. private VolleyResponseCallBack callback;
  42.  
  43.  
  44. public VolleyRequestHandler(Context _context) {
  45. this._Context = _context;
  46.  
  47. }
  48.  
  49. private String getURl(int type) {
  50. StringBuilder stringBuilder = new StringBuilder();
  51. stringBuilder.append(BASE_URL);
  52.  
  53. switch (type) {
  54.  
  55. case LOGIN_INT:
  56. stringBuilder.append(LOGIN_URL);
  57. break;
  58.  
  59. case SINGUP_INT:
  60. stringBuilder.append(SINGUP_URL);
  61. break;
  62.  
  63. default:
  64. break;
  65. }
  66. return stringBuilder.toString();
  67. }
  68.  
  69. private Object ResponseParser(Object responseObj, int parser_type) throws JSONException {
  70.  
  71. Object res = null;
  72. switch (parser_type) {
  73. case LOGIN_INT:
  74. case SINGUP_INT:
  75. // res = parser.getUserDataObject((JSONObject) responseObj);
  76. break;
  77.  
  78. }
  79.  
  80. return res;
  81. }
  82.  
  83. public void HandleRequests(int request_type, int type, Map<String, String> params, VolleyResponseCallBack callBack) {
  84. this.con_type = type;
  85. this.callback = callBack;
  86. JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(request_type, getURl(type), (params != null ? new JSONObject(params) : null), this, this) {
  87. @Override
  88. public Map<String, String> getHeaders() throws AuthFailureError {
  89. Map<String, String> Headers = new HashMap<>();
  90. Headers.put(CONTENT_TYPE, APPLICATION_JSON);
  91. return Headers;
  92. }
  93. @Override
  94. public String getBodyContentType() {
  95. return APPLICATION_JSON;
  96. }
  97. };
  98. jsonObjectRequest.setRetryPolicy(new DefaultRetryPolicy(DefaultRetryPolicy.DEFAULT_TIMEOUT_MS *3 , DefaultRetryPolicy.DEFAULT_MAX_RETRIES , DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
  99.  
  100. MySingleton.getInstance(_Context.getApplicationContext()).getResquestQueue().add(jsonObjectRequest);
  101. }
  102.  
  103.  
  104.  
  105. @Override
  106. public void onErrorResponse(VolleyError error) {
  107. String error_msg = VolleyErrorHelper.getMessage(error, _Context);
  108. callback.RequestFailed(error_msg);
  109. }
  110.  
  111. @Override
  112. public void onResponse(Object response) {
  113.  
  114. }
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement