Files
shields/services/sourcegraph/sourcegraph.service.js
Paul Melnikow b7ecbd0a0d Move build badge examples into services/ (#2234)
all-badge-examples is a common cause of merge conflicts. It’s difficult to adjust the badge categorization in that file – or to understand the diff – because it requires moving a block from one point to another. It’s much easier to edit a badge’s category in one place.

This starts the process of breaking up what’s left of that file, following up on the work from #1931. New-style services can only be in one category, which means legacy service examples have to be split along category lines. I split out separate legacy service classes where I could do so easily, leaving behind the ones which require more work, for one reason or another.
2018-10-31 17:32:35 -04:00

55 lines
1.4 KiB
JavaScript

'use strict'
const LegacyService = require('../legacy-service')
const { makeBadgeData: getBadgeData } = require('../../lib/badge-data')
module.exports = class Sourcegraph extends LegacyService {
static get category() {
return 'other'
}
static get url() {
return {
base: 'sourcegraph/rrc',
}
}
static get examples() {
return [
{
title: 'Sourcegraph for Repo Reference Count',
previewUrl: 'github.com/gorilla/mux',
},
]
}
static registerLegacyRouteHandler({ camp, cache }) {
camp.route(
/^\/sourcegraph\/rrc\/([\s\S]+)\.(svg|png|gif|jpg|json)$/,
cache((data, match, sendBadge, request) => {
const repo = match[1]
const format = match[2]
const apiUrl =
'https://sourcegraph.com/.api/repos/' + repo + '/-/shield'
const badgeData = getBadgeData('used by', data)
request(apiUrl, (err, res, buffer) => {
if (err != null) {
badgeData.text[1] = 'inaccessible'
sendBadge(format, badgeData)
return
}
try {
badgeData.colorscheme = 'brightgreen'
const data = JSON.parse(buffer)
badgeData.text[1] = data.value
sendBadge(format, badgeData)
} catch (e) {
badgeData.text[1] = 'invalid'
sendBadge(format, badgeData)
}
})
})
)
}
}