mirror of
https://github.com/etesync/android
synced 2024-12-03 21:38:37 +00:00
29 lines
779 B
JavaScript
29 lines
779 B
JavaScript
|
var roboHydra = require("robohydra"),
|
||
|
roboHydraHeads = roboHydra.heads,
|
||
|
roboHydraHead = roboHydraHeads.RoboHydraHead;
|
||
|
|
||
|
SimpleResponseHead = roboHydraHeads.roboHydraHeadType({
|
||
|
name: 'Simple HTTP Response',
|
||
|
mandatoryProperties: [ 'path', 'status' ],
|
||
|
optionalProperties: [ 'headers', 'body' ],
|
||
|
|
||
|
parentPropBuilder: function() {
|
||
|
var head = this;
|
||
|
return {
|
||
|
path: this.path,
|
||
|
handler: function(req,res,next) {
|
||
|
res.statusCode = head.status;
|
||
|
if (typeof head.headers != 'undefined')
|
||
|
res.headers = head.headers;
|
||
|
if (typeof head.body != 'undefined')
|
||
|
res.write(head.body);
|
||
|
else
|
||
|
res.write();
|
||
|
res.end();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
module.exports = SimpleResponseHead;
|