forked from fregante/chrome-webstore-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
86 lines (71 loc) · 2.31 KB
/
index.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
const got = require('got');
const rootURI = 'https://www.googleapis.com';
const refreshTokenURI = 'https://www.googleapis.com/oauth2/v4/token';
const uploadExistingURI = id => `${rootURI}/upload/chromewebstore/v1.1/items/${id}`;
const publishURI = (id, target) => (
`${rootURI}/chromewebstore/v1.1/items/${id}/publish?publishTarget=${target}`
);
const requiredFields = [
'extensionId',
'clientId',
'clientSecret',
'refreshToken'
];
class APIClient {
constructor(opts) {
requiredFields.forEach(field => {
if (!opts[field]) {
throw new Error(`Option "${field}" is required`);
}
this[field] = opts[field];
});
}
uploadExisting(readStream, token) {
if (!readStream) {
return Promise.reject(new Error('Read stream missing'));
}
const { extensionId } = this;
const eventualToken = token ? Promise.resolve(token) : this.fetchToken();
return eventualToken.then(token => {
return got.put(uploadExistingURI(extensionId), {
headers: this._headers(token),
body: readStream,
json: true
}).then(this._extractBody);
});
}
publish(target = 'default', token) {
const { extensionId } = this;
const eventualToken = token ? Promise.resolve(token) : this.fetchToken();
return eventualToken.then(token => {
return got.post(publishURI(extensionId, target), {
headers: this._headers(token),
json: true
}).then(this._extractBody);
});
}
fetchToken() {
const { clientId, clientSecret, refreshToken } = this;
return got.post(refreshTokenURI, {
body: {
client_id: clientId,
client_secret: clientSecret,
refresh_token: refreshToken,
grant_type: 'refresh_token'
},
json: true
}).then(this._extractBody).then(({ access_token }) => access_token);
}
_headers(token) {
return {
Authorization: `Bearer ${token}`,
'x-goog-api-version': '2'
};
}
_extractBody({ body }) {
return body;
}
}
module.exports = function(...args) {
return new APIClient(...args);
};