本文整理汇总了TypeScript中basic-auth.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: unauthorized
const auth = (req, res, next) => {
function unauthorized(res) {
res.set('WWW-Authenticate', 'Basic realm=Authorization Required');
return res.sendStatus(401);
};
const basic = basicAuth(req);
if (!basic) { unauthorized(res);}
User.findOne({
'name': basic.name
}, function(err, user) {
if (err) {
return next(err);
};
if (!user) {
return unauthorized(res);
} else {
user.comparePassword(basic.pass, function(err, isMatch) {
if (err) {
return next(err);
};
if (isMatch) {
return next();
} else {
return unauthorized(res);
}
})
}
});
}
示例2: authenticate
export function authenticate (
user: string, password: string, req: any, res: any, next: any)
{
console.log('authenticating request');
const auth = Auth(req);
if (!auth || auth.name !== user || auth.pass !== password) {
res.setHeader('www-authenticate', 'basic realm=authorization required');
return res.sendStatus(401);
} else {
next();
}
}
示例3: function
auth.get('/basic', function (req, res, next) {
var user = basicauth(req);
console.log(user);
var model = {
title: 'Basic Authentication'
};
if (!user) {
res.statusCode = 401;
res.setHeader('WWW-Authenticate', 'Basic');
res.render(root + '/failure', model);
return;
}
// basic-auth module returns a user with name and pass (not username or password).
if (user.name === 'username' && user.pass === 'password') {
res.render(root + '/success', model);
} else {
res.statusCode = 401;
res.setHeader('WWW-Authenticate', 'Basic');
res.render(root + '/failure', model);
}
});