-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-adapter.js
More file actions
387 lines (276 loc) · 11 KB
/
github-adapter.js
File metadata and controls
387 lines (276 loc) · 11 KB
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
'use strict'
const docloop = require('docloop'),
EventQueue = docloop.EventQueue,
DocloopAdapter = docloop.DocloopAdapter,
DocloopError = docloop.DocloopError,
catchAsyncErrors = docloop.catchAsyncErrors,
errorHandler = docloop.errorHandler,
GithubTarget = require('./github-target.js'),
GithubApp = require('./github-app.js'),
GithubUser = require('./github-user.js'),
fs = require('fs'),
request = require('request-promise-native'),
Promise = require('bluebird')
//TODO: description! TODO: throw Errors when misconfigured.
//
/**
*
* @module githubAdapter
* @license GPL-3.0
*
*/
/**
* Adapter to post issues and comments on github
* TODO: description
* TODO: eventque details
* TODO: Defaults
* TODO: typedefs for params and proerties.
*
* The following arguments and properties are on top of the arguments and properties of {@link DocloopAdapter}.
*
* @alias GithubAdapter
* @memberof module:githubAdapter
*
* @extends DocloopAdapter
*
* @param {DocloopCore} core
* @param {Object} config
* @param {String} config.appId GithubApp Id.
* @param {String} [config.appPrivateKey] GithubApp private. If not provided config.appPrivateKeyLocation is required.
* @param {String} [config.appPrivateKeyLocation] GithubApp private key location. Can only be omitted if config.appPrivateKey is present.
* @param {Object} [eventQueue] EventQueue config. See {@link EventQueue}.
* @param {Object} config.oAuth Data to authorize GithubApp. Sets .oAuth property.
* @param {Object} config.dummy Sets dummy property.
*
* @property {String} endpointDefaultConfig.label Name of the label to tag a new issue with
* @property {GithubUser} githubUser API wrapper for github user interaction
* @property {GithubApp} githubApp API wrapper for github app interaction
* @property {Collection} events Mongo-db collection for stored events
* @property {EventQueue} eventQueue The event queue the event is stored in
* @property {Object} oAuth OAuth credentials has provided.
* @property {String} oAuth.clientSecret
* @property {String} oAuth.accessTokenUrl Url to retrieve an access token from after github posted to Callback (See: GithubApps)
* @property {String} oAuth.authUrl Url to open for the user to enter credentials.
* @property {Object} dummy Content of the dummy issue created when a comment is missing its parent issue.
* @property {Object} dummy.title Title of the dummy issue.
* @property {Object} dummy.body Body of the dummy issze.
*/
class GithubAdapter extends DocloopAdapter{
constructor(core, config) {
if(!config) throw ReferenceError('GitHubAdapter.constructor(): missing config')
super(core, {
...config,
id: 'github',
type: 'target',
endpointClass: GithubTarget,
extraEndpoints: false,
endpointDefaultConfig: {
label: 'docloop',
},
help: `If this adapter won't detect all your repositories, please make sure you installed the docloop GithubApp and gave it access to the repositories you would like to add here.
You can install and configure the GithubApp here: ${config.app.installationLink}`
} )
this.githubUser = new GithubUser()
this.githubApp = new GithubApp({
id: config.app.id,
cert: config.app.privateKey || fs.readFileSync(config.app.privateKeyLocation)
})
this.oAuth = config.oAuth
this.dummy = config.dummy
docloop.serializeCalls(this, [
'handleQueuedAnnotationEvent',
'handleQueuedReplyEvent'
])
this.core.on('annotation', this.queueAnnotationEvent.bind(this) )
this.core.on('reply', this.queueReplyEvent.bind(this) )
this.app.get('/oauth/callback', catchAsyncErrors(this.handleOAuthCallback.bind(this)) )
this.ready = this.ready
.then( () => {
//eventQueue:
const eventQueueConfigDefault = {
delay: [0, 1000, 5000],
minDelay: 0,
maxAttempts: 3,
processInterval: 10*60*1000,
spread: 100, //Todo , when frist added events are attempted ot once, without spread =/
}
this.eventQueue = new EventQueue({
collection: this.core.db.collection(this.id+'_annotationEvents'),
... {
...eventQueueConfigDefault,
...config.eventQueue
}
})
console.log(this.eventQueue)
this.eventQueue.on('annotation-fail', queued_event => this.logAnnotationFailedEvent(queued_event) )
this.eventQueue.on('annotation-done', queued_event => this.logAnnotationDoneEvent(queued_event) )
this.eventQueue.on('annotation-attempt', queued_event => this.handleQueuedAnnotationEvent(queued_event) )
// this.eventQueue.on('reply-fail', queued_event => this.logReplyFailedEvent(reply) )
// this.eventQueue.on('reply-done', queued_event => this.logReplyDoneEvent(reply) )
this.eventQueue.on('reply-attempt', queued_event => this.handleQueuedReplyEvent(queued_event) )
this.eventQueue.start()
})
//TODO: Remove queued events when link is removed
//TODO:Add config to targets
//TODO: default config and config Error
//TODO: this.eventQueue.on('fail', this.handleNewAnnotationEvent.bind(this))
//TODO catch logout event!
/* PLAN: Immer wenn User graucht wird auf login umleiten und aufgabe stacken, dann wenn der code und schließlich der token da ist, stack abarbeiten */
//Api-calls mit demselben token stacken
//throw user token away, if need be
//TODO: separate meta data form target/sources
//TODO: stack api calls
//TODO: rename controller for routes
//TODO: add label to issues, no need for title addon
//TODO: multipage!
//TODO: check performacnce /how many api call at once?
}
/**
* Add an annotation event to the event queue
*
* @param {Annotation} Annotation from an annotation event
*
* @return {undefined}
*/
queueAnnotationEvent(event){
//check if event was relayed to this adapter, if not, ignore it:
if(!event) return null
if(!event.target) return null //maybe log error?
if(!event.target.id) return null //maybe log error?
if(!event.target.adapter) return null //maybe log error?
if(event.target.adapter == this.id) this.eventQueue.add('annotation', event)
}
/**
* Add an reply event to the event queue
*
* @param {Reply} Reply from an reply event#
*
* @return {undefined}
*/
queueReplyEvent(event){
//check if event was relayed to this adapter, if not, ignore it:
if(!event) return null
if(!event.target) return null //maybe log error?
if(!event.target.id) return null //maybe log error?
if(!event.target.adapter) return null //maybe log error?
if(event.target.adapter == this.id) this.eventQueue.add('reply', event)
}
/**
* Handle request sent by github after successful authorization.
* Uses the app config data and posted code to gain access token from github and store it in session data for later use.
* If successful redirects back to the configured front end url.
*
* @route {GET} /adapters/github/oauth/callback
*
* @async
*
* @param {Object} req Express request object
* @param {Object} res Express result object
*
* @throws {DocloopError} If not successful
*
* @return undefined
*/
async handleOAuthCallback(req, res){
var session_data = this._clearSessionData(req.session),
json = {
client_id: this.oAuth.clientId,
client_secret: this.oAuth.clientSecret,
code: req.query.code
},
uri = this.oAuth.accessTokenUrl,
data = await request( {method: 'post', uri, json} )
if(data && data.access_token){
session_data.access_token = data.access_token
res.redirect(this.core.config.clientUrl)
} else{
throw new DocloopError("GithubAdapter.handleOAuthCallback: unable to get access token", 403)
}
}
/**
* @Get authorization state.
* @async
* @param {session_data}
* @return {AuthState}
*/
async getAuthState(session_data){
var user = undefined,
url = this.oAuth.authUrl,
access_token = session_data && session_data.access_token
try {
user = await this.githubUser.get(access_token)
}
catch(e) {
console.log(e)
user = undefined
//it's alright if this doesn't work, worst case: we dont get a user name, but then that is exactly what this method is supposed to report.
}
return {user: user && user.login, url}
}
/**
* Get all Github repositories for the user authorized for with the access token in session data.
* @async
* @param {SessionData}
* @return {Object[]}
*/
async getUserRepos(session_data){
if(!session_data) throw new ReferenceError("GithubAdapter.getUserRepos() missing session data")
if(!session_data.access_token) throw new DocloopError("GithubAdapter.getUserRepos() missing session data", 403)
return Promise.map(
this.githubUser.getInstallations(session_data.access_token),
installation_id => this.githubApp.getRepositories(installation_id)
)
.then(repository_arrays => Array.prototype.concat.apply([], repository_arrays))
}
/**
* @inheritDoc
*/
async getEndpoints(session_data){
var repos = await this.getUserRepos(session_data)
return repos.map( repo => GithubTarget.fromRepo(this, repo) )
}
//return only endpoints the user has acces to!
//TODO: add decor separately
/**
* @inheritDoc
*/
async getStoredEndpoints(session_data){
var valid_endpoints = await this.getEndpoints(session_data)
if(valid_endpoints.length == 0) return []
var query = { $or : valid_endpoints.map( endpoint => ({ identifier: endpoint.identifier }) ) },
stored_endpoint_data_array = await this.endpoints.find(query).toArray(),
stored_endpoints = stored_endpoint_data_array.map( endpoint_data => this.newEndpoint(endpoint_data))
return stored_endpoints
}
async handleQueuedAnnotationEvent(queued_event){
console.log('handleQueuedAnnotationEvent')
//Todo: nur ztum testen:
var event = queued_event.event || queued_event,
annotation = event.annotation,
target_id = event.target.id
//TODO: check event.link.target.id
var target = await this.getStoredEndpoint(target_id)
await target.handleAnnotation(annotation)
queued_event.checkOff()
}
async handleQueuedReplyEvent(queued_event){
//Todo: nur ztum testen:
var event = queued_event.event || queued_event,
reply = event.reply,
target_id = event.target.id
//TODO: check event.link.target.id
var target = await this.getStoredEndpoint(target_id)
await target.handleReply(reply)
queued_event.checkOff()
}
//TODO
async logAnnotationFailedEvent(queued_event){
//console.log('this event failed', queued_event)
return queued_event
}
async logAnnotationDoneEvent(queued_event){
//console.log('this event was settled', queued_event)
return queued_event
}
}
module.exports = {GithubAdapter, GithubTarget, GithubUser, GithubApp}