code review: don't create auth token if using header auth
This commit is contained in:
parent
05cc23a144
commit
f74f7b1f1a
3 changed files with 45 additions and 57 deletions
|
@ -12,7 +12,7 @@ export interface UserJwtRequest extends Request {
|
||||||
user?: User
|
user?: User
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function authenticateToken(
|
export default async function isSignedIn(
|
||||||
req: UserJwtRequest,
|
req: UserJwtRequest,
|
||||||
res: Response,
|
res: Response,
|
||||||
next: NextFunction
|
next: NextFunction
|
||||||
|
@ -35,59 +35,51 @@ export default async function authenticateToken(
|
||||||
await user.save()
|
await user.save()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!token) {
|
req.user = user
|
||||||
const token = jwt.sign({ id: user.id }, config.jwt_secret, {
|
next()
|
||||||
expiresIn: "2d"
|
} else {
|
||||||
})
|
if (token == null) return res.sendStatus(401)
|
||||||
const authToken = new AuthToken({
|
|
||||||
userId: user.id,
|
const authToken = await AuthToken.findOne({ where: { token: token } })
|
||||||
token: token
|
if (authToken == null) {
|
||||||
})
|
return res.sendStatus(401)
|
||||||
await authToken.save()
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
if (authToken.deletedAt) {
|
||||||
if (token == null) return res.sendStatus(401)
|
return res.sendStatus(401).json({
|
||||||
|
message: "Token is no longer valid"
|
||||||
const authToken = await AuthToken.findOne({ where: { token: token } })
|
})
|
||||||
if (authToken == null) {
|
}
|
||||||
return res.sendStatus(401)
|
|
||||||
}
|
jwt.verify(token, config.jwt_secret, async (err: any, user: any) => {
|
||||||
|
if (err) {
|
||||||
if (authToken.deletedAt) {
|
if (config.header_auth) {
|
||||||
return res.sendStatus(401).json({
|
// if the token has expired or is invalid, we need to delete it and generate a new one
|
||||||
message: "Token is no longer valid"
|
authToken.destroy()
|
||||||
})
|
const token = jwt.sign({ id: user.id }, config.jwt_secret, {
|
||||||
}
|
expiresIn: "2d"
|
||||||
|
})
|
||||||
jwt.verify(token, config.jwt_secret, async (err: any, user: any) => {
|
const newToken = new AuthToken({
|
||||||
if (err) {
|
userId: user.id,
|
||||||
if (config.header_auth) {
|
token: token
|
||||||
// if the token has expired or is invalid, we need to delete it and generate a new one
|
})
|
||||||
authToken.destroy()
|
await newToken.save()
|
||||||
const token = jwt.sign({ id: user.id }, config.jwt_secret, {
|
} else {
|
||||||
expiresIn: "2d"
|
return res.sendStatus(403)
|
||||||
})
|
}
|
||||||
const newToken = new AuthToken({
|
}
|
||||||
userId: user.id,
|
|
||||||
token: token
|
const userObj = await UserModel.findByPk(user.id, {
|
||||||
})
|
attributes: {
|
||||||
await newToken.save()
|
exclude: ["password"]
|
||||||
} else {
|
}
|
||||||
|
})
|
||||||
|
if (!userObj) {
|
||||||
return res.sendStatus(403)
|
return res.sendStatus(403)
|
||||||
}
|
}
|
||||||
}
|
req.user = user
|
||||||
|
|
||||||
const userObj = await UserModel.findByPk(user.id, {
|
next()
|
||||||
attributes: {
|
|
||||||
exclude: ["password"]
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
if (!userObj) {
|
}
|
||||||
return res.sendStatus(403)
|
|
||||||
}
|
|
||||||
req.user = user
|
|
||||||
|
|
||||||
next()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import config from "@lib/config"
|
import config from "@lib/config"
|
||||||
import { NextFunction, Request, Response } from "express"
|
import { NextFunction, Request, Response } from "express"
|
||||||
|
|
||||||
export default function authenticateToken(
|
export default function secretKey(
|
||||||
req: Request,
|
req: Request,
|
||||||
res: Response,
|
res: Response,
|
||||||
next: NextFunction
|
next: NextFunction
|
||||||
|
|
|
@ -95,10 +95,6 @@ auth.post(
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
async (req, res) => {
|
async (req, res) => {
|
||||||
if (config.header_auth) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
const error = "User does not exist or password is incorrect"
|
const error = "User does not exist or password is incorrect"
|
||||||
const errorToThrow = new Error(error)
|
const errorToThrow = new Error(error)
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue