2018-10-17 19:15:43 +03:00
|
|
|
const common = require('../../lib/common');
|
|
|
|
const models = require('../../models');
|
2019-02-22 06:17:14 +03:00
|
|
|
const ALLOWED_INCLUDES = ['authors', 'tags'];
|
2018-10-17 19:15:43 +03:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
docName: 'preview',
|
|
|
|
|
|
|
|
read: {
|
|
|
|
permissions: true,
|
|
|
|
options: [
|
|
|
|
'include'
|
|
|
|
],
|
|
|
|
data: [
|
|
|
|
'uuid'
|
|
|
|
],
|
|
|
|
validation: {
|
|
|
|
options: {
|
|
|
|
include: {
|
|
|
|
values: ALLOWED_INCLUDES
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
uuid: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
query(frame) {
|
|
|
|
return models.Post.findOne(Object.assign({status: 'all'}, frame.data), frame.options)
|
|
|
|
.then((model) => {
|
|
|
|
if (!model) {
|
|
|
|
throw new common.errors.NotFoundError({
|
|
|
|
message: common.i18n.t('errors.api.posts.postNotFound')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return model;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|