为什么 Koa 的重定向在另一个重定向后抛出 404?
Why is Koa's redirect throwing 404 after another redirect?
我有以下代码...
const auth = new Authentication();
mainApp.use(auth.checkToken.bind(auth));
mainApp.use(mount('/auth', auth.app));
class Authentication{
constructor() {
this.redirectApp = new Koa();
this.redirectApp.use(this.onLogin);
this.logoutApp = new Koa();
this.logoutApp.use(this.onLogout);
this.callbackApp = new Koa();
this.callbackApp.use(this.onCallback);
this.app = new Koa();
this.app.use(mount('/login', this.redirectApp));
this.app.use(mount('/callback', this.callbackApp));
this.app.use(mount('/logout', this.logoutApp));
}
checkToken(ctx, next){
if(ctx.path === "/auth/login" || ctx.path === "/auth/callback" || ctx.path === "/auth/logout"){
next();
} else{
const cookie = ctx.cookies.get("userInfo");
if(cookie == null){
ctx.redirect("/auth/login");
} else{
const userInfo = JSON.parse(ctx.cookies.get("userInfo"));
if(userInfo.accessToken){
// TODO: check the token;
next();
} else{
ctx.redirect("/auth/login");
}
}
}
}
onLogin(ctx){
const path = `https://${domain}/authorize?response_type=code&client_id=${clientId}&redirect_uri=${redirectUrl}&scope=email&audience=${audience}&state=`;
ctx.redirect(path);
}
}
当我转到根目录 (http://localhost:3000) 时,我可以看到它命中了 ctx.redirect(path);
但我得到了 404。如果我注释掉 mainApp.use(auth.checkToken.bind(auth));
并命中 /auth/login
直接就可以了。
为什么我不能在初始中间件之后进行重定向?
已通过等待下一个修复它...
async checkToken(ctx, next){
if(ctx.path === "/auth/login" || ctx.path === "/auth/callback" || ctx.path === "/auth/logout"){
await next();
} else{
const cookie = ctx.cookies.get("userInfo");
if(cookie == null){
ctx.redirect("/auth/login");
} else{
const userInfo = JSON.parse(ctx.cookies.get("userInfo"));
if(userInfo.accessToken){
// TODO: check the token;
await next();
} else{
ctx.redirect("/auth/login");
}
}
}
}
我有以下代码...
const auth = new Authentication();
mainApp.use(auth.checkToken.bind(auth));
mainApp.use(mount('/auth', auth.app));
class Authentication{
constructor() {
this.redirectApp = new Koa();
this.redirectApp.use(this.onLogin);
this.logoutApp = new Koa();
this.logoutApp.use(this.onLogout);
this.callbackApp = new Koa();
this.callbackApp.use(this.onCallback);
this.app = new Koa();
this.app.use(mount('/login', this.redirectApp));
this.app.use(mount('/callback', this.callbackApp));
this.app.use(mount('/logout', this.logoutApp));
}
checkToken(ctx, next){
if(ctx.path === "/auth/login" || ctx.path === "/auth/callback" || ctx.path === "/auth/logout"){
next();
} else{
const cookie = ctx.cookies.get("userInfo");
if(cookie == null){
ctx.redirect("/auth/login");
} else{
const userInfo = JSON.parse(ctx.cookies.get("userInfo"));
if(userInfo.accessToken){
// TODO: check the token;
next();
} else{
ctx.redirect("/auth/login");
}
}
}
}
onLogin(ctx){
const path = `https://${domain}/authorize?response_type=code&client_id=${clientId}&redirect_uri=${redirectUrl}&scope=email&audience=${audience}&state=`;
ctx.redirect(path);
}
}
当我转到根目录 (http://localhost:3000) 时,我可以看到它命中了 ctx.redirect(path);
但我得到了 404。如果我注释掉 mainApp.use(auth.checkToken.bind(auth));
并命中 /auth/login
直接就可以了。
为什么我不能在初始中间件之后进行重定向?
已通过等待下一个修复它...
async checkToken(ctx, next){
if(ctx.path === "/auth/login" || ctx.path === "/auth/callback" || ctx.path === "/auth/logout"){
await next();
} else{
const cookie = ctx.cookies.get("userInfo");
if(cookie == null){
ctx.redirect("/auth/login");
} else{
const userInfo = JSON.parse(ctx.cookies.get("userInfo"));
if(userInfo.accessToken){
// TODO: check the token;
await next();
} else{
ctx.redirect("/auth/login");
}
}
}
}