ESLint说来自第一行的请求和响应是未使用的,但是如果我删除了lint表示req.headers.authorization不存在,所以我从函数中导入了它,并且intelissense工作了,但是现在说它是未使用的,我该如何解决这个问题呢?我想说的是,我的函数的this参数的类型是一个请求,并且它们具有授权属性。
顺便说一句,我正在使用单例模式,这个函数将被调用,在云函数中传递req和res参数
import { Request, Response } from 'firebase-functions';
import { auth } from 'firebase-admin';
const authInstance = auth();
export class Authenticator {
static instance: Authenticator;
private constructor() {}
static getInstance() {
if (Authenticator.instance === null) {
Authenticator.instance = new Authenticator();
}
return Authenticator.instance;
}
async authenticate(
req: Request,
res: Response,
log: boolean = false
): Promise<void> {
if (
!req.headers.authorization ||
!req.headers.authorization.startsWith('Bearer ')
) {
const response = {
code: 'auth/missing-argument',
message: 'Unauthorized Access',
};
res.status(401).json(response);
}
const token = req.headers.authorization.split('Bearer ')[1];
try {
const decodedToken = await authInstance.verifyIdToken(token);
if (log === true) {
const user = await authInstance.getUser(decodedToken.uid);
const logInfo = {
userId: decodedToken.uid,
user: user.displayName,
email: user.email,
timeGenerated: decodedToken.iat,
time: new Date().toDateString(),
};
console.log(logInfo);
}
} catch (error) {
console.log(error);
if (error.code === 'auth/argument-error') {
const response = {
code: error.code,
message:
'Something wrong with your TOKEN, please make sure that you passed the entire string in JWT format',
};
res.status(400).json(response);
} else if (error.code === 'auth/id-token-expired') {
const response = {
code: error.code,
message:
'Unauthorized access, your token expired. Get a fresh token from your client and try again',
};
res.status(401).json(response);
} else {
const response = {
code: error.code,
message:
'Internal Error, check your status code and contact support!',
};
res.status(500).json(response);
}
}
}
}发布于 2020-04-22 18:10:45
如果对firebase函数使用eslint选项,则需要编辑函数/.eslintrc.json文件并添加以下内容:
"parserOptions": {
"ecmaVersion": 2017
}, 如果对你有效,请让我知道。
https://stackoverflow.com/questions/61353849
复制相似问题