2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/README.md

156 lines
6.0 KiB
Markdown
Raw Normal View History

2013-11-15 15:16:16 +01:00
# passport.socketio
> Access [passport.js](http://passportjs.org) user information from a [socket.io](http://socket.io) connection.
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
## Installation
2012-09-05 20:14:36 +02:00
```
npm install passport.socketio
```
2013-11-15 15:16:16 +01:00
## Example usage
2012-09-05 20:14:36 +02:00
```javascript
2013-11-15 15:16:16 +01:00
// initialize our modules
var io = require("socket.io")(server),
sessionStore = require('awesomeSessionStore'), // find a working session store (have a look at the readme)
2012-09-05 20:14:36 +02:00
passportSocketIo = require("passport.socketio");
2013-11-15 15:16:16 +01:00
// set authorization for socket.io
io.set('authorization', passportSocketIo.authorize({
cookieParse: express.cookieParse,
key: 'express.sid', // the name of the cookie where express/connect stores its session_id
secret: 'session_secret', // the session_secret to parse the cookie
store: sessionStore, // we NEED to use a sessionstore. no memorystore please
success: onAuthorizeSuccess, // *optional* callback on success - read more below
fail: onAuthorizeFail, // *optional* callback on fail/error - read more below
});
function onAuthorizeSuccess(data, accept){
console.log('successful connection to socket.io');
// The accept-callback still allows us to decide whether to
// accept the connection or not.
accept(null, true);
}
function onAuthorizeFail(data, message, error, accept){
if(critical)
throw new Error(message);
console.log('failed connection to socket.io:', message);
// We use this callback to log all of our failed connections.
accept(null, false);
}
```
## passport.socketio - Options
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
### `store` [function] **required**:
*Always* provide one. If you don't know what sessionStore to use, have a look at [this list](https://github.com/senchalabs/connect/wiki#session-stores).
Also be sure to use the same sessionStore or at least a connection to *the same collection/table/whatever*. And don't forget your `express.session()` middleware:
`app.use(express.session({ store: awesomeSessionStore }));`
For further info about this middleware see [the official documentation](http://www.senchalabs.org/connect/session.html#session).
2013-11-15 15:16:16 +01:00
### `cookieParser` [function] **required**:
You have to provide your cookieParser from express: `express.cookieParser`
2013-11-15 15:16:16 +01:00
### `key` [string] **optional**:
Defaults to `'connect.sid'`. But you're always better of to be sure and set your own key. Don't forget to also change it in your `express.session()`:
`app.use(express.session({ key: 'your.sid-key' }));`
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
### `secret` [string] **optional**:
As with `key`, also the secret you provide is optional. *But:* be sure to have one. That's always safer. You can set it like the key:
`app.use(express.session({ secret: 'pinkie ate my cupcakes!' }));`
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
### `passport` [function] **optional**:
Defaults to `require('passport')`. If you want, you can provide your own instance of passport for whatever reason.
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
### `success` [function] **optional**:
Callback which will be called everytime a *authorized* user successfuly connects to your socket.io instance. **Always** be sure to accept/reject the connection.
For that, there are two parameters: `function(data[object], accept[function])`. `data` contains all the user-information from passport.
The second parameter is for accepting/rejecting connections. Use it like this:
```javascript
// accept connection
accept(null, true);
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
// reject connection (for whatever reason)
accept(null, false);
2012-09-05 20:14:36 +02:00
```
2013-11-15 15:16:16 +01:00
### `fail` [function] **optional**:
The name of this callback may be a little confusing. While it is called when a not-authorized-user connects, it is also called when there's a error.
For debugging reasons you are provided with two additional parameters `function(data[object], message[string], error[bool], accept[function])`:
```javascript
/* ... */
function onAuthorizeFail(data, message, error, accept){
// error indicates whether the fail is due to an error or just a unauthorized client
if(error){
throw new Error(message);
} else {
console.log(message);
2013-11-15 15:54:47 +01:00
// the same accept-method as above in the success-callback
accept(null, false);
2013-11-15 15:16:16 +01:00
}
}
2013-11-15 15:54:47 +01:00
// or
// This function accepts every client unless there's an error
function onAuthorizeFail(data, message, error, accept){
console.log(message);
accept(null, !error);
}
2013-11-15 15:16:16 +01:00
```
You can use the `message` parameter for debugging/logging/etc uses.
2013-11-04 00:11:52 +01:00
2013-11-15 15:16:16 +01:00
## `socket.handshake.user`
This property is always available from inside a `io.on('connection')` handler. If the user is authorized via passport, you can access all the properties from there.
**Plus** you have the `socket.handshake.user.logged_in` property which tells you whether the user is currently authorized or not.
2012-11-16 16:43:12 +01:00
2013-11-15 15:16:16 +01:00
## Additional methods
2012-11-16 16:43:12 +01:00
2013-11-15 15:16:16 +01:00
### `passportSocketIo.filterSocketsbyUser`
This function gives you the ability to filter all connected sockets via a user property. Needs two parameters `function(io, function(user))`. Example:
```javascript
passportSocketIo.filterSocketsByUser(io, function(user){
return user.gender === 'female';
}).forEach(function(socket){
socket.send('msg', 'hello, woman!');
});
```
2013-11-19 10:52:36 +01:00
## CORS-Workaround:
If you happen to have to work with Cross-Origin-Requests (marked by socket.io as `handshake.xdomain`) then here's a workaround:
### Clientside:
You have to provide the session-cookie. If you haven't set a name yet, do it like this: `app.use(express.session({ key: 'your.sid-key' }));`
```javascript
// Note: ther's no readCookie-function built in.
// Get your own in the internetz
socket = io.connect('//' + window.location.host, {
query: 'session_id=' + readCookie('your.sid-key')
});
```
### Serverside:
Nope, there's nothing to do on the server side. Just be sure that the cookies names match.
2013-11-15 15:16:16 +01:00
## Notes:
* Does **NOT** support cookie-based sessions. eg: `express.cookieSession`
2013-11-19 10:52:36 +01:00
* If the connection fails, check if you are requesting from a client via CORS. Check `socket.handshake.xdomain === true` as there are no cookies sent. For a workaround look at the code above.
2013-11-15 15:16:16 +01:00
## Contribute
You are always welcome to open an issue or provide a pull-request!
Also check out the unit tests:
```bash
npm test
```
2012-09-05 20:14:36 +02:00
2013-11-15 15:16:16 +01:00
## License
Licensed under the MIT-License.
2012-2013 José F. Romaniello.