-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRestClient.java
264 lines (223 loc) · 10.5 KB
/
RestClient.java
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package com.mathur.android.listit;
//import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import android.content.Context;
import android.util.Log;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Date;
/**
* Created by us48114 on 3/21/2016.
*/
public class RestClient {
public String getClient(URL url, String username, String password) {
//URL url;
HttpURLConnection urlConnection = null;
InputStream in;
StringBuilder result = new StringBuilder();
try {
urlConnection = (HttpURLConnection) url.openConnection();
String userpass = username + ":" + password;
String header = "Basic " + new String(android.util.Base64.encode(userpass.getBytes(), android.util.Base64.NO_WRAP));
urlConnection.addRequestProperty("Authorization", header);
in = new BufferedInputStream(urlConnection.getInputStream());
int HttpResult = urlConnection.getResponseCode();
//readStream(in);
if (HttpResult == HttpURLConnection.HTTP_OK) {
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) != null) {
result.append(line);
}
}
} catch (MalformedURLException ex) {
} catch (java.io.IOException ex) {
ex.printStackTrace();
} finally {
urlConnection.disconnect();
}
return result.toString();
}
//public String login(URL url, Context context,String idToken) {
public String login(URL url) {
//URL url;
HttpURLConnection urlConnection = null;
InputStream in;
StringBuilder result = new StringBuilder();
String resultToken = null;
try {
urlConnection = (HttpURLConnection) url.openConnection();
in = new BufferedInputStream(urlConnection.getInputStream());
int HttpResult = urlConnection.getResponseCode();
Log.d("login http result", String.valueOf((HttpResult)));
//readStream(in);
if (HttpResult == HttpURLConnection.HTTP_OK) {
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) != null) {
result.append(line);
}
Log.d("login result", String.valueOf((result)));
}
//urlConnection.disconnect();
//url = new URL("http://52.38.93.60/gconnect?state="+result);
//urlConnection = (HttpURLConnection) url.openConnection();
//resultToken=gConnect(idToken,context,urlConnection);
} catch (MalformedURLException ex) {
} catch (java.io.IOException ex) {
ex.printStackTrace();
} //finally {
// urlConnection.disconnect();
//}
return result.toString();
}
public String gConnect(String idToken, Context context, URL url) throws JSONException, IOException {
JSONObject cred = new JSONObject();
HttpURLConnection con;
cred.put("idToken", idToken);
con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
con.setDoInput(true);
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accept", "application/json");
con.setRequestMethod("POST");
OutputStreamWriter wr = new OutputStreamWriter(con.getOutputStream());
wr.write(cred.toString());
wr.flush();
StringBuilder sb = new StringBuilder();
int HttpResult = con.getResponseCode();
if (HttpResult == HttpURLConnection.HTTP_OK || HttpResult == HttpURLConnection.HTTP_CREATED) {
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), "utf-8"));
String line;
while ((line = br.readLine()) != null) {
sb.append(line);
}
String resultString = sb.toString();
((Global) context.getApplicationContext()).set_Token(resultString);
SetUserInfo(context, resultString, idToken, "");
return resultString;
} else System.out.println(con.getResponseMessage());
return sb.toString();
}
public String postUser(URL url, String username, String password, Context context) throws IOException, JSONException {
JSONObject cred = new JSONObject();
cred.put("username", username);
cred.put("password", password);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
con.setDoInput(true);
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accept", "application/json");
con.setRequestMethod("POST");
OutputStreamWriter wr = new OutputStreamWriter(con.getOutputStream());
wr.write(cred.toString());
wr.flush();
StringBuilder sb = new StringBuilder();
int HttpResult = con.getResponseCode();
if (HttpResult == HttpURLConnection.HTTP_OK || HttpResult == HttpURLConnection.HTTP_CREATED) {
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), "utf-8"));
String line;
while ((line = br.readLine()) != null) {
sb.append(line);
}
getToken(username, password, context);
String resultString = sb.toString();
SetUserInfo(context, resultString, username, password);
return resultString;
} else System.out.println(con.getResponseMessage());
return sb.toString();
}
public String getToken(String username, String password, Context context) throws MalformedURLException, JSONException {
URL url;
url = new URL("http://52.38.93.60/token");
String resultToken = getClient(url, username, password);
String token = ParseJasonFromHttpResponse(resultToken, "token");
((Global) context.getApplicationContext()).set_Token(token);
return resultToken;
}
private void SetUserInfo(Context context, String resultUserString, String userName, String password) throws JSONException {
int id = Integer.parseInt(ParseJasonFromHttpResponse(resultUserString, "id"));
((Global) context.getApplicationContext()).set_userId(id);
MySQLiteHelper db = new MySQLiteHelper(context);
User user = new User(id, userName, null, password);
db.addUser(user);
}
private String ParseJasonFromHttpResponse(String resultString, String keyToBeParsed) throws JSONException {
JSONObject resultJson = new JSONObject(resultString);
return resultJson.getString(keyToBeParsed);
}
public String postRequest(URL url, String username, String password, Date lastUpdated) throws IOException, JSONException {
//String encodedQuery = URLEncoder.encode(query, "UTF-8");
//String postData = "e=" + encodedQuery;
JSONObject cred = new JSONObject();
cred.put("username", username);
cred.put("password", password);
cred.put("lastSyncDate", lastUpdated);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
con.setDoInput(true);
//con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
//con.setRequestProperty("Content-Length", String.valueOf(postData.length()));
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accept", "application/json");
con.setRequestMethod("POST");
String userpass = username + ":" + password;
String header = "Basic " + new String(android.util.Base64.encode(userpass.getBytes(), android.util.Base64.NO_WRAP));
con.addRequestProperty("Authorization", header);
OutputStreamWriter wr = new OutputStreamWriter(con.getOutputStream());
wr.write(cred.toString());
//wr.write(String.valueOf(postData.getBytes()));
wr.flush();
//display what returns the POST request
StringBuilder sb = new StringBuilder();
int HttpResult = con.getResponseCode();
if (HttpResult == HttpURLConnection.HTTP_OK) {
BufferedReader br = new BufferedReader(
new InputStreamReader(con.getInputStream(), "utf-8"));
String line;
while ((line = br.readLine()) != null) {
sb.append(line);
}
br.close();
System.out.println("" + sb.toString());
} else System.out.println(con.getResponseMessage());
return sb.toString();
}
public String deleteClient(URL url, String username, String password) {
//URL url;
HttpURLConnection urlConnection = null;
InputStream in;
StringBuilder result = new StringBuilder();
try {
urlConnection = (HttpURLConnection) url.openConnection();
String userpass = username + ":" + password;
String header = "Basic " + new String(android.util.Base64.encode(userpass.getBytes(), android.util.Base64.NO_WRAP));
urlConnection.addRequestProperty("Authorization", header);
urlConnection.setRequestMethod("DELETE");
in = new BufferedInputStream(urlConnection.getInputStream());
int HttpResult = urlConnection.getResponseCode();
//readStream(in);
if (HttpResult == HttpURLConnection.HTTP_OK) {
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) != null) {
result.append(line);
}
}
} catch (MalformedURLException ex) {
} catch (java.io.IOException ex) {
ex.printStackTrace();
} finally {
urlConnection.disconnect();
}
return result.toString();
}
}