aboutsummaryrefslogtreecommitdiff
path: root/hooks/convertPoll.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-21 14:29:59 +0300
committereug-vs <eug-vs@keemail.me>2020-06-21 14:30:55 +0300
commite99b51895afd532a529744396ecae87d47c68503 (patch)
treeb5c1ebc0f364d8e11ddad0f27b57340d45b44bb1 /hooks/convertPoll.ts
parentf4c4f2d4789880c0cfc956d08aab10b5a93ebcb1 (diff)
downloadwhich-api-e99b51895afd532a529744396ecae87d47c68503.tar.gz
feat: change hooks and install which-types
Diffstat (limited to 'hooks/convertPoll.ts')
-rw-r--r--hooks/convertPoll.ts45
1 files changed, 45 insertions, 0 deletions
diff --git a/hooks/convertPoll.ts b/hooks/convertPoll.ts
new file mode 100644
index 0000000..62ddea1
--- /dev/null
+++ b/hooks/convertPoll.ts
@@ -0,0 +1,45 @@
+import { HookContext } from '@feathersjs/feathers';
+import bluebird from 'bluebird';
+import _ from 'lodash';
+import { Poll, User } from 'which-types';
+
+import { PollSchema } from '../models/polls/poll.schema';
+import UserModel from '../models/users/user.model';
+
+const convertPoll = async (poll: PollSchema): Promise<Poll | null> => {
+ return UserModel.findById(poll.authorId)
+ .lean<User>()
+ .exec()
+ .then((author: User | null): Poll | null => {
+ return author && _.merge(
+ _.omit(poll, ['authorId']),
+ {
+ author,
+ contents: {
+ left: {
+ votes: poll.contents.left.votes.length
+ },
+ right: {
+ votes: poll.contents.right.votes.length
+ }
+ }
+ }
+ );
+ })
+ .catch(err => {
+ console.error(err);
+ return err;
+ });
+};
+
+export const convertPollHook = async (context: HookContext): Promise<HookContext> => {
+ context.result = await convertPoll(context.result);
+ return context;
+};
+
+export const convertPollManyHook = async (context: HookContext): Promise<HookContext> => {
+ const polls = await bluebird.map(context.result, (poll: PollSchema) => convertPoll(poll));
+ context.result = _.compact(polls);
+ return context;
+};
+