aboutsummaryrefslogtreecommitdiff
path: root/services/polls/polls.hooks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'services/polls/polls.hooks.ts')
-rw-r--r--services/polls/polls.hooks.ts38
1 files changed, 38 insertions, 0 deletions
diff --git a/services/polls/polls.hooks.ts b/services/polls/polls.hooks.ts
new file mode 100644
index 0000000..ff6a83f
--- /dev/null
+++ b/services/polls/polls.hooks.ts
@@ -0,0 +1,38 @@
+import { HookContext } from '@feathersjs/feathers';
+import bluebird from 'bluebird';
+import _ from 'lodash';
+
+import { PollSchema } from '../../models/polls/poll.schema';
+import { UserSchema } from '../../models/users/user.schema';
+import UserModel from '../../models/users/user.model';
+
+
+interface Poll extends Omit<PollSchema, 'authorId'> {
+ author: UserSchema;
+}
+
+const expandAuthor = async (poll: PollSchema): Promise<Poll | null> => {
+ return UserModel.findById(poll.authorId).then((author: UserSchema | null): Poll | null => {
+ if (author) return _.merge(_.omit(poll, 'authorId'), { author });
+ return null;
+ });
+};
+
+const expandAuthorHook = async (context: HookContext): Promise<HookContext> => {
+ context.result = await expandAuthor(context.result);
+ return context;
+};
+
+const expandAuthorManyHook = async (context: HookContext): Promise<HookContext> => {
+ context.result = await bluebird.map(context.result, (poll: any) => expandAuthor(poll));
+ console.log(context.result);
+ return context;
+};
+
+
+export default {
+ after: {
+ get: [expandAuthorHook],
+ find: [expandAuthorManyHook]
+ }
+}