Skip to content

Commit 89b7c02

Browse files
authoredNov 2, 2020
Allow router.redirect() to accept external destinations (#110)
* Allow router.redirect() to accept external destinations * Remove redundant case-insensitive flag * Added tests for router.redirect() with external destinations * Simplify external destination detection
1 parent 56735f0 commit 89b7c02

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
 

‎lib/router.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ Router.prototype.redirect = function (source, destination, code) {
532532
if (source[0] !== '/') source = this.url(source);
533533

534534
// lookup destination route by name
535-
if (destination[0] !== '/') destination = this.url(destination);
535+
if (destination[0] !== '/' && !destination.includes('://')) destination = this.url(destination);
536536

537537
return this.all(source, ctx => {
538538
ctx.redirect(destination);

‎test/lib/router.js

+30
Original file line numberDiff line numberDiff line change
@@ -1305,6 +1305,36 @@ describe('Router', function () {
13051305
done();
13061306
});
13071307
});
1308+
1309+
it('redirects to external sites', function (done) {
1310+
const app = new Koa();
1311+
const router = new Router();
1312+
app.use(router.routes());
1313+
router.redirect('/', 'https://www.example.com');
1314+
request(http.createServer(app.callback()))
1315+
.post('/')
1316+
.expect(301)
1317+
.end(function (err, res) {
1318+
if (err) return done(err);
1319+
res.header.should.have.property('location', 'https://www.example.com');
1320+
done();
1321+
});
1322+
});
1323+
1324+
it('redirects to any external protocol', function (done) {
1325+
const app = new Koa();
1326+
const router = new Router();
1327+
app.use(router.routes());
1328+
router.redirect('/', 'my-custom-app-protocol://www.example.com/foo');
1329+
request(http.createServer(app.callback()))
1330+
.post('/')
1331+
.expect(301)
1332+
.end(function (err, res) {
1333+
if (err) return done(err);
1334+
res.header.should.have.property('location', 'my-custom-app-protocol://www.example.com/foo');
1335+
done();
1336+
});
1337+
});
13081338
});
13091339

13101340
describe('Router#route()', function () {

2 commit comments

Comments
 (2)

niftylettuce commented on Nov 2, 2020

@niftylettuce
Contributor

It would probably be better to use url internal Node module to parse the destination (instead of .includes approach you did; which is fine for now). So if you want to improve it you could submit another PR with that (e.g. use the destination value and if it's valid then return the href, see https://nodejs.org/api/url.html#url_url_href).

niftylettuce commented on Nov 2, 2020

@niftylettuce
Contributor

No worries though, thanks for this, releasing new major semver bump now

Please sign in to comment.