-
Notifications
You must be signed in to change notification settings - Fork 46
/
reddit.js
353 lines (342 loc) · 9.45 KB
/
reddit.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
import {
getUser,
getSubreddit,
getSubredditListings,
getComments
} from './apis/reddit';
import {
graphql,
GraphQLSchema,
GraphQLObjectType,
GraphQLString,
GraphQLNonNull,
GraphQLInt,
GraphQLEnumType,
GraphQLBoolean,
GraphQLList,
GraphQLFloat
} from 'graphql';
/*
Listing
Article
Comment
User
*/
let itemTypeEnum = new GraphQLEnumType({
name: 'ItemType',
description: 'The type of object',
values: {
comment: {
value: 't1'
},
account: {
value: 't2'
},
link: {
value: 't3'
},
message: {
value: 't4'
},
subreddit: {
value: 't5'
},
award: {
value: 't6'
},
promoCampaign: {
value: 't8'
}
}
});
let timeIntervalType = new GraphQLEnumType({
name : 'TimeInterval',
description : 'Time interval by which listings are queried',
values: {
hour : {
value : 'hour'
},
day : {
value : 'day'
},
week : {
value : 'week'
},
month : {
value : 'month'
},
year : {
value : 'year'
},
all : {
value : 'All'
}
}
});
let userType = new GraphQLObjectType({
name : 'RedditUser',
description : 'Information about a Reddit user',
fields : {
fullnameId : {
type : new GraphQLNonNull(GraphQLString),
description : 'The Reddit API fullname of the user',
resolve : (user) => {
return `${user.kind}_${user.data.id}`;
}
},
username : {
type : new GraphQLNonNull(GraphQLString),
description : 'The user\'s unique username.',
resolve: (user) => {
return user.data.name;
}
},
created : {
type : new GraphQLNonNull(GraphQLFloat),
description : 'Creation date of the user, in Unix Time (UTC)',
resolve: (user) => user.data.created_utc
},
createdISO : {
type : new GraphQLNonNull(GraphQLString),
description : 'Creation date of the user, in ISO8601',
resolve: (user) => {
let date = new Date(user.data.created_utc * 1000);
return date.toISOString();
}
},
linkKarma : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Karma by links of the user',
resolve: (user) => {
return user.data.link_karma;
}
},
commentKarma : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Karma by comments of the user',
resolve: (user) => {
return user.data.comment_karma;
}
}
}
});
let createListingField = function(description, listingType, { hasTimeInterval = false } = {}) {
let args = {
after : {
description : 'FullnameId of an item in the listing to use as the anchor point of the slice.',
type: GraphQLString,
},
before : {
description : 'FullnameId of an item in the listing to use as the anchor point of the slice.',
type: GraphQLString,
},
count : {
description : 'The number of items already seen in this listing',
type: GraphQLInt
},
limit : {
description : 'The maximum number of items to return in this slice of the listing.',
type : GraphQLInt
}
};
if (hasTimeInterval) {
args.timeInterval = {
description : 'Time interval to retrieve listings',
type : timeIntervalType
}
}
return {
description,
args,
type : new GraphQLNonNull(new GraphQLList(linkType)),
resolve : (subreddit, args) => {
let requestOptions = args;
requestOptions.t = args.timeInterval;
delete requestOptions.timeInterval;
return getSubredditListings(subreddit.data.display_name, listingType, requestOptions).then((data) => {
return data.data.children;
});
}
}
};
let commentType = new GraphQLObjectType({
name : 'RedditComment',
description : 'A comment on a link',
fields : () => ({
author : {
description : 'Author of the comment',
type : new GraphQLNonNull(userType),
resolve : (comment) => getUser(comment.data.author)
},
body : {
description : 'Body of the comment',
type : new GraphQLNonNull(GraphQLString),
resolve : (comment) => comment.data.body
},
replies : {
description : 'Replies to the comment',
type : new GraphQLNonNull(new GraphQLList(commentType)),
args : {
depth : {
type : GraphQLInt,
description : 'Maximum depth of subtrees in the thread'
},
limit : {
type : GraphQLInt,
description : 'Maximum number of comments to return'
}
},
resolve : (comment, args) => {
let linkId = comment.data.link_id.split('_')[1];
args.comment = comment.data.id;
return getComments(comment.data.subreddit, linkId, args).then((data) => {
return data[1].data.children;
});
}
}
})
});
let linkType = new GraphQLObjectType({
name : 'RedditLink',
description : 'A link posted to a subreddit',
fields : {
title : {
description : 'Title of the link',
type : new GraphQLNonNull(GraphQLString),
resolve : (link) => link.data.title
},
fullnameId : {
type : new GraphQLNonNull(GraphQLString),
description : 'The Reddit API fullname of the link',
resolve : (link) => {
return `${link.kind}_${link.data.id}`;
}
},
score : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Score of the link',
resolve : (link) => link.data.score
},
numComments : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Number of comments',
resolve : (link) => link.data.num_comments
},
url : {
type : new GraphQLNonNull(GraphQLString),
description : 'URL of the link',
resolve : (link) => link.data.url
},
author : {
type : new GraphQLNonNull(userType),
description : 'Author of the link',
resolve : (link) => getUser(link.data.author)
},
comments : {
type : new GraphQLNonNull(new GraphQLList(commentType)),
description : 'Comments on the link',
args : {
depth : {
type : GraphQLInt,
description : 'Maximum depth of subtrees in the thread'
},
limit : {
type : GraphQLInt,
description : 'Maximum number of comments to return'
}
},
resolve : (link, args) => {
return getComments(link.data.subreddit, link.data.id, args).then((data) => {
return data[1].data.children;
});
}
}
}
});
let subredditType = new GraphQLObjectType({
name : 'RedditSubreddit',
description : 'Information about and listings in a subreddit',
fields : {
name : {
type : new GraphQLNonNull(GraphQLString),
description : 'Name of the subreddit',
resolve : (subreddit) => subreddit.data.display_name
},
fullnameId : {
type : new GraphQLNonNull(GraphQLString),
description : 'The Reddit API fullname of the subreddit',
resolve : (subreddit) => {
return `${subreddit.kind}_${subreddit.data.id}`;
}
},
title : {
type : new GraphQLNonNull(GraphQLString),
description : 'Title of the subreddit',
resolve : (subreddit) => subreddit.data.title
},
publicDescription : {
type : new GraphQLNonNull(GraphQLString),
description : 'Description of the subreddit',
resolve : (subreddit) => subreddit.data.public_description
},
accountsActive : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Accounts active right now on the subreddit',
resolve : (subreddit) => subreddit.data.accounts_active
},
subscribers : {
type : new GraphQLNonNull(GraphQLInt),
description : 'Number of subscribers to the subreddit',
resolve : (subreddit) => subreddit.data.subscribers
},
created : {
type : new GraphQLNonNull(GraphQLFloat),
description : 'Creation date of the subreddit, in Unix Time (UTC)',
resolve: (subreddit) => subreddit.data.created_utc
},
createdISO : {
type : new GraphQLNonNull(GraphQLString),
description : 'Creation date of the subreddit, in ISO8601',
resolve: (subreddit) => {
let date = new Date(subreddit.data.created_utc * 1000);
return date.toISOString();
}
},
hotListings : createListingField('Hot/"Front Page" listings of the subreddit', 'hot'),
newListings : createListingField('Newest listings of the subreddit', 'new'),
risingListings : createListingField('Rising listings of the subreddit', 'rising'),
controversialListings : createListingField('Controversial listings of the subreddit', 'controversial', { hasTimeInterval : true }),
topListings : createListingField('Top listings of the subreddit', 'controversial', { hasTimeInterval : true }),
}
});
let redditType = new GraphQLObjectType({
name : 'RedditAPI',
description : 'The Reddit API',
fields : {
subreddit : {
type: subredditType,
args : {
name : {
description : 'Name of the subreddit',
type: new GraphQLNonNull(GraphQLString),
}
},
resolve: function(root, { name }) {
return getSubreddit(name);
}
},
user : {
type: userType,
args : {
username : {
description : 'Username of the user',
type: new GraphQLNonNull(GraphQLString),
}
},
resolve: function(root, { username }) {
return getUser(username);
}
}
}
});
export const QueryObjectType = redditType;