summaryrefslogtreecommitdiff
path: root/sdl_android_lib/src/com/smartdevicelink/util/HttpRequestTask.java
blob: 3d26b29946abfe336fc918885dcfbe52fd0c9673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package com.smartdevicelink.util;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.HttpURLConnection;
import java.net.URL;

import android.os.AsyncTask;
import android.util.Log;

public class HttpRequestTask extends AsyncTask<String, String, String> {
	private static final String TAG = "Http Request Task";

	public static final String REQUEST_TYPE_POST = "POST";
	public static final String REQUEST_TYPE_GET = "GET";
	public static final String REQUEST_TYPE_DELETE = "DELETE";

	HttpRequestTaskCallback cb;

	/**
	 * @param HttpRequestTaskCallback callback for when this task finishes
	 * <br><br><b> - When calling execute, params as followed: </b><br>
	 *  1. Url String<br>
	 *  2. Request type (Defined in this class) REQUEST_TYPE_POST, REQUEST_TYPE_GET, REQUEST_TYPE_DELETE<br>
	 *  3. (Optional) Data to be sent. <br>
	 *  4. (Optional) Content Type  Default will be application/json<br>
	 *  5. (Optional) Accept Type  default will be application/json
	 * 
	 */
	public HttpRequestTask( HttpRequestTaskCallback hcb){
		this.cb = hcb; 
	}

	@Override
	protected String doInBackground(String... params) {
		int length = params.length;
		String urlString = params[0];
		String request_type = params[1];

		//Grab and set data to be written if included
		String data;
		if(length>2){
			data = params[2];
		}else{
			data = null;
		}

		//Grab and set content type for the header if included
		String contentType;
		if(length>3){
			contentType = params[3];
		}else{
			contentType = "application/json";
		}
		//Grab and set accept type for the header if included
		String acceptType;
		if(length>4){
			acceptType = params[4];
		}else{
			acceptType = "application/json";
		}

		if(urlString == null || request_type == null){
			Log.e(TAG, "Can't process request, param error");
			if(cb!=null){
				cb.httpFailure(-1);
				cb = null;
			}
			return "Error";
		}

		HttpURLConnection urlConnection = null;
		BufferedReader reader = null;
		try {
			URL url = new URL(urlString);
			urlConnection = (HttpURLConnection) url.openConnection();
			urlConnection.setDoOutput(true);
			urlConnection.setRequestMethod(request_type);
			urlConnection.setRequestProperty("Content-Type", contentType);
			urlConnection.setRequestProperty("Accept", acceptType);
			//If we have data, we should write it out
			if(data !=null){
				Writer writer = new BufferedWriter(new OutputStreamWriter(urlConnection.getOutputStream(), "UTF-8"));
				writer.write(data);
				writer.close();
			}
			InputStream inputStream = urlConnection.getInputStream();

			int responseCode = urlConnection.getResponseCode();
			if (responseCode == 200) { //Success
				//input stream
				StringBuffer buffer = new StringBuffer();
				if (inputStream == null) {
					// Nothing to do.
					if(cb!=null){
						cb.httpCallComplete(null);
						cb = null;
					}
					return null;
				}
				reader = new BufferedReader(new InputStreamReader(inputStream));

				String inputLine;
				while ((inputLine = reader.readLine()) != null)
					buffer.append(inputLine + "\n");
				if (buffer.length() == 0) {
					// Stream was empty. No point in parsing.
					if(cb!=null){
						cb.httpCallComplete(null);
						cb = null;
					}
					return null;
				}
				String response = null;

				response = buffer.toString();
				//send to post execute
				if(cb!=null){
					cb.httpCallComplete(response);
					cb = null;
				}
				return response;
			}else{
				if(cb!=null){
					cb.httpFailure(responseCode);
					cb = null;
				}
				Log.e(TAG, "Failed to download file - " + responseCode);
				return null;
			}

			
		} catch (IOException e) {
			e.printStackTrace();
		}
		finally {
			if (urlConnection != null) {
				urlConnection.disconnect();
			}
			if (reader != null) {
				try {
					reader.close();
				} catch (final IOException e) {
					Log.e(TAG, "Error closing stream", e);
				}
			}
			if(cb!=null){
				cb.httpFailure(-1);
			}
		}
		return null;
	}

	/**
	 * Callback interface for HTTP requests.
	 * @author Joey Grover
	 *
	 */
	public interface HttpRequestTaskCallback{
		/**
		 * Called when HTTP request is successfully completed.
		 * @param response The response to the HTTP request.
		 */
		public abstract void httpCallComplete(String response);
		/**
		 * Called when HTTP request failed.
		 * @param statusCode The HTTP failure code.
		 */
		public abstract void httpFailure(int statusCode);
	}

}