screwdriver-api
Version:
API server for the Screwdriver.cd service
43 lines (37 loc) • 1.18 kB
JavaScript
;
const boom = require('@hapi/boom');
const schema = require('screwdriver-data-schema');
const getSchema = schema.models.build.getStep;
module.exports = () => ({
method: 'GET',
path: '/builds/{id}/steps/{name}',
options: {
description: 'Get a step for a build',
notes: 'Returns a step record',
tags: ['api', 'builds', 'steps'],
auth: {
strategies: ['token'],
scope: ['user', 'build', 'pipeline']
},
handler: async (request, h) => {
const { stepFactory } = request.server.app;
return stepFactory
.get({ buildId: request.params.id, name: request.params.name })
.then(stepModel => {
if (!stepModel) {
throw boom.notFound('Step does not exist');
}
return h.response(stepModel);
})
.catch(err => {
throw err;
});
},
response: {
schema: getSchema
},
validate: {
params: schema.api.loglines.params
}
}
});