nodejs 실 용 예시 축소 복원

2537 단어 nodejs축소 복원
사고방식 은 매우 간단 하 다.1.httpserver 에서 복원 해 야 할 URL 가 져 오기;2.http client 재 귀 요청 이 url 을 사용 하여 http status not in(302,301)을 발견 할 때 까지 요청 합 니 다.3.원 url 을 되 돌려 줍 니 다.좋 습 니 다.코드 는 다음 과 같 습 니 다
 
var net = require('net'),
http = require('http'),
url = require('url'),
fs = require('fs');
var DEFAULT_PORTS = {
'http:': 80,
'https:': 443
};
var INDEX_TPL = fs.readFileSync('index.html');
function _write(str, res, content_type) {
if(res.jsonp_cb) {
str = res.jsonp_cb + '("' + str + '")';
}
res.writeHead(200, {
'Content-Length': str.length,
'Content-Type': content_type || 'text/plain'
});
res.end(str);
};
function expand(short_url, res) {
var info = url.parse(short_url);
// console.log('info: ' + JSON.stringify(info));
if(info.protocol != 'http:') { // https url?
_write(short_url, res);
return;
}
var client = http.createClient(info.port || DEFAULT_PORTS[info.protocol], info.hostname);
var path = info.pathname || '/';
if(info.search) {
path += info.search;
}
var headers = {
host: info.hostname,
'User-Agent': 'NodejsSpider/1.0'
};
var request = client.request('GET', path, headers);
request.end();
request.on('response', function (response) {
if(response.statusCode == 302 || response.statusCode == 301) {
expand(response.headers.location, res);
} else {
_write(short_url, res);
}
});
};
//expand('http://sinaurl.cn/hbMUII');
// http
http.createServer(function(req, res){
if(req.url.indexOf('/api?') == 0) {
var params = url.parse(req.url, true);
if(params.query && params.query.u) {
if(params.query.cb) { // jsonp
res.jsonp_cb = params.query.cb;
}
expand(params.query.u, res);
} else {
_write('', res);
}
} else {
_write(INDEX_TPL, res, 'text/html');
}
}).listen(1235);
process.on('uncaughtException', function (err) {
console.log('Caught exception: ' + err);
});
웹 서버 를 시작 하 십시오.$node urlexpand.js 브 라 우 저 를 열 고 직접 방문 하 십시오.http://127.0.0.1:1235/api?u=http://is.gd/imWyT 내 테스트 서버 에 접근 하기:http://yongwo.de:1235/api?u=http://is.gd/imWyT&cb=foo

좋은 웹페이지 즐겨찾기