cloudcmd/lib/server/join.js
2014-06-20 09:51:55 -04:00

78 lines
2.2 KiB
JavaScript

(function() {
'use strict';
var DIR = '../',
DIR_SERVER = DIR + 'server/',
main = require(DIR_SERVER + 'main'),
files = require(DIR_SERVER + 'files'),
Util = require(DIR + 'util'),
CloudFunc = require(DIR + 'cloudfunc'),
zlib = require('zlib');
module.exports = join;
function join(before, req, res, callback) {
var names,
exec = Util.exec,
readFunc = exec.with(readPipe, req, res),
path = main.getPathName(req),
isJoin = CloudFunc.isJoinURL(path);
if (!isJoin) {
exec(callback);
} else {
names = CloudFunc.getJoinArray(path);
exec.if(!before, readFunc, function(callback) {
before(names, callback);
});
}
return isJoin;
}
function readPipe(req, res, names) {
var stream,
path = main.getPathName(req),
gzip = zlib.createGzip(),
isGzip = main.isGZIP(req);
main.mainSetHeader({
name : names[0],
cache : true,
gzip : isGzip,
request : req,
response : res
});
stream = isGzip ? gzip : res;
files.readPipe({
names : names,
write : stream,
callback : function(error) {
var errorStr;
if (error)
if (!res.headersSent)
main.sendError({
request : req,
response : res,
name : path
}, error);
else {
Util.log(error);
errorStr = error.toString();
stream.end(errorStr);
}
}
});
/*
* pipe should be setted up after
* readPipe called with stream param
*/
if (isGzip)
gzip.pipe(res);
}
})();