Files
shields/services/codeship/codeship.service.js
T
Paul MelnikowandGitHub 02ec19fd22 BaseService terminology: Rename url to route (#2278)
The term “url” is overloaded in services, to refer to the Shields route and also the API URL. Calling the Shields URL a “route” is on the whole more descriptive, and makes it clearer and more obvious which one of these we’re talking about. It’s a small thing, though seems like an improvement.

We have a few functions called `buildUrl`. I’ve renamed them to `buildRoute` when they refer to routes, and left them as `buildUrl` when they refer to API URLs.

I included a minor style tweak and some formatting cleanup in `TUTORIAL.md`.
2018-11-09 15:11:03 -05:00

97 lines
2.7 KiB
JavaScript

'use strict'
const LegacyService = require('../legacy-service')
const { makeBadgeData: getBadgeData } = require('../../lib/badge-data')
module.exports = class Codeship extends LegacyService {
static get category() {
return 'build'
}
static get route() {
return {
base: 'codeship',
}
}
static get examples() {
return [
{
title: 'Codeship',
previewUrl: 'd6c1ddd0-16a3-0132-5f85-2e35c05e22b1',
},
{
title: 'Codeship',
previewUrl: 'd6c1ddd0-16a3-0132-5f85-2e35c05e22b1/master',
},
]
}
static registerLegacyRouteHandler({ camp, cache }) {
camp.route(
/^\/codeship\/([^/]+)(?:\/(.+))?\.(svg|png|gif|jpg|json)$/,
cache((data, match, sendBadge, request) => {
const projectId = match[1] // eg, `ab123456-00c0-0123-42de-6f98765g4h32`.
const format = match[3]
const branch = match[2]
const options = {
method: 'GET',
uri: `https://codeship.com/projects/${projectId}/status${
branch != null ? `?branch=${branch}` : ''
}`,
}
const badgeData = getBadgeData('build', data)
request(options, (err, res) => {
if (err != null) {
badgeData.text[1] = 'inaccessible'
sendBadge(format, badgeData)
return
}
try {
const statusMatch = res.headers['content-disposition'].match(
/filename="status_(.+)\./
)
if (!statusMatch) {
badgeData.text[1] = 'unknown'
sendBadge(format, badgeData)
return
}
switch (statusMatch[1]) {
case 'success':
badgeData.text[1] = 'passing'
badgeData.colorscheme = 'brightgreen'
break
case 'projectnotfound':
badgeData.text[1] = 'not found'
break
case 'branchnotfound':
badgeData.text[1] = 'branch not found'
break
case 'testing':
case 'waiting':
case 'initiated':
badgeData.text[1] = 'pending'
break
case 'error':
case 'infrastructure_failure':
badgeData.text[1] = 'failing'
badgeData.colorscheme = 'red'
break
case 'stopped':
case 'ignored':
case 'blocked':
badgeData.text[1] = 'not built'
break
}
sendBadge(format, badgeData)
} catch (e) {
badgeData.text[1] = 'invalid'
sendBadge(format, badgeData)
}
})
})
)
}
}