Attacking this in two pieces for ease of review. The legacy implementation for coverage is still there, though I disabled it via the route. That whole file will be removed in the next PR. Ref #2863
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
'use strict'
|
|
|
|
const Joi = require('joi')
|
|
const { NotFound } = require('..')
|
|
|
|
const keywords = ['codeclimate']
|
|
|
|
const repoSchema = Joi.object({
|
|
data: Joi.array()
|
|
.max(1)
|
|
.items(
|
|
Joi.object({
|
|
id: Joi.string().required(),
|
|
relationships: Joi.object({
|
|
latest_default_branch_snapshot: Joi.object({
|
|
data: Joi.object({
|
|
id: Joi.string().required(),
|
|
}).allow(null),
|
|
}).required(),
|
|
latest_default_branch_test_report: Joi.object({
|
|
data: Joi.object({
|
|
id: Joi.string().required(),
|
|
}).allow(null),
|
|
}).required(),
|
|
}).required(),
|
|
})
|
|
)
|
|
.required(),
|
|
}).required()
|
|
|
|
async function fetchRepo(serviceInstance, { user, repo }) {
|
|
const {
|
|
data: [repoInfo],
|
|
} = await serviceInstance._requestJson({
|
|
schema: repoSchema,
|
|
url: 'https://api.codeclimate.com/v1/repos',
|
|
options: { qs: { github_slug: `${user}/${repo}` } },
|
|
})
|
|
if (repoInfo === undefined) {
|
|
throw new NotFound({ prettyMessage: 'repo not found' })
|
|
}
|
|
return repoInfo
|
|
}
|
|
|
|
module.exports = {
|
|
keywords,
|
|
fetchRepo,
|
|
}
|