cloudcmd/lib/server/join.js
2014-08-14 04:57:13 -04:00

102 lines
2.8 KiB
JavaScript

(function() {
'use strict';
var DIR = '../',
DIR_SERVER = DIR + 'server/',
files = require(DIR_SERVER + 'files'),
ponse = require(DIR_SERVER + 'ponse'),
Util = require(DIR + 'util'),
zlib = require('zlib');
module.exports = function(before) {
return join.bind(null, before);
};
function join(before, req, res, next) {
var names,
exec = Util.exec,
readFunc = exec.with(readPipe, req, res),
path = ponse.getPathName(req),
regExp = new RegExp('^/join/'),
regExpFile = new RegExp('^/join/join.js$'),
isJoin = path.match(regExp),
isJoinFile = path.match(regExpFile);
if (isJoinFile) {
ponse.sendFile({
name : __dirname + '/../join.js',
gzip : true,
request : req,
response: res
});
} else if (!isJoin) {
next();
} else {
names = parse(path);
exec.if(!before, readFunc, function(callback) {
before(names, callback);
});
}
return isJoin;
}
function parse(url) {
var names,
isStr = typeof url === 'string';
if (!isStr)
throw(Error('url must be string!'));
names = url.replace('/join', '')
.split(':');
return names;
}
function readPipe(req, res, names) {
var stream,
path = ponse.getPathName(req),
gzip = zlib.createGzip(),
isGzip = ponse.isGZIP(req);
ponse.setHeader({
name : names[0],
cache : true,
gzip : isGzip,
request : req,
response : res
});
stream = isGzip ? gzip : res;
files.readPipe(names, stream, function(error) {
var msg = '';
if (error) {
Util.log(error);
msg = error.message;
if (res.headersSent)
stream.end(msg);
else
ponse.sendError(msg, {
name : path,
gzip : isGzip,
request : req,
response : res
});
}
}
);
/*
* pipe should be setted up after
* readPipe called with stream param
*/
if (isGzip)
gzip.pipe(res);
}
})();