mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
4744349381
refs https://github.com/TryGhost/Team/issues/694 refs https://linear.app/tryghost/issue/CORE-10/tackle-integrationsjs - The controller code is not meant to contain complex business logic. - Added a test case checking 'PUT' endpoint for integrations to ensure proper 'NotFound' handling. Found that previous implemenation was buggy - threw a 500 as 'models.Integration.NotFoundError' that was removed in previous commit didn't catch a needed error.
146 lines
3.8 KiB
JavaScript
146 lines
3.8 KiB
JavaScript
const i18n = require('../../../shared/i18n');
|
|
const errors = require('@tryghost/errors');
|
|
const models = require('../../models');
|
|
const getIntegrationsServiceInstance = require('../../services/integrations/integrations-service');
|
|
|
|
const integrationsService = getIntegrationsServiceInstance({
|
|
IntegrationModel: models.Integration,
|
|
ApiKeyModel: models.ApiKey
|
|
});
|
|
|
|
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 errors.NotFoundError({
|
|
message: i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
});
|
|
});
|
|
}
|
|
},
|
|
edit: {
|
|
permissions: true,
|
|
data: [
|
|
'name',
|
|
'icon_image',
|
|
'description',
|
|
'webhooks'
|
|
],
|
|
options: [
|
|
'id',
|
|
'keyid',
|
|
'include'
|
|
],
|
|
validation: {
|
|
options: {
|
|
id: {
|
|
required: true
|
|
},
|
|
include: {
|
|
values: ['api_keys', 'webhooks']
|
|
}
|
|
}
|
|
},
|
|
query({data, options}) {
|
|
return integrationsService.edit(data, options);
|
|
}
|
|
},
|
|
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, () => {
|
|
return Promise.reject(new errors.NotFoundError({
|
|
message: i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
}));
|
|
});
|
|
}
|
|
}
|
|
};
|