anyproxy/lib/recorder.js
2015-11-19 14:03:40 +08:00

233 lines
6.8 KiB
JavaScript

//start recording and share a list when required
var zlib = require('zlib'),
Datastore = require('nedb'),
util = require("util"),
path = require("path"),
fs = require("fs"),
events = require('events'),
iconv = require('iconv-lite'),
proxyUtil = require("./util"),
logUtil = require("./log");
//option.filename
function Recorder(option){
var self = this,
id = 1,
cachePath = proxyUtil.generateCacheDir(),
db;
option = option || {};
if(option.filename && typeof option.filename == "string"){
try{
if(fs.existsSync(option.filename)){
fs.writeFileSync(option.filename,""); //empty original file
}
db = new Datastore({
filename : option.filename,
autoload :true
});
db.persistence.setAutocompactionInterval(5001);
logUtil.printLog("db file : " + option.filename);
}catch(e){
logUtil.printLog(e, logUtil.T_ERR);
logUtil.printLog("Failed to load on-disk db file. Will use in-meomory db instead.", logUtil.T_ERR);
db = new Datastore();
}
}else{
//in-memory db
db = new Datastore();
}
self.recordBodyMap = []; // id - body
self.emitUpdate = function(id,info){
if(info){
self.emit("update",info);
}else{
self.getSingleRecord(id,function(err,doc){
if(!err && !!doc && !!doc[0]){
self.emit("update",doc[0]);
}
});
}
};
self.updateRecord = function(id,info){
if(id < 0 ) return;
var finalInfo = normalizeInfo(id,info);
db.update({_id:id},finalInfo);
self.updateRecordBody(id,info);
self.emitUpdate(id,finalInfo);
};
self.updateExtInfo = function(id,extInfo){
db.update({_id:id},{ $set: { ext: extInfo } },{},function(err,nums){
if(!err){
self.emitUpdate(id);
}
});
}
self.appendRecord = function(info){
if(info.req.headers.anyproxy_web_req){ //request from web interface
return -1;
}
var thisId = id++,
finalInfo = normalizeInfo(thisId,info);
db.insert(finalInfo);
self.updateRecordBody(id,info);
self.emitUpdate(id,finalInfo);
return thisId;
};
//update recordBody if exits
//TODO : trigger update callback
var BODY_FILE_PRFIX = "res_body_";
self.updateRecordBody =function(id,info){
if(id == -1) return;
if(!id || !info.resBody) return;
//add to body map
//ignore image data
var bodyFile = path.join(cachePath,BODY_FILE_PRFIX + id);
fs.writeFile(bodyFile, info.resBody);
};
self.getBody = function(id,cb){
if(id < 0){
cb && cb("");
}
var bodyFile = path.join(cachePath,BODY_FILE_PRFIX + id);
fs.access(bodyFile, fs.F_OK | fs.R_OK ,function(err){
if(err){
cb && cb(err);
}else{
fs.readFile(bodyFile,cb);
}
});
};
self.getDecodedBody = function(id,cb){
var result = {
type : "unknown",
mime : "",
content : ""
};
GLOBAL.recorder.getSingleRecord(id,function(err,doc){
//check whether this record exists
if(!doc || !doc[0]){
cb(new Error("failed to find record for this id"));
return;
}
self.getBody(id,function(err,bodyContent){
if(err){
cb(err);
}else if(!bodyContent){
cb(null,result);
}else{
var record = doc[0],
resHeader = record['resHeader'] || {};
try{
var headerStr = JSON.stringify(resHeader),
charsetMatch = headerStr.match(/charset="?([a-zA-Z0-9\-]+)"?/),
imageMatch = resHeader && resHeader["content-type"];
if(charsetMatch && charsetMatch.length){
var currentCharset = charsetMatch[1].toLowerCase();
if(currentCharset != "utf-8" && iconv.encodingExists(currentCharset)){
bodyContent = iconv.decode(bodyContent, currentCharset);
}
result.type = "text";
result.content = bodyContent.toString();
}else if(imageMatch && /image/i.test(imageMatch)){
result.type = "image";
result.mime = imageMatch;
result.content = bodyContent;
}else{
result.content = bodyContent.toString();
}
}catch(e){}
cb(null,result);
}
});
});
};
self.getSingleRecord = function(id,cb){
db.find({_id:parseInt(id)},cb);
};
self.getSummaryList = function(cb){
db.find({},cb);
};
self.getRecords = function(idStart, limit, cb){
limit = limit || 10;
idStart = typeof idStart == "number" ? idStart : (id - limit);
db.find({ _id: { $gte: parseInt(idStart) } }).limit(limit).exec(cb);
};
self.db = db;
}
util.inherits(Recorder, events.EventEmitter);
function normalizeInfo(id,info){
var singleRecord = {};
//general
singleRecord._id = id;
singleRecord.id = id;
singleRecord.url = info.url;
singleRecord.host = info.host;
singleRecord.path = info.path;
singleRecord.method = info.method;
//req
singleRecord.reqHeader = info.req.headers;
singleRecord.startTime = info.startTime;
singleRecord.reqBody = info.reqBody || "";
singleRecord.protocol = info.protocol || "";
//res
if(info.endTime){
singleRecord.statusCode= info.statusCode;
singleRecord.endTime = info.endTime;
singleRecord.resHeader = info.resHeader;
singleRecord.length = info.length;
if(info.resHeader['content-type']){
singleRecord.mime = info.resHeader['content-type'].split(";")[0];
}else{
singleRecord.mime = "";
}
singleRecord.duration = info.endTime - info.startTime;
}else{
singleRecord.statusCode= "";
singleRecord.endTime = "";
singleRecord.resHeader = "";
singleRecord.length = "";
singleRecord.mime = "";
singleRecord.duration = "";
}
return singleRecord;
}
module.exports = Recorder;