mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
273e220327
refs 829e8ed010
- i18n is used everywhere but only requires shared or external packages, therefore it's a good candidate for living in shared
- this reduces invalid requires across frontend and server, and lets us use it everywhere until we come up with a better option
170 lines
4.9 KiB
JavaScript
170 lines
4.9 KiB
JavaScript
const i18n = require('../../../shared/i18n');
|
|
const errors = require('@tryghost/errors');
|
|
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 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}) {
|
|
if (options.keyid) {
|
|
return models.ApiKey.findOne({id: options.keyid})
|
|
.then(async (model) => {
|
|
if (!model) {
|
|
throw new errors.NotFoundError({
|
|
message: i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'ApiKey'
|
|
})
|
|
});
|
|
}
|
|
try {
|
|
await models.ApiKey.refreshSecret(model.toJSON(), Object.assign({}, options, {id: options.keyid}));
|
|
return models.Integration.findOne({id: options.id}, {
|
|
withRelated: ['api_keys', 'webhooks']
|
|
});
|
|
} catch (err) {
|
|
throw new errors.GhostError({
|
|
err: err
|
|
});
|
|
}
|
|
});
|
|
}
|
|
return models.Integration.edit(data, Object.assign(options, {require: true}))
|
|
.catch(models.Integration.NotFoundError, () => {
|
|
throw new errors.NotFoundError({
|
|
message: 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, () => {
|
|
return Promise.reject(new errors.NotFoundError({
|
|
message: i18n.t('errors.api.resource.resourceNotFound', {
|
|
resource: 'Integration'
|
|
})
|
|
}));
|
|
});
|
|
}
|
|
}
|
|
};
|