* feat: 权限验证功能 * chore: v2.10.0 * feat: 500 服务异常页面 * feat: 只有结束才会滚动到底部 * chore: 修改 CHANGELOG * chore: 不存在时输出默认报错
20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
const auth = async (req, res, next) => {
|
|
const AUTH_SECRET_KEY = process.env.AUTH_SECRET_KEY
|
|
if (typeof AUTH_SECRET_KEY === 'string' && AUTH_SECRET_KEY.length > 0) {
|
|
try {
|
|
const Authorization = req.header('Authorization')
|
|
if (!Authorization || Authorization.replace('Bearer ', '').trim() !== AUTH_SECRET_KEY.trim())
|
|
throw new Error('Error: 无访问权限 | No access rights')
|
|
next()
|
|
}
|
|
catch (error) {
|
|
res.send({ status: 'Unauthorized', message: error.message ?? 'Please authenticate.', data: null })
|
|
}
|
|
}
|
|
else {
|
|
next()
|
|
}
|
|
}
|
|
|
|
export { auth }
|