UNPKG

ghost

Version:

The professional publishing platform

97 lines (87 loc) 2.28 kB
const tpl = require('@tryghost/tpl'); const errors = require('@tryghost/errors'); const {mapQuery} = require('@tryghost/mongo-utils'); const models = require('../../models'); const ALLOWED_INCLUDES = ['count.posts']; const messages = { notFound: 'Author not found.' }; const rejectPrivateFieldsTransformer = input => mapQuery(input, function (value, key) { const lowerCaseKey = key.toLowerCase(); if (lowerCaseKey.startsWith('password') || lowerCaseKey.startsWith('email')) { return; } return { [key]: value }; }); /** @type {import('@tryghost/api-framework').Controller} */ const controller = { docName: 'authors', browse: { headers: { cacheInvalidate: false }, options: [ 'include', 'filter', 'fields', 'limit', 'order', 'page' ], validation: { options: { include: { values: ALLOWED_INCLUDES } } }, permissions: true, query(frame) { const options = { ...frame.options, mongoTransformer: rejectPrivateFieldsTransformer }; return models.Author.findPage(options); } }, read: { headers: { cacheInvalidate: false }, options: [ 'include', 'filter', 'fields' ], data: [ 'id', 'slug', 'email', 'role' ], validation: { options: { include: { values: ALLOWED_INCLUDES } } }, permissions: true, async query(frame) { const options = { ...frame.options, mongoTransformer: rejectPrivateFieldsTransformer }; const model = await models.Author.findOne(frame.data, options); if (!model) { throw new errors.NotFoundError({ message: tpl(messages.notFound) }); } return model; } } }; module.exports = controller;