conserve bandwidth

include application/json

should be using hyperquest

appplication typo

adapt res

res.text

remove superagent dependency
This commit is contained in:
Cyrus 2014-12-22 07:26:55 +08:00
parent feb4f4ee6b
commit bd191c09e5
2 changed files with 33 additions and 7 deletions

View file

@ -28,14 +28,15 @@
"bcrypt-nodejs": "0.0.3",
"cheerio": "^0.17.0",
"commander": "^2.3.0",
"event-stream": "^3.1.7",
"express": "^4.9.5",
"hyperquest": "^1.0.1",
"lodash": "~2.4.1",
"mkdirp": "^0.5.0",
"moment": "~2.7.0",
"read": "^1.0.5",
"slate-irc": "~0.7.3",
"socket.io": "~1.0.6",
"superagent": "^0.18.2"
"socket.io": "~1.0.6"
},
"devDependencies": {
"grunt": "~0.4.5",

View file

@ -1,8 +1,9 @@
var _ = require("lodash");
var cheerio = require("cheerio");
var Msg = require("../../models/msg");
var request = require("superagent");
var request = require("hyperquest");
var Helper = require("../../helper");
var es = require('event-stream');
module.exports = function(irc, network) {
var client = this;
@ -60,7 +61,7 @@ function parse(msg, url, res, client) {
switch (res.type) {
case "text/html":
var $ = cheerio.load(res.res.text);
var $ = cheerio.load(res.text);
toggle.type = "link";
toggle.head = $("title").text();
toggle.body =
@ -89,9 +90,33 @@ function parse(msg, url, res, client) {
function fetch(url, cb) {
var req = request.get(url);
req.end(function(e, res) {
if (res) {
cb(res);
var length = 0;
var limit = 1024;
req.on('response', function(res) {
if (!(/(text\/html|application\/json)/.test(res.headers['content-type']))) {
// stop wasting precious bandwidth <3
res.req.abort();
}
});
req.pipe(es.map(function(data, next) {
length += data.length;
if (length > limit) {
req.response.req.abort();
}
next(null, data);
})).pipe(es.wait(function(err, data) {
var body;
try {
body = JSON.parse(data);
} catch(e) {
console.log(data, e);
body = {};
}
data = {
text: data,
body: body,
type: req.response.headers['content-type'].split(';').shift()
};
if (!err) cb(data);
}));
}