Add [Snyk] badges (#2566)

Adds vulnerability badges from Snyk.io, closes #1642 

- [X] Vulnerability badge for GitHub repos
- [x] Vulnerability badge for npm package
This commit is contained in:
Caleb Cartwright
2018-12-20 15:28:54 -06:00
committed by Paul Melnikow
parent fc41b576f3
commit 2fe61d2c5c
6 changed files with 365 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
'use strict'
const zeroVulnerabilitiesSvg =
'<svg id="snyk-badge" data-package="undefined@undefined" width="152" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1" /><stop offset="1" stop-opacity=".1" /></linearGradient><mask id="a"><rect width="152" height="20" rx="3" fill="#fff" /></mask><g mask="url(#a)"><path fill="#555" d="M0 0h90v20H0z" /><path fill="#7B7B7B" d="M90 0h152v20H90z" /><path fill="url(#b)" d="M0 0h152v20H0z" /></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><text x="45" y="15" fill="#010101" fill-opacity=".3">vulnerabilities</text><text x="45" y="14">vulnerabilities</text><text x="120" y="15" fill="#010101" fill-opacity=".3">0</text><text x="120" y="14">0</text></g></svg>'
const twoVulnerabilitiesSvg =
'<svg id="snyk-badge" data-package="undefined@undefined" width="152" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1" /><stop offset="1" stop-opacity=".1" /></linearGradient><mask id="a"><rect width="152" height="20" rx="3" fill="#fff" /></mask><g mask="url(#a)"><path fill="#555" d="M0 0h90v20H0z" /><path fill="#7B7B7B" d="M90 0h152v20H90z" /><path fill="url(#b)" d="M0 0h152v20H0z" /></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><text x="45" y="15" fill="#010101" fill-opacity=".3">vulnerabilities</text><text x="45" y="14">vulnerabilities</text><text x="120" y="15" fill="#010101" fill-opacity=".3">2</text><text x="120" y="14">2</text></g></svg>'
module.exports = {
zeroVulnerabilitiesSvg,
twoVulnerabilitiesSvg,
}

View File

@@ -0,0 +1,46 @@
'use strict'
const Joi = require('joi')
const BaseSvgScrapingService = require('../base-svg-scraping')
const schema = Joi.object({
message: Joi.alternatives()
.try([/^\d*$/, Joi.equal('unknown')])
.required(),
}).required()
module.exports = class SnykVulnerabilityBase extends BaseSvgScrapingService {
static render({ vulnerabilities }) {
let color = 'red'
if (vulnerabilities === '0') {
color = 'brightgreen'
}
return {
message: vulnerabilities,
color,
}
}
async fetch({ url, qs, errorMessages }) {
const { message: vulnerabilities } = await this._requestSvg({
url,
schema,
options: {
qs,
},
errorMessages,
})
return { vulnerabilities }
}
static get category() {
return 'quality'
}
static get defaultBadgeData() {
return {
label: 'vulnerabilities',
}
}
}

View File

@@ -0,0 +1,56 @@
'use strict'
const SynkVulnerabilityBase = require('./snyk-vulnerability-base')
module.exports = class SnykVulnerabilityGitHub extends SynkVulnerabilityBase {
static get route() {
return {
base: 'snyk/vulnerabilities/github',
format: '([^/]+)/([^/]+)(?:/(.+))?',
capture: ['user', 'repo', 'manifestFilePath'],
}
}
static get examples() {
return [
{
title: 'Snyk Vulnerabilities for GitHub Repo',
pattern: ':user/:repo',
namedParams: {
user: 'badges',
repo: 'shields',
},
staticExample: this.render({ vulnerabilities: '0' }),
},
{
title: 'Snyk Vulnerabilities for GitHub Repo (Specific Manifest)',
pattern: ':user/:repo/:manifestFilePath',
namedParams: {
user: 'badges',
repo: 'shields',
manifestFilePath: 'gh-badges/package.json',
},
staticExample: this.render({ vulnerabilities: '0' }),
documentation: `
<p>
Provide the path to your target manifest file relative to the base of your repository.
Snyk does not support using a specific branch for this, so do not include "blob" nor a branch name.
</p>
`,
},
]
}
async handle({ user, repo, manifestFilePath }) {
const url = `https://snyk.io/test/github/${user}/${repo}/badge.svg`
const qs = { targetFile: manifestFilePath }
const { vulnerabilities } = await this.fetch({
url,
qs,
errorMessages: {
404: 'repo or manifest not found',
},
})
return this.constructor.render({ vulnerabilities })
}
}

View File

@@ -0,0 +1,94 @@
'use strict'
const Joi = require('joi')
const t = (module.exports = require('../create-service-tester')())
const { colorScheme } = require('../test-helpers')
const {
twoVulnerabilitiesSvg,
zeroVulnerabilitiesSvg,
} = require('./snyk-test-helpers')
t.create('live: valid repo')
.get('/badges/shields.json')
.expectJSONTypes(
Joi.object().keys({
name: 'vulnerabilities',
value: Joi.number().required(),
})
)
t.create('live: non existent repo')
.get('/badges/not-real.json')
.timeout(10000)
.expectJSON({ name: 'vulnerabilities', value: 'repo or manifest not found' })
t.create('live: valid target manifest path')
.get('/badges/shields/gh-badges/package.json.json')
.expectJSONTypes(
Joi.object().keys({
name: 'vulnerabilities',
value: Joi.number().required(),
})
)
t.create('live: invalid target manifest path')
.get('/badges/shields/gh-badges/requirements.txt.json')
.expectJSON({ name: 'vulnerabilities', value: 'repo or manifest not found' })
t.create('repo has no vulnerabilities')
.get('/badges/shields.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/github/badges/shields')
.get('/badge.svg')
.reply(200, zeroVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '0',
colorB: colorScheme.brightgreen,
})
t.create('repo has vulnerabilities')
.get('/badges/shields.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/github/badges/shields')
.get('/badge.svg')
.reply(200, twoVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '2',
colorB: colorScheme.red,
})
t.create('target manifest file has no vulnerabilities')
.get('/badges/shields/gh-badges/package.json.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/github/badges/shields')
.get('/badge.svg')
.query({
targetFile: 'gh-badges/package.json',
})
.reply(200, zeroVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '0',
colorB: colorScheme.brightgreen,
})
t.create('target manifest file has vulnerabilities')
.get('/badges/shields/gh-badges/package.json.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/github/badges/shields')
.get('/badge.svg')
.query({
targetFile: 'gh-badges/package.json',
})
.reply(200, twoVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '2',
colorB: colorScheme.red,
})

View File

@@ -0,0 +1,66 @@
'use strict'
const { NotFound } = require('../errors')
const SynkVulnerabilityBase = require('./snyk-vulnerability-base')
module.exports = class SnykVulnerabilityNpm extends SynkVulnerabilityBase {
static get route() {
return {
base: 'snyk/vulnerabilities/npm',
pattern: ':packageName(.+)',
}
}
static get examples() {
return [
{
title: 'Snyk Vulnerabilities for npm package',
pattern: ':packageName',
namedParams: {
packageName: 'mocha',
},
staticExample: this.render({ vulnerabilities: '0' }),
},
{
title: 'Snyk Vulnerabilities for npm package version',
pattern: ':packageName',
namedParams: {
packageName: 'mocha@4.0.0',
},
staticExample: this.render({ vulnerabilities: '1' }),
},
{
title: 'Snyk Vulnerabilities for npm scoped package',
pattern: ':packageName',
namedParams: {
packageName: '@babel/core',
},
staticExample: this.render({ vulnerabilities: '0' }),
},
]
}
async handle({ packageName }) {
const url = `https://snyk.io/test/npm/${packageName}/badge.svg`
try {
const { vulnerabilities } = await this.fetch({
url,
// Snyk returns an HTTP 200 with an HTML page when the specified
// npm package is not found that contains the text 404.
// Including this in case Snyk starts returning a 404 response code instead.
errorMessages: {
404: 'npm package is invalid or does not exist',
},
})
return this.constructor.render({ vulnerabilities })
} catch (e) {
// If the package is invalid/nonexistent Snyk will return an HTML page
// which will result in an InvalidResponse error being thrown by the valueFromSvgBadge()
// function. Catching it here to switch to a more contextualized error message.
throw new NotFound({
prettyMessage: 'npm package is invalid or does not exist',
})
}
}
}

View File

@@ -0,0 +1,92 @@
'use strict'
const Joi = require('joi')
const t = (module.exports = require('../create-service-tester')())
const { colorScheme } = require('../test-helpers')
const {
twoVulnerabilitiesSvg,
zeroVulnerabilitiesSvg,
} = require('./snyk-test-helpers')
t.create('live: valid package latest version')
.get('/mocha.json')
.timeout(7500)
.expectJSONTypes(
Joi.object().keys({
name: 'vulnerabilities',
value: Joi.number().required(),
})
)
t.create('live: valid scoped package latest version')
.get('/@babel/core.json')
.timeout(7500)
.expectJSONTypes(
Joi.object().keys({
name: 'vulnerabilities',
value: Joi.number().required(),
})
)
t.create('live: non existent package')
.get('/mochaabcdef.json')
.timeout(7500)
.expectJSON({
name: 'vulnerabilities',
value: 'npm package is invalid or does not exist',
})
t.create('live: valid package specific version')
.get('/mocha@4.0.0.json?style=_shields_test')
.expectJSON({
name: 'vulnerabilities',
value: '1',
colorB: colorScheme.red,
})
t.create('live: non existent package version')
.get('/gh-badges@0.3.4.json')
.timeout(7500)
.expectJSON({
name: 'vulnerabilities',
value: 'npm package is invalid or does not exist',
})
t.create('package has no vulnerabilities')
.get('/mocha.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/npm/mocha')
.get('/badge.svg')
.reply(200, zeroVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '0',
colorB: colorScheme.brightgreen,
})
t.create('package has vulnerabilities')
.get('/mocha.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/npm/mocha')
.get('/badge.svg')
.reply(200, twoVulnerabilitiesSvg)
)
.expectJSON({
name: 'vulnerabilities',
value: '2',
colorB: colorScheme.red,
})
t.create('package not found')
.get('/not-mocha-fake-ish@13.0.0.json?style=_shields_test')
.intercept(nock =>
nock('https://snyk.io/test/npm/not-mocha-fake-ish@13.0.0')
.get('/badge.svg')
.reply(200, '<html>foo</html>')
)
.expectJSON({
name: 'vulnerabilities',
value: 'npm package is invalid or does not exist',
colorB: colorScheme.red,
})