e302be2749
refs #9866 - invent preview api, but only used internally - the idea of a preview api is definitiely reaslistic and came up in the past a couple of times - by that we don't have to differentiate between pages or posts controller - still support v0.1 - preview controller is not registered for http, only internal handling
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
const common = require('../../lib/common');
|
|
const models = require('../../models');
|
|
const ALLOWED_INCLUDES = ['author', 'authors', 'tags'];
|
|
|
|
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;
|
|
});
|
|
}
|
|
}
|
|
};
|