17feb14e4a
refs #9865 * Added generic messaging for resource not found * Ensured integration model uses transaction for writes * Created POST /integrations endpoint * Created GET /integrations/:id endpoint * Created GET /integrations endpoint * Created PUT /integrations/:id endpoint * Created DELETE /integrations/:id endpoint
146 lines
3.8 KiB
JavaScript
146 lines
3.8 KiB
JavaScript
const common = require('../../lib/common');
|
|
const models = require('../../models');
|
|
|
|
module.exports = {
|
|
docName: 'integrations',
|
|
browse: {
|
|
permissions: true,
|
|
options: [
|
|
'include',
|
|
'limit'
|
|
],
|
|
validation: {
|
|
options: {
|
|
include: {
|
|
values: ['api_keys', 'webhooks']
|
|
}
|
|
}
|
|
},
|
|
query({options}) {
|
|
return models.Integration.findPage(options);
|
|
}
|
|
},
|
|
read: {
|
|
permissions: true,
|
|
data: [
|
|
'id'
|
|
],
|
|
options: [
|
|
'include'
|
|
],
|
|
validation: {
|
|
data: {
|
|
id: {
|
|
required: true
|
|
}
|
|
},
|
|
options: {
|
|
include: {
|
|
values: ['api_keys', 'webhooks']
|
|
}
|
|
}
|
|
},
|
|
query({data, options}) {
|
|
return models.Integration.findOne(data, Object.assign(options, {require: true}))
|
|
.catch(models.Integration.NotFoundError, () => {
|
|
throw new common.errors.NotFoundError({
|
|
message: common.i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
});
|
|
});
|
|
}
|
|
},
|
|
edit: {
|
|
permissions: true,
|
|
data: [
|
|
'name',
|
|
'icon_image',
|
|
'description',
|
|
'webhooks'
|
|
],
|
|
options: [
|
|
'id',
|
|
'include'
|
|
],
|
|
validation: {
|
|
options: {
|
|
id: {
|
|
required: true
|
|
},
|
|
include: {
|
|
values: ['api_keys', 'webhooks']
|
|
}
|
|
}
|
|
},
|
|
query({data, options}) {
|
|
return models.Integration.edit(data, Object.assign(options, {require: true}))
|
|
.catch(models.Integration.NotFoundError, () => {
|
|
throw new common.errors.NotFoundError({
|
|
message: common.i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
});
|
|
});
|
|
}
|
|
},
|
|
add: {
|
|
statusCode: 201,
|
|
permissions: true,
|
|
data: [
|
|
'name',
|
|
'icon_image',
|
|
'description',
|
|
'webhooks'
|
|
],
|
|
options: [
|
|
'include'
|
|
],
|
|
validation: {
|
|
data: {
|
|
name: {
|
|
required: true
|
|
}
|
|
},
|
|
options: {
|
|
include: {
|
|
values: ['api_keys', 'webhooks']
|
|
}
|
|
}
|
|
},
|
|
query({data, options}) {
|
|
const dataWithApiKeys = Object.assign({
|
|
api_keys: [
|
|
{type: 'content'},
|
|
{type: 'admin'}
|
|
]
|
|
}, data);
|
|
return models.Integration.add(dataWithApiKeys, options);
|
|
}
|
|
},
|
|
destroy: {
|
|
statusCode: 204,
|
|
permissions: true,
|
|
options: [
|
|
'id'
|
|
],
|
|
validation: {
|
|
options: {
|
|
id: {
|
|
required: true
|
|
}
|
|
}
|
|
},
|
|
query({options}) {
|
|
return models.Integration.destroy(Object.assign(options, {require: true}))
|
|
.catch(models.Integration.NotFoundError, () => {
|
|
throw new common.errors.NotFoundError({
|
|
message: common.i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
});
|
|
});
|
|
}
|
|
}
|
|
};
|