Skip to content

Commit

Permalink
fix: tolerate null bugs URLs
Browse files Browse the repository at this point in the history
Currently, if the bugs URL returned from `package.json`, which is
processed through
[hosted-git-info](https://github.com/npm/hosted-git-info), is falsy, an
error is thrown. However, hosted-git-info may well return a falsy bugs
URL. This can happen when there is no bugs URL in the repo, but
hosted-git-info tries to infer one, but one cannot be inferred, for
example if the repository URL is a SourceHut URL. This is described
here: npm/hosted-git-info#213

For this reason, we should tolerate falsy URLs and fall back to whatever
is defined in `bugs.js`, in this case being sent to
https://www.npmjs.com/package/<packageName>.
  • Loading branch information
vladh committed Sep 12, 2023
1 parent 6ec6ff0 commit fac8fff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/commands/bugs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ class Bugs extends PackageUrlCmd {

// try to get it from the repo, if possible
const info = this.hostedFromMani(mani)
if (info) {
return info.bugs()
const infoUrl = info?.bugs()
if (infoUrl) {
return infoUrl
}

// just send them to the website, hopefully that has some info!
Expand Down
5 changes: 5 additions & 0 deletions test/lib/commands/bugs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ const pacote = {
return spec === 'nobugs' ? {
name: 'nobugs',
version: '1.2.3',
} : spec === 'nullbugs' ? {
name: 'nullbugs',
version: '1.2.3',
bugs: null,
} : spec === 'bugsurl' ? {
name: 'bugsurl',
version: '1.2.3',
Expand Down Expand Up @@ -66,6 +70,7 @@ t.test('open bugs urls & emails', async t => {
const expected = {
'.': 'https://example.com',
nobugs: 'https://www.npmjs.com/package/nobugs',
nullbugs: 'https://www.npmjs.com/package/nullbugs',
'bugsobj-nourl': 'https://www.npmjs.com/package/bugsobj-nourl',
bugsurl: 'https://bugzilla.localhost/bugsurl',
bugsobj: 'https://bugzilla.localhost/bugsobj',
Expand Down

0 comments on commit fac8fff

Please sign in to comment.