forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContext.js
137 lines (117 loc) · 3.22 KB
/
Context.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
* Copyright © 2016-present Kriasoft.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
/* @flow */
import DataLoader from 'dataloader';
import type { request as Request } from 'express';
import type { t as Translator } from 'i18next';
import db from './db';
import { mapTo, mapToMany, mapToValues } from './utils';
import { UnauthorizedError } from './errors';
class Context {
request: Request;
user: any;
t: Translator;
constructor(request: Request) {
this.request = request;
this.t = request.t;
}
get user(): any {
return this.request.user;
}
/*
* Data loaders to be used with GraphQL resolve() functions. For example:
*
* resolve(post: any, args: any, { userById }: Context) {
* return userById.load(post.author_id);
* }
*
* For more information visit https://github.com/facebook/dataloader
*/
userById = new DataLoader(keys =>
db
.table('users')
.whereIn('id', keys)
.select()
.then(mapTo(keys, x => x.id)),
);
emailById = new DataLoader(keys =>
db
.table('emails')
.whereIn('id', keys)
.select()
.then(mapTo(keys, x => x.id)),
);
emailsByUserId = new DataLoader(keys =>
db
.table('emails')
.whereIn('user_id', keys)
.select()
.then(mapToMany(keys, x => x.user_id)),
);
storyById = new DataLoader(keys =>
db
.table('stories')
.whereIn('id', keys)
.select()
.then(mapTo(keys, x => x.id)),
);
storyCommentsCount = new DataLoader(keys =>
db
.table('stories')
.leftJoin('comments', 'stories.id', 'comments.story_id')
.whereIn('stories.id', keys)
.groupBy('stories.id')
.select('stories.id', db.raw('count(comments.story_id)'))
.then(mapToValues(keys, x => x.id, x => x.count)),
);
storyPointsCount = new DataLoader(keys =>
db
.table('stories')
.leftJoin('story_points', 'stories.id', 'story_points.story_id')
.whereIn('stories.id', keys)
.groupBy('stories.id')
.select('stories.id', db.raw('count(story_points.story_id)'))
.then(mapToValues(keys, x => x.id, x => x.count)),
);
commentById = new DataLoader(keys =>
db
.table('comments')
.whereIn('id', keys)
.select()
.then(mapTo(keys, x => x.id)),
);
commentsByStoryId = new DataLoader(keys =>
db
.table('comments')
.whereIn('story_id', keys)
.select()
.then(mapToMany(keys, x => x.story_id)),
);
commentsByParentId = new DataLoader(keys =>
db
.table('comments')
.whereIn('parent_id', keys)
.select()
.then(mapToMany(keys, x => x.parent_id)),
);
commentPointsCount = new DataLoader(keys =>
db
.table('comments')
.leftJoin('comment_points', 'comments.id', 'comment_points.comment_id')
.whereIn('comments.id', keys)
.groupBy('comments.id')
.select('comments.id', db.raw('count(comment_points.comment_id)'))
.then(mapToValues(keys, x => x.id, x => x.count)),
);
/*
* Authenticatinon and permissions.
*/
ensureIsAuthenticated() {
if (!this.user) throw new UnauthorizedError();
}
}
export default Context;