fix: encode redirect url if not already encoded (#1384)

Same bug from express 76eaa326ee
master
fengmk2 2019-09-28 12:49:57 +08:00 committed by GitHub
parent 817b498305
commit 54e8fab3e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 1 deletions

View File

@ -19,6 +19,7 @@ const extname = require('path').extname;
const vary = require('vary');
const only = require('only');
const util = require('util');
const encodeUrl = require('encodeurl');
/**
* Prototype.
@ -260,7 +261,7 @@ module.exports = {
redirect(url, alt) {
// location
if ('back' == url) url = this.ctx.get('Referrer') || alt || '/';
this.set('Location', url);
this.set('Location', encodeUrl(url));
// status
if (!statuses.redirect[this.status]) this.status = 302;

View File

@ -31,6 +31,7 @@
"delegates": "^1.0.0",
"depd": "^1.1.2",
"destroy": "^1.0.4",
"encodeurl": "^1.0.2",
"error-inject": "^1.0.0",
"escape-html": "^1.0.3",
"fresh": "~0.5.2",

View File

@ -2,7 +2,9 @@
'use strict';
const assert = require('assert');
const request = require('supertest');
const context = require('../helpers/context');
const Koa = require('../..');
describe('ctx.redirect(url)', () => {
it('should redirect to the given url', () => {
@ -12,6 +14,23 @@ describe('ctx.redirect(url)', () => {
assert.equal(ctx.status, 302);
});
it('should auto fix not encode url', done => {
const app = new Koa();
app.use(ctx => {
ctx.redirect('http://google.com/😓');
});
request(app.callback())
.get('/')
.end((err, res) => {
if (err) return done(err);
assert.equal(res.status, 302);
assert.equal(res.headers.location, 'http://google.com/%F0%9F%98%93');
done();
});
});
describe('with "back"', () => {
it('should redirect to Referrer', () => {
const ctx = context();