This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathrest-gateway.js
72 lines (60 loc) · 1.94 KB
/
rest-gateway.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
const {HTTPRequestError} = require('./errors')
module.exports =
class RestGateway {
constructor ({baseURL, oauthToken}) {
this.baseURL = baseURL
this.oauthToken = oauthToken
}
setOauthToken (oauthToken) {
this.oauthToken = oauthToken
}
get (relativeURL, options) {
return this.fetch(relativeURL, {
method: 'GET',
headers: this.getDefaultHeaders()
})
}
post (relativeURL, requestBody) {
return this.fetch(relativeURL, {
method: 'POST',
headers: Object.assign(this.getDefaultHeaders(), {'Content-Type': 'application/json'}),
body: JSON.stringify(requestBody)
})
}
async fetch (relativeURL, {method, headers, body}) {
const url = this.getAbsoluteURL(relativeURL)
let response
try {
response = await window.fetch(url, {method, headers, body})
} catch (e) {
const error = new HTTPRequestError('Connection failure')
error.diagnosticMessage = getDiagnosticMessage({method, url})
throw error
}
const {ok, status} = response
const rawBody = await response.text()
try {
const body = JSON.parse(rawBody)
return {ok, body, status}
} catch (e) {
const error = new HTTPRequestError('Unexpected response')
error.diagnosticMessage = getDiagnosticMessage({method, url, status, rawBody})
throw error
}
}
getDefaultHeaders () {
const headers = {'Accept': 'application/json'}
if (this.oauthToken) headers['GitHub-OAuth-token'] = this.oauthToken
return headers
}
getAbsoluteURL (relativeURL) {
return this.baseURL + relativeURL
}
}
const PORTAL_ID_REGEXP = /[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/g
function getDiagnosticMessage ({method, url, status, rawBody}) {
let message = `Request: ${method} ${url}`
if (status) message += `\nStatus Code: ${status}`
if (rawBody) message += `\nBody: ${rawBody}`
return message.replace(PORTAL_ID_REGEXP, 'REDACTED')
}