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.
74 lines
2.1 KiB
JavaScript
74 lines
2.1 KiB
JavaScript
'use strict'
|
|
|
|
const LegacyService = require('../legacy-service')
|
|
const { makeBadgeData: getBadgeData } = require('../../lib/badge-data')
|
|
const { addv: versionText } = require('../../lib/text-formatters')
|
|
const { version: versionColor } = require('../../lib/color-formatters')
|
|
|
|
module.exports = class Jitpack extends LegacyService {
|
|
static get category() {
|
|
return 'version'
|
|
}
|
|
|
|
static get url() {
|
|
return {
|
|
base: 'jitpack/v',
|
|
}
|
|
}
|
|
|
|
static get examples() {
|
|
return [
|
|
{
|
|
title: 'JitPack',
|
|
previewUrl: 'jitpack/maven-simple',
|
|
keywords: ['jitpack', 'java', 'maven'],
|
|
},
|
|
]
|
|
}
|
|
|
|
static registerLegacyRouteHandler({ camp, cache }) {
|
|
camp.route(
|
|
/^\/jitpack\/v\/([^/]*)\/([^/]*)\.(svg|png|gif|jpg|json)$/,
|
|
cache((data, match, sendBadge, request) => {
|
|
const groupId = 'com.github.' + match[1] // github user
|
|
const artifactId = match[2] // the project's name
|
|
const format = match[3] // "svg"
|
|
|
|
const pkg = groupId + '/' + artifactId + '/latest'
|
|
const apiUrl = 'https://jitpack.io/api/builds/' + pkg
|
|
|
|
const badgeData = getBadgeData('jitpack', data)
|
|
|
|
request(apiUrl, (err, res, buffer) => {
|
|
if (err != null) {
|
|
badgeData.text[1] = 'inaccessible'
|
|
sendBadge(format, badgeData)
|
|
return
|
|
}
|
|
if (res.statusCode === 404) {
|
|
badgeData.text[1] = 'not found'
|
|
sendBadge(format, badgeData)
|
|
return
|
|
}
|
|
try {
|
|
const data = JSON.parse(buffer)
|
|
const status = data['status']
|
|
let color = versionColor(data['version'])
|
|
let version = versionText(data['version'])
|
|
if (status !== 'ok') {
|
|
color = 'red'
|
|
version = 'unknown'
|
|
}
|
|
badgeData.text[1] = version
|
|
badgeData.colorscheme = color
|
|
sendBadge(format, badgeData)
|
|
} catch (e) {
|
|
badgeData.text[1] = 'invalid'
|
|
sendBadge(format, badgeData)
|
|
}
|
|
})
|
|
})
|
|
)
|
|
}
|
|
}
|