mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
|
|
import express = require('express');
|
|
import jwt = require('express-jwt');
|
|
import unless = require('express-unless');
|
|
|
|
var app = express();
|
|
|
|
app.use(jwt({
|
|
secret: 'shhhhhhared-secret'
|
|
}));
|
|
app.use(jwt({
|
|
secret: 'shhhhhhared-secret',
|
|
userProperty: 'auth'
|
|
}));
|
|
|
|
app.use(jwt({
|
|
secret: (req: express.Request,
|
|
payload: any,
|
|
done: (err: any, secret: string) => void) => {
|
|
done(null, 'shhhhhhared-secret');
|
|
},
|
|
userProperty: 'auth'
|
|
}));
|
|
|
|
app.use(jwt({
|
|
secret: (req: express.Request,
|
|
header: any,
|
|
payload: any,
|
|
done: (err: any, secret: string) => void) => {
|
|
done(null, 'shhhhhhared-secret');
|
|
},
|
|
userProperty: 'auth'
|
|
}));
|
|
|
|
var jwtCheck = jwt({
|
|
secret: 'shhhhhhared-secret'
|
|
});
|
|
jwtCheck.unless = unless;
|
|
app.use(jwtCheck.unless({ path: '/api/login' }));
|
|
|
|
app.use(function (err: any, req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
if (err) {
|
|
if (err instanceof jwt.UnauthorizedError) {
|
|
res.status(err.status);
|
|
res.end();
|
|
}
|
|
} else {
|
|
next(new jwt.UnauthorizedError('invalid_token', new Error('error-message')));
|
|
}
|
|
});
|