2021-09-24 12:05:35 +02:00

34 lines
980 B
JavaScript

'use strict';
const { getService } = require('../utils');
const { validateApiTokenCreationInput } = require('../validation/api-tokens');
module.exports = {
async create(ctx) {
const { body: attributes } = ctx.request;
const apiTokenService = getService('api-token');
/**
* We trim both field to avoid having issues with either:
* - having a space at the end or start of the value.
* - having only spaces as value;
*/
attributes.name = attributes.name.trim();
attributes.description = attributes.description.trim();
try {
await validateApiTokenCreationInput(attributes);
} catch (err) {
return ctx.badRequest('ValidationError', err);
}
const alreadyExists = await apiTokenService.exists({ name: attributes.name });
if (alreadyExists) {
return ctx.badRequest('Name already taken');
}
const apiToken = await apiTokenService.create(attributes);
ctx.created({ data: apiToken });
},
};