forked from cramforce/streamie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitter-rest-proxy.js
38 lines (33 loc) · 1.28 KB
/
twitter-rest-proxy.js
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
var sys = require('sys'),
http = require('http');
var base = "https://api.twitter.com";
exports.proxy = function (requester, serverRequest, serverResponse, data) {
var url = serverRequest.url + (data ? '?'+data : ''); // for now send post data via Query String. (bug in node-oauth with post not going into signature)
//console.log("Onto twitter "+serverRequest.method);
exports.client(requester, url, serverRequest.method, function (error, request) {
if(error) {
response.writeHead(501, {
'Content-Type': "text/plain"
});
response.end(error+"");
console.log("Twitter OAuth Error "+error);
} else {
//console.log("Got request");
request.on("response", function (response) {
response.setEncoding('utf8');
//console.log("Got Twitter response "+response.statusCode + " "+JSON.stringify(response.headers));
serverResponse.writeHead(response.statusCode, response.headers);
response.on("data", function (chunk) {
serverResponse.write(chunk);
});
response.on("end", function () {
serverResponse.end()
});
})
request.end()
}
});
}
exports.client = function (requester, path, method, cb, data) { // cb(error, request)
requester(base+path, method, cb, data)
}