anyproxy/lib/recorder.js
2020-01-01 16:45:58 +08:00

367 lines
9.0 KiB
JavaScript

'use strict'
//start recording and share a list when required
const Datastore = require('nedb'),
path = require('path'),
fs = require('fs'),
logUtil = require('./log'),
events = require('events'),
iconv = require('iconv-lite'),
fastJson = require('fast-json-stringify'),
proxyUtil = require('./util');
const wsMessageStingify = fastJson({
title: 'ws message stringify',
type: 'object',
properties: {
time: {
type: 'integer'
},
message: {
type: 'string'
},
isToServer: {
type: 'boolean'
}
}
});
const BODY_FILE_PRFIX = 'res_body_';
const WS_MESSAGE_FILE_PRFIX = 'ws_message_';
const CACHE_DIR_PREFIX = 'cache_r';
function getCacheDir() {
const rand = Math.floor(Math.random() * 1000000),
cachePath = path.join(proxyUtil.getAnyProxyPath('cache'), './' + CACHE_DIR_PREFIX + rand);
fs.mkdirSync(cachePath);
return cachePath;
}
function normalizeInfo(id, info) {
const 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;
const contentType = info.resHeader['content-type'] || info.resHeader['Content-Type'];
if (contentType) {
singleRecord.mime = contentType.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;
}
class Recorder extends events.EventEmitter {
constructor(config) {
super(config);
this.globalId = 1;
this.cachePath = getCacheDir();
this.db = new Datastore();
this.recordBodyMap = []; // id - body
}
setDbAutoCompact() {
this.db.persistence.setAutocompactionInterval(5001);
}
stopDbAutoCompact() {
try {
this.db.persistence.stopAutocompaction();
} catch (e) {
logUtil.printLog(e, logUtil.T_ERR);
}
}
emitUpdate(id, info) {
const self = this;
if (info) {
self.emit('update', info);
} else {
self.getSingleRecord(id, (err, doc) => {
if (!err && !!doc && !!doc[0]) {
self.emit('update', doc[0]);
}
});
}
}
emitUpdateLatestWsMessage(id, message) {
this.emit('updateLatestWsMsg', message);
}
updateRecord(id, info) {
if (id < 0) return;
const self = this;
const db = self.db;
const finalInfo = normalizeInfo(id, info);
db.update({ _id: id }, finalInfo);
self.updateRecordBody(id, info);
self.emitUpdate(id, finalInfo);
}
/**
* This method shall be called at each time there are new message
*
*/
updateRecordWsMessage(id, message) {
if (id < 0) return;
try {
this.getCacheFile(WS_MESSAGE_FILE_PRFIX + id, (err, recordWsMessageFile) => {
if (err) return;
fs.appendFile(recordWsMessageFile, wsMessageStingify(message) + ',', () => {});
});
} catch (e) {
console.error(e);
logUtil.error(e.message + e.stack);
}
this.emitUpdateLatestWsMessage(id, {
id: id,
message: message
});
}
updateExtInfo(id, extInfo) {
const self = this;
const db = self.db;
db.update({ _id: id }, { $set: { ext: extInfo } }, {}, (err, nums) => {
if (!err) {
self.emitUpdate(id);
}
});
}
appendRecord(info) {
if (info.req.headers.anyproxy_web_req) { //TODO request from web interface
return -1;
}
const self = this;
const db = self.db;
const thisId = self.globalId++;
const finalInfo = normalizeInfo(thisId, info);
db.insert(finalInfo);
self.updateRecordBody(thisId, info);
self.emitUpdate(thisId, finalInfo);
return thisId;
}
updateRecordBody(id, info) {
const self = this;
if (id === -1) return;
if (!id || typeof info.resBody === 'undefined') return;
//add to body map
//ignore image data
self.getCacheFile(BODY_FILE_PRFIX + id, (err, bodyFile) => {
if (err) return;
fs.writeFile(bodyFile, info.resBody, () => {});
});
}
/**
* get body and websocket file
*
*/
getBody(id, cb) {
const self = this;
if (id < 0) {
cb && cb('');
return;
}
self.getCacheFile(BODY_FILE_PRFIX + id, (error, bodyFile) => {
if (error) {
cb && cb(error);
return;
}
fs.access(bodyFile, fs.F_OK || fs.R_OK, (err) => {
if (err) {
cb && cb(err);
} else {
fs.readFile(bodyFile, cb);
}
});
});
}
getDecodedBody(id, cb) {
const self = this;
const result = {
method: '',
type: 'unknown',
mime: '',
content: ''
};
self.getSingleRecord(id, (err, doc) => {
//check whether this record exists
if (!doc || !doc[0]) {
cb(new Error('failed to find record for this id'));
return;
}
// also put the `method` back, so the client can decide whether to load ws messages
result.method = doc[0].method;
self.getBody(id, (error, bodyContent) => {
if (error) {
cb(error);
} else if (!bodyContent) {
cb(null, result);
} else {
const record = doc[0],
resHeader = record.resHeader || {};
try {
const headerStr = JSON.stringify(resHeader),
charsetMatch = headerStr.match(/charset='?([a-zA-Z0-9-]+)'?/),
contentType = resHeader && (resHeader['content-type'] || resHeader['Content-Type']);
if (charsetMatch && charsetMatch.length) {
const currentCharset = charsetMatch[1].toLowerCase();
if (currentCharset !== 'utf-8' && iconv.encodingExists(currentCharset)) {
bodyContent = iconv.decode(bodyContent, currentCharset);
}
result.content = bodyContent.toString();
result.type = contentType && /application\/json/i.test(contentType) ? 'json' : 'text';
} else if (contentType && /image/i.test(contentType)) {
result.type = 'image';
result.content = bodyContent;
} else {
result.type = contentType;
result.content = bodyContent.toString();
}
result.mime = contentType;
result.fileName = path.basename(record.path);
result.statusCode = record.statusCode;
} catch (e) {
console.error(e);
}
cb(null, result);
}
});
});
}
/**
* get decoded WebSoket messages
*
*/
getDecodedWsMessage(id, cb) {
if (id < 0) {
cb && cb([]);
return;
}
this.getCacheFile(WS_MESSAGE_FILE_PRFIX + id, (outError, wsMessageFile) => {
if (outError) {
cb && cb(outError);
return;
}
fs.access(wsMessageFile, fs.F_OK || fs.R_OK, (err) => {
if (err) {
cb && cb(err);
} else {
fs.readFile(wsMessageFile, 'utf8', (error, content) => {
if (error) {
cb && cb(err);
}
try {
// remove the last dash "," if it has, since it's redundant
// and also add brackets to make it a complete JSON structure
content = `[${content.replace(/,$/, '')}]`;
const messages = JSON.parse(content);
cb(null, messages);
} catch (e) {
console.error(e);
logUtil.error(e.message + e.stack);
cb(e);
}
});
}
});
});
}
getSingleRecord(id, cb) {
const self = this;
const db = self.db;
db.find({ _id: parseInt(id, 10) }, cb);
}
getSummaryList(cb) {
const self = this;
const db = self.db;
db.find({}, cb);
}
getRecords(idStart, limit, cb) {
const self = this;
const db = self.db;
limit = limit || 10;
idStart = typeof idStart === 'number' ? idStart : (self.globalId - limit);
db.find({ _id: { $gte: parseInt(idStart, 10) } })
.sort({ _id: 1 })
.limit(limit)
.exec(cb);
}
clear() {
logUtil.printLog('clearing cache file...');
const self = this;
proxyUtil.deleteFolderContentsRecursive(self.cachePath, true);
}
getCacheFile(fileName, cb) {
const self = this;
const cachePath = self.cachePath;
const filepath = path.join(cachePath, fileName);
if (filepath.indexOf(cachePath) !== 0) {
cb && cb(new Error('invalid cache file path'));
} else {
cb && cb(null, filepath);
return filepath;
}
}
}
module.exports = Recorder;