aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hooks/populate-user.js
blob: 97d69db0a6205d76ea701e8823888f702e249c61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Use this hook to manipulate incoming or outgoing data.
// For more information on hooks see: http://docs.feathersjs.com/api/hooks.html

module.exports = function (options = {}) { // eslint-disable-line no-unused-vars
  return async context => {
    const {app, method, result, params} = context;
    const posts = method === 'find' ? result.data : [result];

    await Promise.all(posts.map(async post => {
      post.user = await app.service('users').get(post.userId, params);
    }));

    posts.forEach(post => delete post.userId);

    return context;
  };
};