2013-11-13 17:01:15 +00:00
# Context
A Koa Context encapsulates node's `request` and `response` objects
into a single object which provides many helpful methods for writing
web applications and APIs.
These operations are used so frequently in HTTP server development
2014-02-14 02:23:45 +00:00
that they are added at this level instead of a higher level framework,
2013-12-22 12:26:30 +00:00
which would force middleware to re-implement this common functionality.
2013-11-13 17:01:15 +00:00
2013-11-20 06:40:52 +00:00
A `Context` is created _per_ request, and is referenced in middleware
2013-12-19 04:35:38 +00:00
as the receiver, or the `this` identifier, as shown in the following
snippet:
```js
app.use(function *(){
this; // is the Context
this.request; // is a koa Request
this.response; // is a koa Response
});
```
2013-11-13 17:01:15 +00:00
2014-02-14 02:23:45 +00:00
Many of the context's accessors and methods simply delegate to their `ctx.request` or `ctx.response`
2014-02-14 17:20:29 +00:00
equivalents for convenience, and are otherwise identical. For example `ctx.type` and `ctx.length`
delegate to the `response` object, and `ctx.path` and `ctx.method` delegate to the `request` .
2014-02-14 02:23:45 +00:00
2013-11-13 17:01:15 +00:00
## API
`Context` specific methods and accessors.
### ctx.req
Node's `request` object.
### ctx.res
2013-11-20 06:40:52 +00:00
2013-11-13 17:01:15 +00:00
Node's `response` object.
2013-12-31 06:07:22 +00:00
Bypassing Koa's response handling is __not supported__ . Avoid using the following node properties:
- `res.statusCode`
- `res.writeHead()`
- `res.write()`
- `res.end()`
2013-12-26 08:11:14 +00:00
2013-11-13 17:01:15 +00:00
### ctx.request
A koa `Request` object.
### ctx.response
2013-11-20 06:40:52 +00:00
2013-11-13 17:01:15 +00:00
A koa `Response` object.
### ctx.app
Application instance reference.
### ctx.cookies.get(name, [options])
Get cookie `name` with `options` :
- `signed` the cookie requested should be signed
2014-09-20 20:19:07 +00:00
koa uses the [cookies ](https://github.com/jed/cookies ) module where options are simply passed.
2013-11-20 06:40:52 +00:00
2013-11-13 17:01:15 +00:00
### ctx.cookies.set(name, value, [options])
Set cookie `name` to `value` with `options` :
- `signed` sign the cookie value
- `expires` a `Date` for cookie expiration
- `path` cookie path, `/'` by default
- `domain` cookie domain
- `secure` secure cookie
- `httpOnly` server-accessible cookie, __true__ by default
2014-09-20 20:19:07 +00:00
koa uses the [cookies ](https://github.com/jed/cookies ) module where options are simply passed.
2013-11-20 06:40:52 +00:00
2014-09-20 20:19:07 +00:00
### ctx.throw([msg], [status], [properties])
2013-11-13 17:01:15 +00:00
Helper method to throw an error with a `.status` property
2013-12-19 04:35:38 +00:00
defaulting to `500` that will allow Koa to respond appropriately.
2013-12-18 09:30:27 +00:00
The following combinations are allowed:
2013-11-13 17:01:15 +00:00
```js
2014-08-08 20:31:28 +00:00
this.throw(403);
this.throw('name required', 400);
this.throw(400, 'name required');
this.throw('something exploded');
2013-11-13 17:01:15 +00:00
```
2013-12-20 00:23:29 +00:00
For example `this.throw('name required', 400)` is equivalent to:
2013-11-13 17:01:15 +00:00
```js
var err = new Error('name required');
err.status = 400;
throw err;
```
Note that these are user-level errors and are flagged with
2013-11-20 06:40:52 +00:00
`err.expose` meaning the messages are appropriate for
2013-11-13 17:01:15 +00:00
client responses, which is typically not the case for
error messages since you do not want to leak failure
2013-12-19 04:35:38 +00:00
details.
2013-12-25 06:59:55 +00:00
2014-08-12 20:22:33 +00:00
You may optionally pass a `properties` object which is merged into the error as-is, useful for decorating machine-friendly errors which are reported to the requester upstream.
2014-08-08 20:31:28 +00:00
```js
this.throw(401, 'access_denied', { user: user });
2014-08-12 20:22:33 +00:00
this.throw('access_denied', { user: user });
2014-08-08 20:31:28 +00:00
```
2014-09-20 20:19:07 +00:00
koa uses [http-errors ](https://github.com/jshttp/http-errors ) to create errors.
### ctx.assert(value, [msg], [status], [properties])
Helper method to throw an error similar to `.throw()`
when `!value` . Similar to node's [assert() ](http://nodejs.org/api/assert.html )
method.
```js
this.assert(this.user, 401, 'User not found. Please login!');
```
koa uses [http-assert ](https://github.com/jshttp/http-assert ) for assertions.
2014-01-24 22:38:40 +00:00
### ctx.respond
To bypass Koa's built-in response handling, you may explicitly set `this.respond = false;` . Use this if you want to write to the raw `res` object instead of letting Koa handle the response for you.
2014-05-03 21:21:07 +00:00
Note that using this is __not__ supported by Koa. This may break intended functionality of Koa middleware and Koa itself. Using this property is considered a hack and is only a convenience to those wishing to use traditional `fn(req, res)` functions and middleware within Koa.
2014-01-24 22:38:40 +00:00
2013-12-25 06:59:55 +00:00
## Request aliases
The following accessors and alias [Request ](request.md ) equivalents:
- `ctx.header`
2014-08-09 05:39:36 +00:00
- `ctx.headers`
2013-12-25 06:59:55 +00:00
- `ctx.method`
- `ctx.method=`
- `ctx.url`
- `ctx.url=`
2014-05-06 02:01:34 +00:00
- `ctx.originalUrl`
2013-12-25 06:59:55 +00:00
- `ctx.path`
- `ctx.path=`
- `ctx.query`
- `ctx.query=`
- `ctx.querystring`
- `ctx.querystring=`
- `ctx.host`
2014-05-04 14:43:58 +00:00
- `ctx.hostname`
2013-12-25 06:59:55 +00:00
- `ctx.fresh`
- `ctx.stale`
- `ctx.socket`
- `ctx.protocol`
- `ctx.secure`
- `ctx.ip`
- `ctx.ips`
- `ctx.subdomains`
- `ctx.is()`
- `ctx.accepts()`
- `ctx.acceptsEncodings()`
- `ctx.acceptsCharsets()`
- `ctx.acceptsLanguages()`
- `ctx.get()`
## Response aliases
The following accessors and alias [Response ](response.md ) equivalents:
- `ctx.body`
- `ctx.body=`
- `ctx.status`
- `ctx.status=`
2014-10-01 12:12:20 +00:00
- `ctx.message`
- `ctx.message=`
2014-02-14 17:33:10 +00:00
- `ctx.length=`
2014-03-07 02:05:01 +00:00
- `ctx.length`
2014-02-14 17:33:10 +00:00
- `ctx.type=`
2014-03-07 02:05:01 +00:00
- `ctx.type`
2013-12-25 06:59:55 +00:00
- `ctx.headerSent`
- `ctx.redirect()`
- `ctx.attachment()`
- `ctx.set()`
- `ctx.remove()`
- `ctx.lastModified=`
2014-02-14 05:42:04 +00:00
- `ctx.etag=`