screwdriver-api
Version:
API server for the Screwdriver.cd service
56 lines (47 loc) • 1.64 kB
JavaScript
;
const boom = require('@hapi/boom');
const joi = require('joi');
const schema = require('screwdriver-data-schema');
const baseSchema = schema.models.command.base;
module.exports = () => ({
method: 'PUT',
path: '/commands/{namespace}/{name}/trusted',
options: {
description: "Update a command's trusted property",
notes: 'Returns null if successful',
tags: ['api', 'commands', 'trusted'],
auth: {
strategies: ['token'],
scope: ['admin', '!guest']
},
handler: async (request, h) => {
const { name, namespace } = request.params;
const { commandFactory } = request.server.app;
const { trusted } = request.payload;
// get the earliest entry
const commands = await commandFactory.list({
params: { namespace, name, latest: true }
});
if (commands.length === 0) {
throw boom.notFound(`Command ${namespace}/${name} does not exist`);
}
const command = commands[0];
command.trusted = trusted;
return command
.update()
.then(() => h.response().code(204))
.catch(err => {
throw err;
});
},
validate: {
params: joi.object({
namespace: baseSchema.extract('namespace'),
name: baseSchema.extract('name')
}),
payload: joi.object({
trusted: baseSchema.extract('trusted')
})
}
}
});