* allow serviceData to override cacheSeconds with a longer value * prevent [endpoint] json cacheSeconds property exceeding service default * allow ShieldsRuntimeError to specify a cacheSeconds property By default error responses use the cacheLength of the service class throwing the error. This allows error to tell the handling layer the maxAge that should be set on the error badge response. * add customExceptions param This 1. allows us to specify custom properties to pass to the exception constructor if we throw any of the standard got errors e.g: `ETIMEDOUT`, `ECONNRESET`, etc 2. uses a custom `cacheSeconds` property (if set on the exception) to set the response maxAge * customExceptions --> systemErrors * errorMessages --> httpErrors
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
import Joi from 'joi'
|
|
import { BaseJsonService, NotFound } from '../index.js'
|
|
|
|
const latestBuildSchema = Joi.object({
|
|
count: Joi.number().required(),
|
|
value: Joi.array()
|
|
.items(
|
|
Joi.object({
|
|
id: Joi.number().required(),
|
|
})
|
|
)
|
|
.required(),
|
|
}).required()
|
|
|
|
export default class AzureDevOpsBase extends BaseJsonService {
|
|
static auth = {
|
|
passKey: 'azure_devops_token',
|
|
authorizedOrigins: ['https://dev.azure.com'],
|
|
defaultToEmptyStringForUser: true,
|
|
}
|
|
|
|
async fetch({ url, options, schema, httpErrors }) {
|
|
return this._requestJson(
|
|
this.authHelper.withBasicAuth({
|
|
schema,
|
|
url,
|
|
options,
|
|
httpErrors,
|
|
})
|
|
)
|
|
}
|
|
|
|
async getLatestCompletedBuildId(
|
|
organization,
|
|
project,
|
|
definitionId,
|
|
branch,
|
|
httpErrors
|
|
) {
|
|
// Microsoft documentation: https://docs.microsoft.com/en-us/rest/api/azure/devops/build/builds/list?view=azure-devops-rest-5.0
|
|
const url = `https://dev.azure.com/${organization}/${project}/_apis/build/builds`
|
|
const options = {
|
|
searchParams: {
|
|
definitions: definitionId,
|
|
$top: 1,
|
|
statusFilter: 'completed',
|
|
'api-version': '5.0-preview.4',
|
|
},
|
|
}
|
|
|
|
if (branch) {
|
|
options.searchParams.branchName = `refs/heads/${branch}`
|
|
}
|
|
|
|
const json = await this.fetch({
|
|
url,
|
|
options,
|
|
schema: latestBuildSchema,
|
|
httpErrors,
|
|
})
|
|
|
|
if (json.count !== 1) {
|
|
throw new NotFound({ prettyMessage: 'build pipeline not found' })
|
|
}
|
|
|
|
return json.value[0].id
|
|
}
|
|
}
|