forked from boncey/Flickr4Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREST.java
More file actions
451 lines (396 loc) · 15.5 KB
/
Copy pathREST.java
File metadata and controls
451 lines (396 loc) · 15.5 KB
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/*
* Copyright (c) 2005 Aetrion LLC.
*/
package com.flickr4java.flickr;
import com.flickr4java.flickr.auth.Auth;
import com.flickr4java.flickr.util.Base64;
import com.flickr4java.flickr.util.DebugInputStream;
import com.flickr4java.flickr.util.IOUtilities;
import com.flickr4java.flickr.util.UrlUtilities;
import org.apache.log4j.Logger;
import org.scribe.builder.ServiceBuilder;
import org.scribe.builder.api.FlickrApi;
import org.scribe.model.OAuthRequest;
import org.scribe.model.Token;
import org.scribe.model.Verb;
import org.scribe.oauth.OAuthService;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Map;
import java.util.Map.Entry;
import java.util.concurrent.TimeUnit;
/**
* Transport implementation using the REST interface.
*
* @author Anthony Eden
* @version $Id: REST.java,v 1.26 2009/07/01 22:07:08 x-mago Exp $
*/
public class REST extends Transport {
private static final Logger logger = Logger.getLogger(REST.class);
public static final String PATH = "/services/rest/";
private static final String CHARSET_NAME = "UTF-8";
private boolean proxyAuth = false;
private String proxyUser = "";
private String proxyPassword = "";
private final DocumentBuilder builder;
private static Object mutex = new Object();
private Integer connectTimeoutMs;
private Integer readTimeoutMs;
/**
* Construct a new REST transport instance.
*/
public REST() {
setTransportType(REST);
setHost(API_HOST);
setPath(PATH);
setResponseClass(RESTResponse.class);
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
try {
builder = builderFactory.newDocumentBuilder();
} catch (ParserConfigurationException e) {
throw new FlickrRuntimeException(e);
}
}
/**
* Construct a new REST transport instance using the specified host endpoint.
*
* @param host
* The host endpoint
*/
public REST(String host) {
this();
setHost(host);
}
/**
* Construct a new REST transport instance using the specified host and port endpoint.
*
* @param host
* The host endpoint
* @param port
* The port
*/
public REST(String host, int port) {
this();
setHost(host);
setPort(port);
}
/**
* Set a proxy for REST-requests.
*
* @param proxyHost
* @param proxyPort
*/
public void setProxy(String proxyHost, int proxyPort) {
System.setProperty("http.proxySet", "true");
System.setProperty("http.proxyHost", proxyHost);
System.setProperty("http.proxyPort", "" + proxyPort);
}
/**
* Set a proxy with authentication for REST-requests.
*
* @param proxyHost
* @param proxyPort
* @param username
* @param password
*/
public void setProxy(String proxyHost, int proxyPort, String username, String password) {
setProxy(proxyHost, proxyPort);
proxyAuth = true;
proxyUser = username;
proxyPassword = password;
}
/**
* Invoke an HTTP GET request on a remote host. You must close the InputStream after you are done with.
*
* @param path
* The request path
* @param parameters
* The parameters (collection of Parameter objects)
* @return The Response
*/
@Override
public com.flickr4java.flickr.Response get(String path, Map<String, Object> parameters, String sharedSecret) {
OAuthRequest request = new OAuthRequest(Verb.GET, API_HOST + path);
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
request.addQuerystringParameter(entry.getKey(), String.valueOf(entry.getValue()));
}
if (proxyAuth) {
request.addHeader("Proxy-Authorization", "Basic " + getProxyCredentials());
}
RequestContext requestContext = RequestContext.getRequestContext();
Auth auth = requestContext.getAuth();
if (auth != null){
Token requestToken = new Token(auth.getToken(), auth.getTokenSecret());
OAuthService service = createOAuthService(parameters, sharedSecret);
service.signRequest(requestToken, request);
}
if (Flickr.debugRequest) {
logger.debug("GET: " + request.getCompleteUrl());
}
setTimeouts(request);
org.scribe.model.Response scribeResponse = request.send();
try {
com.flickr4java.flickr.Response response = null;
synchronized (mutex) {
String strXml = scribeResponse.getBody();
if (Flickr.debugStream) {
logger.debug(strXml);
}
Document document = builder.parse(new InputSource(new StringReader(strXml)));
response = (com.flickr4java.flickr.Response) responseClass.newInstance();
response.parse(document);
}
return response;
} catch (IllegalAccessException e) {
throw new FlickrRuntimeException(e);
} catch (InstantiationException e) {
throw new FlickrRuntimeException(e);
} catch (SAXException e) {
throw new FlickrRuntimeException(e);
} catch (IOException e) {
throw new FlickrRuntimeException(e);
}
}
/**
* Invoke a non OAuth HTTP GET request on a remote host.
*
* This is only used for the Flickr OAuth methods checkToken and getAccessToken.
*
* @param path
* The request path
* @param parameters
* The parameters
* @return The Response
*/
@Override
public Response getNonOAuth(String path, Map<String, String> parameters) {
InputStream in = null;
try {
URL url = UrlUtilities.buildUrl(getHost(), getPort(), path, parameters);
if (Flickr.debugRequest) {
logger.debug("GET: " + url);
}
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
if (proxyAuth) {
conn.setRequestProperty("Proxy-Authorization", "Basic " + getProxyCredentials());
}
setTimeouts(conn);
conn.connect();
if (Flickr.debugStream) {
in = new DebugInputStream(conn.getInputStream(), System.out);
} else {
in = conn.getInputStream();
}
Response response = null;
synchronized (mutex) {
Document document = builder.parse(in);
response = (Response) responseClass.newInstance();
response.parse(document);
}
return response;
} catch (IllegalAccessException e) {
throw new FlickrRuntimeException(e);
} catch (InstantiationException e) {
throw new FlickrRuntimeException(e);
} catch (IOException e) {
throw new FlickrRuntimeException(e);
} catch (SAXException e) {
throw new FlickrRuntimeException(e);
} finally {
IOUtilities.close(in);
}
}
/**
* Invoke an HTTP POST request on a remote host.
*
* @param path
* The request path
* @param parameters
* The parameters (collection of Parameter objects)
* @return The Response object
*/
@Override
public com.flickr4java.flickr.Response post(String path, Map<String, Object> parameters, String sharedSecret, boolean multipart) {
OAuthRequest request = new OAuthRequest(Verb.POST, API_HOST + path);
if (multipart) {
buildMultipartRequest(parameters, request);
} else {
buildNormalPostRequest(parameters, request);
}
RequestContext requestContext = RequestContext.getRequestContext();
Auth auth = requestContext.getAuth();
if (auth != null){
Token requestToken = new Token(auth.getToken(), auth.getTokenSecret());
OAuthService service = createOAuthService(parameters, sharedSecret);
service.signRequest(requestToken, request);
}
if (multipart) {
// Ensure all parameters (including oauth) are added to payload so signature matches
parameters.putAll(request.getOauthParameters());
request.addPayload(buildMultipartBody(parameters, getMultipartBoundary()));
}
if (proxyAuth) {
request.addHeader("Proxy-Authorization", "Basic " + getProxyCredentials());
}
if (Flickr.debugRequest) {
logger.debug("POST: " + request.getCompleteUrl());
}
org.scribe.model.Response scribeResponse = request.send();
try {
com.flickr4java.flickr.Response response = null;
synchronized (mutex) {
String strXml = scribeResponse.getBody();
if (Flickr.debugStream) {
logger.debug(strXml);
}
if (strXml.startsWith("oauth_problem=")) {
throw new FlickrRuntimeException(strXml);
}
Document document = builder.parse(new InputSource(new StringReader(strXml)));
response = (com.flickr4java.flickr.Response) responseClass.newInstance();
response.parse(document);
}
return response;
} catch (IllegalAccessException e) {
throw new FlickrRuntimeException(e);
} catch (InstantiationException e) {
throw new FlickrRuntimeException(e);
} catch (SAXException e) {
throw new FlickrRuntimeException(e);
} catch (IOException e) {
throw new FlickrRuntimeException(e);
}
}
/**
*
* @param parameters
* @param sharedSecret
* @return
*/
private OAuthService createOAuthService(Map<String, Object> parameters, String sharedSecret) {
OAuthService serviceBuilder;
if (Flickr.debugRequest) {
serviceBuilder = new ServiceBuilder().provider(FlickrApi.class).apiKey(String.valueOf(parameters.get(Flickr.API_KEY))).apiSecret(sharedSecret)
.debug().build();
} else {
serviceBuilder = new ServiceBuilder().provider(FlickrApi.class).apiKey(String.valueOf(parameters.get(Flickr.API_KEY))).apiSecret(sharedSecret)
.build();
}
return serviceBuilder;
}
/**
*
* @param parameters
* @param request
*/
private void buildNormalPostRequest(Map<String, Object> parameters, OAuthRequest request) {
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
request.addBodyParameter(entry.getKey(), String.valueOf(entry.getValue()));
}
}
/**
*
* @param parameters
* @param request
*/
private void buildMultipartRequest(Map<String, Object> parameters, OAuthRequest request) {
request.addHeader("Content-Type", "multipart/form-data; boundary=" + getMultipartBoundary());
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
String key = entry.getKey();
if (!key.equals("photo")) {
request.addQuerystringParameter(key, String.valueOf(entry.getValue()));
}
}
}
/**
*
* @return
*/
private String getMultipartBoundary() {
return "---------------------------7d273f7a0d3";
}
public boolean isProxyAuth() {
return proxyAuth;
}
/**
* Generates Base64-encoded credentials from locally stored username and password.
*
* @return credentials
*/
public String getProxyCredentials() {
return new String(Base64.encode((proxyUser + ":" + proxyPassword).getBytes()));
}
private byte[] buildMultipartBody(Map<String, Object> parameters, String boundary) {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
try {
buffer.write(("--" + boundary + "\r\n").getBytes(CHARSET_NAME));
for (Entry<String, Object> entry : parameters.entrySet()) {
String key = entry.getKey();
writeParam(key, entry.getValue(), buffer, boundary);
}
} catch (IOException e) {
throw new FlickrRuntimeException(e);
}
if (Flickr.debugRequest) {
String output = new String(buffer.toByteArray());
logger.debug("Multipart body:\n" + output);
}
return buffer.toByteArray();
}
private void writeParam(String name, Object value, ByteArrayOutputStream buffer, String boundary) throws IOException {
if (value instanceof InputStream) {
buffer.write(("Content-Disposition: form-data; name=\"" + name + "\"; filename=\"image.jpg\";\r\n").getBytes(CHARSET_NAME));
buffer.write(("Content-Type: image/jpeg" + "\r\n\r\n").getBytes(CHARSET_NAME));
InputStream in = (InputStream) value;
byte[] buf = new byte[512];
@SuppressWarnings("unused")
int res = -1;
while ((res = in.read(buf)) != -1) {
buffer.write(buf);
}
buffer.write(("\r\n" + "--" + boundary + "\r\n").getBytes(CHARSET_NAME));
} else if (value instanceof byte[]) {
buffer.write(("Content-Disposition: form-data; name=\"" + name + "\"; filename=\"image.jpg\";\r\n").getBytes(CHARSET_NAME));
buffer.write(("Content-Type: image/jpeg" + "\r\n\r\n").getBytes(CHARSET_NAME));
buffer.write((byte[]) value);
buffer.write(("\r\n" + "--" + boundary + "\r\n").getBytes(CHARSET_NAME));
} else {
buffer.write(("Content-Disposition: form-data; name=\"" + name + "\"\r\n\r\n").getBytes(CHARSET_NAME));
buffer.write(((String) value).getBytes(CHARSET_NAME));
buffer.write(("\r\n" + "--" + boundary + "\r\n").getBytes(CHARSET_NAME));
}
}
private void setTimeouts(HttpURLConnection conn) {
if (connectTimeoutMs != null) {
conn.setConnectTimeout(connectTimeoutMs);
}
if (readTimeoutMs != null) {
conn.setReadTimeout(readTimeoutMs);
}
}
private void setTimeouts(OAuthRequest request) {
if (connectTimeoutMs != null) {
request.setConnectTimeout(connectTimeoutMs, TimeUnit.MILLISECONDS);
}
if (readTimeoutMs != null) {
request.setReadTimeout(readTimeoutMs, TimeUnit.MILLISECONDS);
}
}
public void setConnectTimeoutMs(Integer connectTimeoutMs) {
this.connectTimeoutMs = connectTimeoutMs;
}
public void setReadTimeoutMs(Integer readTimeoutMs) {
this.readTimeoutMs = readTimeoutMs;
}
}