Skip to content

Commit cd6d3a9

Browse files
committed
fix: explicitly allow npm help to open file:/// man pages
PR-URL: #4026 Credit: @wraithgar Close: #4026 Reviewed-by: @isaacs
1 parent 7887fb3 commit cd6d3a9

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

lib/commands/help.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class Help extends BaseCommand {
120120
break
121121

122122
case 'browser':
123-
await openUrl(this.npm, this.htmlMan(man), 'help available at the following URL')
123+
await openUrl(this.npm, this.htmlMan(man), 'help available at the following URL', true)
124124
return
125125

126126
default:

lib/utils/open-url.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const opener = require('opener')
33
const { URL } = require('url')
44

55
// attempt to open URL in web-browser, print address otherwise:
6-
const open = async (npm, url, errMsg) => {
6+
const open = async (npm, url, errMsg, isFile) => {
77
url = encodeURI(url)
88
const browser = npm.config.get('browser')
99

@@ -24,12 +24,16 @@ const open = async (npm, url, errMsg) => {
2424
return
2525
}
2626

27-
try {
28-
if (!/^https?:$/.test(new URL(url).protocol)) {
29-
throw new Error()
27+
// We pass this in as true from the help command so we know we don't have to
28+
// check the protocol
29+
if (!isFile) {
30+
try {
31+
if (!/^https?:$/.test(new URL(url).protocol)) {
32+
throw new Error()
33+
}
34+
} catch (_) {
35+
throw new Error('Invalid URL: ' + url)
3036
}
31-
} catch (_) {
32-
throw new Error('Invalid URL: ' + url)
3337
}
3438

3539
const command = browser === true ? null : browser

test/lib/utils/open-url.js

+12
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@ t.test('returns error for file url', async t => {
7373
t.same(OUTPUT, [], 'printed no output')
7474
})
7575

76+
t.test('file url allowed if explicitly asked for', async t => {
77+
t.teardown(() => {
78+
openerUrl = null
79+
openerOpts = null
80+
OUTPUT.length = 0
81+
})
82+
await openUrl(npm, 'file:///man/page/npm-install', 'npm home', true)
83+
t.equal(openerUrl, 'file:///man/page/npm-install', 'opened the given url')
84+
t.same(openerOpts, { command: null }, 'passed command as null (the default)')
85+
t.same(OUTPUT, [], 'printed no output')
86+
})
87+
7688
t.test('returns error for non-parseable url', async t => {
7789
t.teardown(() => {
7890
openerUrl = null

0 commit comments

Comments
 (0)