2013-08-17 07:15:57 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies.
|
|
|
|
*/
|
|
|
|
|
2013-08-28 04:23:11 +00:00
|
|
|
var debug = require('debug')('koa:application');
|
2013-08-17 07:15:57 +00:00
|
|
|
var Emitter = require('events').EventEmitter;
|
2014-10-01 12:12:20 +00:00
|
|
|
var onFinished = require('on-finished');
|
|
|
|
var response = require('./response');
|
2013-08-17 07:15:57 +00:00
|
|
|
var compose = require('koa-compose');
|
2014-05-01 23:25:08 +00:00
|
|
|
var isJSON = require('koa-is-json');
|
2013-11-14 02:34:15 +00:00
|
|
|
var context = require('./context');
|
|
|
|
var request = require('./request');
|
2014-10-01 12:12:20 +00:00
|
|
|
var statuses = require('statuses');
|
2013-11-14 02:34:15 +00:00
|
|
|
var Cookies = require('cookies');
|
2013-12-27 21:56:21 +00:00
|
|
|
var accepts = require('accepts');
|
2013-12-19 18:03:08 +00:00
|
|
|
var assert = require('assert');
|
2014-05-01 23:25:08 +00:00
|
|
|
var Stream = require('stream');
|
2013-08-17 07:15:57 +00:00
|
|
|
var http = require('http');
|
2014-03-11 18:01:33 +00:00
|
|
|
var only = require('only');
|
2013-08-17 07:15:57 +00:00
|
|
|
var co = require('co');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Application prototype.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var app = Application.prototype;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expose `Application`.
|
|
|
|
*/
|
|
|
|
|
|
|
|
exports = module.exports = Application;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a new `Application`.
|
|
|
|
*
|
|
|
|
* @api public
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Application() {
|
|
|
|
if (!(this instanceof Application)) return new Application;
|
|
|
|
this.env = process.env.NODE_ENV || 'development';
|
|
|
|
this.subdomainOffset = 2;
|
|
|
|
this.poweredBy = true;
|
|
|
|
this.middleware = [];
|
2013-11-14 02:34:15 +00:00
|
|
|
this.context = Object.create(context);
|
|
|
|
this.request = Object.create(request);
|
|
|
|
this.response = Object.create(response);
|
2013-08-17 07:15:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inherit from `Emitter.prototype`.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Application.prototype.__proto__ = Emitter.prototype;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shorthand for:
|
|
|
|
*
|
|
|
|
* http.createServer(app.callback()).listen(...)
|
|
|
|
*
|
|
|
|
* @param {Mixed} ...
|
|
|
|
* @return {Server}
|
|
|
|
* @api public
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.listen = function(){
|
2013-11-27 05:26:05 +00:00
|
|
|
debug('listen');
|
2013-08-17 07:15:57 +00:00
|
|
|
var server = http.createServer(this.callback());
|
|
|
|
return server.listen.apply(server, arguments);
|
|
|
|
};
|
|
|
|
|
2014-03-11 18:01:33 +00:00
|
|
|
/**
|
|
|
|
* Return JSON representation.
|
2014-08-02 11:10:07 +00:00
|
|
|
* We only bother showing settings.
|
2014-03-11 18:01:33 +00:00
|
|
|
*
|
|
|
|
* @return {Object}
|
|
|
|
* @api public
|
|
|
|
*/
|
|
|
|
|
2014-08-02 11:10:07 +00:00
|
|
|
app.inspect =
|
2014-03-11 18:01:33 +00:00
|
|
|
app.toJSON = function(){
|
|
|
|
return only(this, [
|
|
|
|
'subdomainOffset',
|
|
|
|
'poweredBy',
|
|
|
|
'env'
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
/**
|
|
|
|
* Use the given middleware `fn`.
|
|
|
|
*
|
2013-12-19 18:03:08 +00:00
|
|
|
* @param {GeneratorFunction} fn
|
2013-08-17 07:15:57 +00:00
|
|
|
* @return {Application} self
|
|
|
|
* @api public
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.use = function(fn){
|
2014-08-20 20:28:34 +00:00
|
|
|
assert(fn && 'GeneratorFunction' == fn.constructor.name, 'app.use() requires a generator function');
|
2013-12-30 00:04:06 +00:00
|
|
|
debug('use %s', fn._name || fn.name || '-');
|
2013-08-17 07:15:57 +00:00
|
|
|
this.middleware.push(fn);
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a request handler callback
|
2013-08-30 21:09:18 +00:00
|
|
|
* for node's native http server.
|
2013-08-17 07:15:57 +00:00
|
|
|
*
|
|
|
|
* @return {Function}
|
|
|
|
* @api public
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.callback = function(){
|
|
|
|
var mw = [respond].concat(this.middleware);
|
2013-11-08 00:15:47 +00:00
|
|
|
var gen = compose(mw);
|
2013-12-20 06:33:35 +00:00
|
|
|
var fn = co(gen);
|
2013-08-17 07:15:57 +00:00
|
|
|
var self = this;
|
|
|
|
|
2014-05-02 00:46:09 +00:00
|
|
|
if (!this.listeners('error').length) this.on('error', this.onerror);
|
|
|
|
|
2013-12-20 07:13:37 +00:00
|
|
|
return function(req, res){
|
2014-04-29 04:17:30 +00:00
|
|
|
res.statusCode = 404;
|
2013-11-14 02:34:15 +00:00
|
|
|
var ctx = self.createContext(req, res);
|
2014-08-16 09:58:06 +00:00
|
|
|
onFinished(res, ctx.onerror);
|
2013-12-20 07:13:37 +00:00
|
|
|
fn.call(ctx, ctx.onerror);
|
2013-08-17 07:15:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-14 02:34:15 +00:00
|
|
|
/**
|
|
|
|
* Initialize a new context.
|
|
|
|
*
|
|
|
|
* @api private
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.createContext = function(req, res){
|
|
|
|
var context = Object.create(this.context);
|
|
|
|
var request = context.request = Object.create(this.request);
|
|
|
|
var response = context.response = Object.create(this.response);
|
|
|
|
context.app = request.app = response.app = this;
|
|
|
|
context.req = request.req = response.req = req;
|
|
|
|
context.res = request.res = response.res = res;
|
|
|
|
request.ctx = response.ctx = context;
|
2013-11-18 22:10:11 +00:00
|
|
|
request.response = response;
|
|
|
|
response.request = request;
|
2013-11-14 02:34:15 +00:00
|
|
|
context.onerror = context.onerror.bind(context);
|
2013-11-14 22:18:05 +00:00
|
|
|
context.originalUrl = request.originalUrl = req.url;
|
2013-11-15 18:03:40 +00:00
|
|
|
context.cookies = new Cookies(req, res, this.keys);
|
2013-12-27 21:56:21 +00:00
|
|
|
context.accept = request.accept = accepts(req);
|
2013-11-14 02:34:15 +00:00
|
|
|
return context;
|
2013-11-15 18:09:56 +00:00
|
|
|
};
|
2013-11-14 02:34:15 +00:00
|
|
|
|
2013-08-22 02:47:56 +00:00
|
|
|
/**
|
|
|
|
* Default error handler.
|
|
|
|
*
|
|
|
|
* @param {Error} err
|
|
|
|
* @api private
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.onerror = function(err){
|
2014-05-23 13:15:03 +00:00
|
|
|
assert(err instanceof Error, 'non-error thrown: ' + err);
|
|
|
|
|
2013-09-14 03:54:52 +00:00
|
|
|
if (404 == err.status) return;
|
2014-05-01 23:29:37 +00:00
|
|
|
if ('test' == this.env) return;
|
2014-05-23 13:15:03 +00:00
|
|
|
|
|
|
|
var msg = err.stack || err.toString();
|
2014-05-01 23:18:40 +00:00
|
|
|
console.error();
|
2014-05-23 13:15:03 +00:00
|
|
|
console.error(msg.replace(/^/gm, ' '));
|
2014-05-01 23:18:40 +00:00
|
|
|
console.error();
|
2013-08-22 02:47:56 +00:00
|
|
|
};
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
/**
|
|
|
|
* Response middleware.
|
|
|
|
*/
|
|
|
|
|
2014-03-24 18:21:15 +00:00
|
|
|
function *respond(next) {
|
2013-11-08 00:15:47 +00:00
|
|
|
if (this.app.poweredBy) this.set('X-Powered-By', 'koa');
|
2013-09-01 23:27:03 +00:00
|
|
|
|
2013-12-22 22:48:28 +00:00
|
|
|
yield *next;
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2014-04-15 15:39:40 +00:00
|
|
|
// allow bypassing koa
|
2014-01-24 22:38:40 +00:00
|
|
|
if (false === this.respond) return;
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
var res = this.res;
|
2014-02-15 10:06:08 +00:00
|
|
|
if (res.headersSent || !this.writable) return;
|
2013-12-22 17:26:21 +00:00
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
var body = this.body;
|
2014-04-29 04:17:30 +00:00
|
|
|
var code = this.status;
|
2013-08-17 22:36:51 +00:00
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
// ignore body
|
2014-10-01 12:12:20 +00:00
|
|
|
if (statuses.empty[code]) {
|
2014-04-09 16:21:15 +00:00
|
|
|
// strip headers
|
|
|
|
this.body = null;
|
|
|
|
return res.end();
|
|
|
|
}
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2014-04-15 02:06:32 +00:00
|
|
|
if ('HEAD' == this.method) {
|
|
|
|
if (isJSON(body)) this.length = Buffer.byteLength(JSON.stringify(body));
|
|
|
|
return res.end();
|
|
|
|
}
|
2014-03-23 11:01:14 +00:00
|
|
|
|
2014-04-15 15:39:40 +00:00
|
|
|
// status body
|
2014-04-15 02:06:32 +00:00
|
|
|
if (null == body) {
|
2013-11-08 00:15:47 +00:00
|
|
|
this.type = 'text';
|
2014-10-01 12:12:20 +00:00
|
|
|
body = this.message || String(code);
|
2014-04-13 02:23:57 +00:00
|
|
|
if (body) this.length = Buffer.byteLength(body);
|
|
|
|
return res.end(body);
|
2013-11-08 00:15:47 +00:00
|
|
|
}
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2014-04-15 15:39:40 +00:00
|
|
|
// responses
|
2014-04-15 02:06:32 +00:00
|
|
|
if (Buffer.isBuffer(body)) return res.end(body);
|
|
|
|
if ('string' == typeof body) return res.end(body);
|
|
|
|
if (body instanceof Stream) return body.pipe(res);
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
// body: json
|
2014-02-01 02:39:47 +00:00
|
|
|
body = JSON.stringify(body);
|
2013-11-08 00:15:47 +00:00
|
|
|
this.length = Buffer.byteLength(body);
|
|
|
|
res.end(body);
|
2014-03-24 18:21:15 +00:00
|
|
|
}
|