forked from Kibibit/achievibit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventManager.js
666 lines (556 loc) · 21.1 KB
/
eventManager.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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
var _ = require('lodash');
var colors = require('colors');
var schema = require('js-schema');
var achievibitDB = require('./achievibitDB');
var utilities = require('./utilities');
var async = require('async');
var console = require('./app/models/consoleService')();
// require all the achievement files
var achievements = require('require-all')({
dirname: __dirname + '/achievements',
filter: /(.+achievement)\.js$/,
excludeDirs: /^\.(git|svn)$/,
recursive: true
});
// OUR SCHEMAS!
var Achievement = schema({
avatar: String,
name: String,
short: String,
description: String,
relatedPullRequest: String
});
var Treasure = schema({
name: String,
gem: [String, Number, Boolean]
});
// all currently open pull requests
var pullRequests = {};
var EventManager = function() {
var self = this;
self.postFromWebhook = function(req, res) {
console.log('got a post about ' + req.header('X-GitHub-Event'));
self.notifyAchievements(req.header('X-GitHub-Event'), req.body, io);
res.json({
message: 'b33p b33p! got your notification, githubot!'
});
};
self.notifyAchievements = function(githubEvent, eventData, io) {
/**
* NEW REPO CONNECTED!!!
* a repo added achievibit as a GitHub webhook!
*/
if (_.isEqual(githubEvent, 'ping')) {
var repo = utilities.parseRepo(eventData.repository);
if (utilities.isPullRequestAssociatedWithOrganization(eventData)) {
repo.organization =
utilities.parseUser(eventData.repository.owner, true).username;
}
achievibitDB.insertItem('repos', repo);
}
/**
* INIT PULL REQUEST DATA
* Get the data as it was when the pull request opened.
* This will allow us to notify the achievements if something changed
* in case some achievements want to deal with changing things.
* notice that labels are given as a different event with the same
* time, so that way we know if that was an added label at creation
* or later
*/
if (_.isEqual(githubEvent, 'pull_request') &&
//_.isEqual(eventData.action, 'reopened') ?
_.isEqual(eventData.action, 'opened')) {
utilities.mergeBasePRData(pullRequests, eventData);
var id = utilities.getPullRequestIdFromEventData(eventData);
console.log([
'created new ',
colors.bgBlue.white.bold('pull request'),
' object'
].join(''), pullRequests[id]);
}
/**
* INIT PULL REQUEST DATA - LABELS
* This event means a label was added on creation.
* Therefore, we'll add that to the pull request without
* adding an update event
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'labeled') &&
_.isEqual(
eventData.pull_request.updated_at,
eventData.pull_request.created_at)
) {
/////
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id]
.labels.push(eventData.label.name);
console.log('added labels on creation', pullRequests[id]);
/**
* UPDATE PULL REQUEST DATA - LABEL ADDED
*/
} else if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'labeled')) {
/////
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id].history =
pullRequests[id].history || {};
if (!_.isObject(pullRequests[id].history.labels)) {
pullRequests[id].history.labels = {
added: 0,
removed: 0
};
}
pullRequests[id].history.labels.added++;
pullRequests[id]
.labels.push(eventData.label.name);
console.log('UPDATE labels', pullRequests[id]);
}
/**
* UPDATE PULL REQUEST DATA - LABEL REMOVED
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'unlabeled')) {
/////
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id].history =
pullRequests[id].history || {};
if (!_.isObject(pullRequests[id].history.labels)) {
pullRequests[id].history.labels = {
added: 0,
removed: 0
};
}
pullRequests[id].history.labels.removed++;
var removedItems = _.remove(pullRequests[id].labels, function(label) {
return _.isEqual(label, eventData.label.name);
});
console.log('UPDATE labels - removed', removedItems);
console.log('UPDATE labels', pullRequests[id]);
}
/**
* UPDATE PULL REQUEST DATA - PULL REQUEST EDITED
* This means something changed:
* * title
* * description
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'edited')) {
/////
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id].history =
pullRequests[id].history || {};
if (eventData.changes.title) {
var oldTitle = pullRequests[id].title;
if (!_.isArray(pullRequests[id].history.title)) {
pullRequests[id].history.title = [];
}
pullRequests[id].history.title.push({
changedOn: eventData.pull_request.updated_at,
title: oldTitle
});
pullRequests[id].title = eventData.pull_request.title;
console.log('UPDATE title', pullRequests[id]);
}
if (eventData.changes.body) {
var oldDescription = pullRequests[id].description;
if (!_.isArray(pullRequests[id].history.description)) {
pullRequests[id].history.description = [];
}
pullRequests[id].history.description.push({
changedOn: eventData.pull_request.updated_at,
description: oldDescription
});
pullRequests[id].description = eventData.pull_request.body;
console.log('UPDATE description', pullRequests[id]);
}
}
/**
* UPDATE PULL REQUEST DATA - ASSIGNEES CHANGED
* Currently, we don't log this change. But we can do that if we'll
* have some ideas for achievemenets for that :-)
*/
if (_.isEqual(githubEvent, 'pull_request') &&
(_.isEqual(eventData.action, 'unassigned') ||
_.isEqual(eventData.action, 'assigned'))) {
/////
var id = utilities.getPullRequestIdFromEventData(eventData);
if (!pullRequests[id]) {
pullRequests[id] = {};
}
var assignees = eventData.pull_request.assignees;
pullRequests[id].assignees = [];
for (var i = 0; i < assignees.length; i++) {
pullRequests[id].assignees.push(utilities.parseUser(assignees[i]));
}
console.log('UPDATE assignees', pullRequests[id]);
}
// CODE REVIEW
/**
* UPDATE PULL REQUEST DATA - REVIEWER ADDED (review request)
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'review_requested')) {
var id = utilities.getPullRequestIdFromEventData(eventData);
utilities.mergeBasePRData(pullRequests, eventData);
var reviewer = utilities.parseUser(eventData.requested_reviewer);
if (!pullRequests[id].reviewers) {
pullRequests[id].reviewers = [];
}
pullRequests[id].reviewers.push(reviewer);
pullRequests[id].reviewers =
_.uniqBy(pullRequests[id].reviewers, 'username');
console.log('ADDED REVIEWER', pullRequests[id]);
}
/**
* UPDATE PULL REQUEST DATA - REVIEWER REMOVED
* Can we know who removed the reviewer?
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'review_request_removed')) {
utilities.mergeBasePRData(pullRequests, eventData);
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id].history =
pullRequests[id].history || {};
var removedReviewer = utilities.parseUser(eventData.requested_reviewer);
if (!pullRequests[id].reviewers) {
pullRequests[id].reviewers = [];
} else {
var userToRemove = _.find(pullRequests[id].reviewers, {
username: removedReviewer.username
});
pullRequests[id].reviewers =
_.without(pullRequests[id].reviewers, userToRemove);
// manage history
pullRequests[id].history.deletedReviewers =
pullRequests[id].history.deletedReviewers || [];
pullRequests[id].history.deletedReviewers
.push(userToRemove);
console.log('REMOVED REVIEWER', pullRequests[id]);
}
}
/**
* UPDATE PULL REQUEST DATA - REVIEWER COMMENTED
* (as part of the CR)
*/
if (_.isEqual(githubEvent, 'pull_request_review_comment') &&
_.isEqual(eventData.action, 'created')) {
var id = utilities.getPullRequestIdFromEventData(eventData);
utilities.mergeBasePRData(pullRequests, eventData);
// need to parse this and add to pull request data
var newReviewComment = utilities.parseReviewComment(eventData.comment);
if (!pullRequests[id].reviewComments) {
pullRequests[id].reviewComments = [];
}
pullRequests[id].reviewComments.push(newReviewComment);
pullRequests[id].reviewComments =
_.uniqBy(pullRequests[id].reviewComments, 'id');
console.log('NEW REVIEW COMMENT', pullRequests[id]);
}
/**
* UPDATE PULL REQUEST DATA - REVIEWER DELETED COMMENT
* (as part of the CR)
*/
if (_.isEqual(githubEvent, 'pull_request_review_comment') &&
_.isEqual(eventData.action, 'deleted')) {
var id = utilities.getPullRequestIdFromEventData(eventData);
utilities.mergeBasePRData(pullRequests, eventData);
pullRequests[id].history =
pullRequests[id].history || {};
if (pullRequests[id].reviewComments) {
pullRequests[id].reviewComments = [];
} else {
var originalComment = _.find(pullRequests[id].reviewComments, {
id: eventData.comment.id
});
if (originalComment) {
pullRequests[id].reviewComments =
_.without(pullRequests[id].reviewComments, originalComment);
pullRequests[id].history.reviewComments =
pullRequests[id].history.reviewComments || {};
pullRequests[id].history.reviewComments.deleted =
pullRequests[id].history.reviewComments.deleted || [];
pullRequests[id].history.reviewComments.deleted
.push(eventData.comment.id);
console.log('DELETED REVIEW COMMENT', pullRequests[id]);
}
}
}
/**
* UPDATE PULL REQUEST DATA - REVIEWER EDITED COMMENT
* (as part of the CR)
*/
if (_.isEqual(githubEvent, 'pull_request_review_comment') &&
_.isEqual(eventData.action, 'edited')) {
utilities.mergeBasePRData(pullRequests, eventData);
var id = utilities.getPullRequestIdFromEventData(eventData);
pullRequests[id].history =
pullRequests[id].history || {};
var updatedReviewComment =
utilities.parseReviewComment(eventData.comment);
var oldBodyValue = eventData.changes.body.from;
var originalComment = _.find(pullRequests[id].reviewComments, {
id: eventData.comment.id
});
if (!originalComment) {
pullRequests[id].reviewComments =
pullRequests[id].reviewComments || [];
pullRequests[id].reviewComments.push(updatedReviewComment);
originalComment = updatedReviewComment;
}
pullRequests[id].history.reviewComments =
pullRequests[id].history.reviewComments || {};
pullRequests[id].history.reviewComments[eventData.comment.id] =
pullRequests[id].history.reviewComments[eventData.comment.id] || [];
pullRequests[id].history.reviewComments[eventData.comment.id]
.push(oldBodyValue);
originalComment.message = updatedReviewComment.message;
console.log('EDITED REVIEW COMMENT', pullRequests[id]);
}
/**
* UPDATE PULL REQUEST DATA - REVIEW SUBMITTED
*/
if (_.isEqual(githubEvent, 'pull_request_review') &&
_.isEqual(eventData.action, 'submitted')) {
var newReviewStatus = utilities.parseReviewStatus(eventData.review);
var id = utilities.getPullRequestIdFromEventData(eventData);
utilities.mergeBasePRData(pullRequests, eventData);
if (!pullRequests[id].reviews) {
pullRequests[id].reviews = [];
}
pullRequests[id].reviews.push(newReviewStatus);
pullRequests[id].reviews =
_.uniqBy(pullRequests[id].reviews, 'id');
console.log('NEW REVIEW STATUS RECIEVED', pullRequests[id]);
}
/**
* PULL REQUEST ACHIEVEMENTS EVENTS
* Send correct events based on data
* so achievements can listen and UNLOCK if
* data matched what they looked for
*/
if (_.isEqual(githubEvent, 'pull_request') &&
_.isEqual(eventData.action, 'closed') &&
eventData.pull_request.merged) {
// this is the time to give achievements!
// need to create a dataObject that I can give here
// that will include all important changes.
// those are:
// * log edits to pull request info (title, body, labels)
// * log comments data so we can give achievements based on comments?
// * log status updates (can give achievements on flawless builds, etc.)
// Those will be logged here by other "ifs", and this if will trigger all
// the relevant events based on that data
// first, get some additional data:
// * comments
// * reactions
var id = utilities.getPullRequestIdFromEventData(eventData);
// if by any chance we missed creating the pull request,
// create it here (means we won't have history)
utilities.mergeBasePRData(pullRequests, eventData);
achievibitDB.getExtraPRData(pullRequests[id], function() {
dataReady(id, io);
});
}
};
function dataReady(id, io) {
console.info(colors.rainbow('~~== PULL REQUEST MERGED! ==~~'),
pullRequests[id]);
achievibitDB.addPRItems(pullRequests[id], function() {
console.info('everything finished');
var allPRUsers = [ pullRequests[id].creator ];
if (_.isArray(pullRequests[id].reviewers)) {
allPRUsers = allPRUsers.concat(pullRequests[id].reviewers);
}
grantAchievements(allPRUsers, pullRequests[id], io);
});
}
function grantAchievements(allPRUsers, pullRequest, io) {
console.info(colors.rainbow('~~== CHECKING ACHIEVEMENTS ==~~'));
if (!allPRUsers) {
console.error('no users to grant achievements', allPRUsers);
return;
}
var grantedAchievements = {};
var checkAchievements = [];
// check for achievements
_.forEach(achievements, function(achievement, achievementFilename) {
checkAchievements
.push(checkAchievementTask(achievement,
achievementFilename, allPRUsers, pullRequest, grantedAchievements));
});
async.parallel(checkAchievements, function() {
_.forEach(allPRUsers, function(user) {
if (grantedAchievements[user.username]) {
achievibitDB.findItem('users', {
username: user.username
}).then(function(users) {
var _user = users[0];
if (!_user.achievements) {
_user.achievements = [];
}
var userAchievements = _user.achievements;
var newAchievements = _.differenceBy(
grantedAchievements[_user.username],
userAchievements,
'name'
);
_.forEach(newAchievements, function(achievementObject) {
io.sockets.emit(_user.username, achievementObject);
});
var newData = {};
if (newAchievements) {
newData.achievements = {
$each: newAchievements
};
}
console.log('adding achievements to DB for ' + _user.username);
try {
achievibitDB.updatePartialArray('users', {
username: _user.username
}, newData);
} catch (error) {
console.error(error);
}
});
}
});
});
}
function checkAchievementTask(achievement,
achievementFilename, allPRUsers, pullRequest, grantedAchievements) {
return function(callback) {
if (_.isFunction(achievement.check)) {
try {
if (_.isBoolean(achievement.accumulative) &&
achievement.accumulative) {
var searchUsernamesArray = _.map(allPRUsers, function(user) {
return { username: user.username };
});
//console.log('searchUsernamesArray', searchUsernamesArray);
achievibitDB.findItem('users', {
$or: searchUsernamesArray
}).then(function(users) {
var userToCounter = {};
_.forEach(users, function(user) {
userToCounter[user.username] =
_.get(user, 'accumulatives.' + achievement.name) || 0;
});
console.error('this is what we got', userToCounter);
achievement.check(pullRequest,
new Shall(achievement,
achievementFilename,
grantedAchievements),
userToCounter);
callback(null, 'finished');
});
} else {
achievement.check(pullRequest,
new Shall(achievement, achievementFilename, grantedAchievements));
callback(null, 'finished');
}
} catch (error) {
console.error([
'ERROR IN ACHIEVEMENT ',
achievement.name || achievementFilename
].join(''), error.message);
callback(null, 'ERROR');
}
}
};
}
function Shall(achievement, achievementFilename, grantedAchievements) {
return {
grant: function(username, achievementObject) {
if (!_.isString(username)) {
console.error(achievementFilename +
': grant should get a username');
return;
}
if (!_.isObject(achievementObject)) {
console.error(achievementFilename +
': grant should get an object');
return;
}
if (Achievement(achievementObject)) {
if (!grantedAchievements[username]) {
grantedAchievements[username] = [];
}
achievementObject.grantedOn = new Date().getTime();
grantedAchievements[username].push(achievementObject);
console.log([
colors.bgWhite.green('ACHIEVEMENT UNLOCKED:'),
colors.bgYellow.black.bold(username),
'recieved',
colors.bgYellow.black.bold(achievementObject.name)
].join(' '), achievementObject);
} else {
console.error([
achievementObject.name || achievementFilename,
': didn\'t get the correct structure. see documentation'
].join(''), Achievement.errors(achievementObject));
}
},
pass: function(username, treasure) {
if (Treasure(treasure)) {
// TODO(thatkookooguy): do we need this first call? what happens if
// there's no user in line 555?
achievibitDB.findItem('users', {
username: username
}).then(function() {
var dataObject = {};
dataObject['treasures.' + treasure.name] = treasure.gem;
achievibitDB.updatePartially('users', {
username: username
}, dataObject);
}, function(error) {
console.error('GOD DAMMIT!', error);
});
} else {
console.log('Treasure problems:');
console.log(Treasure.errors(treasure));
}
},
retrieve: function(username, treasureName) {
if (!_.isString(username) || !_.isString(treasureName)) {
console.error('retrieve expects a username and a treasure name');
return;
}
return achievibitDB.findItem('users', {
username: username
}).then(function(users) {
var user = users[0];
var foundTreasure =
user && user.treasures && user.treasures[treasureName];
return foundTreasure ? user.treasures[treasureName] : null;
});
},
progress: function(username, newCounter) {
if (!achievement.accumulative) {
console.error([
'progress should only be used by accumulative achievements'
].join(''));
return;
}
if (!_.isString(username) ||
_.isObject(newCounter) ||
_.isArray(newCounter)) {
console.error([
'retrieve expects a username and a new PRIMITIVE counter'
].join(''));
return;
}
var newData = {};
newData.accumulatives = {};
newData.accumulatives[achievement.name] = newCounter;
var dataObject = {};
dataObject['accumulatives.' + achievement.name] = newCounter;
console.log('gonna update with this data:', dataObject);
return achievibitDB.updatePartially('users', {
username: username
}, dataObject);
}
};
}
};
var eventManager = new EventManager();
module.exports = eventManager;