-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgithubClient.ts
More file actions
366 lines (288 loc) · 11.6 KB
/
githubClient.ts
File metadata and controls
366 lines (288 loc) · 11.6 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
import * as moment from "moment";
import * as Utils from "@paperbits/common/utils";
import { ISettingsProvider } from "@paperbits/common/configuration";
import { HttpHeader, HttpMethod, HttpClient } from "@paperbits/common/http";
import { HttpHeaders } from "@paperbits/common/http/httpHeaders";
import { IGithubClient } from "./IGithubClient";
import { IGithubFile } from "./IGithubFile";
import { IGithubCommit } from "./IGithubCommit";
import { IGithubReference } from "./IGithubReference";
import { IGithubGetTreeResponse } from "./IGithubGetTreeResponse";
import { IGithubCreateTreeResponse } from "./IGithubCreateTreeResponse";
import { IGithubTreeItem } from "./IGithubTreeItem";
import { IGithubCreateBlobReponse } from "./IGithubCreateBlobReponse";
import { IGithubBlob } from "./IGithubBlob";
import { IGithubGetBlobResponse } from "./IGithubGetBlobResponse";
import { IGithubObject } from "./IGithubObject";
import { GithubMode } from "./githubMode";
import { GithubTreeItemType } from "./githubTreeItemType";
export class GithubClient implements IGithubClient {
private baseUrl: string;
private baseRepositoriesUrl: string;
private repositoryOwner: string;
private authorizationToken: string;
private mandatoryHttpHeaders: HttpHeader[];
private changes: IGithubTreeItem[];
public repositoryName: string;
constructor(
private readonly settingsProvider: ISettingsProvider,
private readonly httpClient: HttpClient
) {
// initialization...
this.settingsProvider = settingsProvider;
this.httpClient = httpClient;
// rebinding...
this.getHeads = this.getHeads.bind(this);
this.ensureConfig = this.ensureConfig.bind(this);
this.changes = [];
}
private applyConfiguration(githubSettings: Object): Promise<any> {
this.authorizationToken = githubSettings["authorizationKey"];
this.repositoryName = githubSettings["repositoryName"];
this.repositoryOwner = githubSettings["repositoryOwner"];
this.baseUrl = `https://api.github.com/repos/${this.repositoryOwner}/${this.repositoryName}`;
this.baseRepositoriesUrl = `${this.baseUrl}/git`;
this.mandatoryHttpHeaders = [{ name: HttpHeaders.Authorization, value: "token " + this.authorizationToken }];
return Promise.resolve();
}
private async ensureConfig(): Promise<void> {
const settings = await this.settingsProvider.getSetting("github");
await this.applyConfiguration(settings);
}
public async getFileContent(path: string): Promise<IGithubFile> {
await this.ensureConfig();
const response = await this.httpClient.send<IGithubFile>({
url: `${this.baseUrl}/contents/${path}`,
headers: this.mandatoryHttpHeaders
});
return response.toObject();
}
/**
* Deletes a file in a single commit.
* Please see https://developer.github.com/v3/repos/contents/
*/
public async deleteFile(path: string, blobSha: string, commitMsg: string): Promise<void> {
await this.ensureConfig();
const requestBody = {
sha: blobSha,
message: commitMsg,
branch: "master"
};
await this.httpClient.send({
url: `${this.baseUrl}/contents/${path}`,
method: HttpMethod.delete,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
}
/**
* Please see http://developer.github.com/v3/git/refs/
*/
public async getHeads(): Promise<IGithubReference[]> {
await this.ensureConfig();
const response = await this.httpClient.send<IGithubReference[]>({
url: `${this.baseRepositoriesUrl}/refs/heads`,
method: HttpMethod.get,
headers: this.mandatoryHttpHeaders
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/commits/
*/
public async getCommit(commitSha: string): Promise<IGithubCommit> {
await this.ensureConfig();
const response = await this.httpClient.send<IGithubCommit>({
url: `${this.baseRepositoriesUrl}/commits/${commitSha}`,
method: HttpMethod.get,
headers: this.mandatoryHttpHeaders
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/commits/
*/
public async createCommit(parentCommitSha: string, tree: string, message: string): Promise<IGithubCommit> {
await this.ensureConfig();
const requestBody = {
message: message,
tree: tree,
parents: parentCommitSha ? [parentCommitSha] : []
};
const response = await this.httpClient.send<IGithubCommit>({
url: `${this.baseRepositoriesUrl}/commits`,
method: HttpMethod.post,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/trees/
*/
public async getTree(treeSha: string): Promise<IGithubGetTreeResponse> {
await this.ensureConfig();
const response = await this.httpClient.send<IGithubGetTreeResponse>({
url: `${this.baseRepositoriesUrl}/trees/${treeSha}?recursive=1`,
method: HttpMethod.get,
headers: this.mandatoryHttpHeaders
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/trees/
*/
public async createTree(baseTreeSha: string, treeItems: IGithubTreeItem[]): Promise<IGithubCreateTreeResponse> {
await this.ensureConfig();
const tree = new Array<Object>();
treeItems.forEach(treeItem => {
if (treeItem.path.startsWith("/")) {
treeItem.path = treeItem.path.substr(1);
}
tree.push({
path: treeItem.path,
sha: treeItem.sha,
mode: GithubMode.file,
type: GithubTreeItemType.blob
});
});
const requestBody = {
base_tree: baseTreeSha,
tree: tree
};
const response = await this.httpClient.send<IGithubCreateTreeResponse>({
url: `${this.baseRepositoriesUrl}/trees`,
method: HttpMethod.post,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/refs/
*/
public async createReference(branch: string, commitSha: string): Promise<any> {
await this.ensureConfig();
const requestBody = {
ref: `refs/heads/${branch}`,
sha: commitSha
};
const response = await this.httpClient.send({
url: `${this.baseRepositoriesUrl}/refs`,
method: HttpMethod.post,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
return response.toObject();
}
/**
* Please see http://developer.github.com/v3/git/refs/
*/
public async deleteReference(branch: string): Promise<void> {
await this.ensureConfig();
await this.httpClient.send({
url: `${this.baseRepositoriesUrl}/refs/heads/${branch}`,
method: HttpMethod.delete,
headers: this.mandatoryHttpHeaders
});
}
/**
* Please see http://developer.github.com/v3/git/refs/
*/
public async updateReference(branch: string, commitSha: string): Promise<IGithubReference> {
await this.ensureConfig();
const requestBody = {
sha: commitSha,
force: true
};
const response = await this.httpClient.send<IGithubReference>({
url: `${this.baseRepositoriesUrl}/refs/heads/${branch}`,
method: HttpMethod.patch,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
return response.toObject();
}
public async push(message: string = null, branch: string = "master"): Promise<void> {
await this.pushTree(this.changes, message, branch);
this.changes = [];
}
public async pushTree(treeItems: IGithubTreeItem[], message: string = null, branch: string = "master"): Promise<IGithubReference> {
await this.ensureConfig();
console.log(`Pushing ${treeItems.length} files to branch ${branch}.`);
// get the head of the master branch
const heads = await this.getHeads();
const lastHead = heads.pop();
// get the last commit
const lastCommitReference = lastHead.object;
const lastCommit = await this.getCommit(lastCommitReference.sha);
// create tree object (also implicitly creates a blob based on content)
const createTreeResponse = await this.createTree(lastCommit.tree.sha, treeItems);
if (!message) {
message = moment().format("MM/DD/YYYY, hh:mm:ss");
}
// create new commit
const newCommit = await this.createCommit(lastCommit.sha, createTreeResponse.sha, message);
// update branch to point to new commit
const head = await this.updateReference(branch, newCommit.sha);
return head;
}
public async getBlob(blobSha: string): Promise<IGithubBlob> {
await this.ensureConfig();
const response = await this.httpClient.send<IGithubGetBlobResponse>({
url: `${this.baseRepositoriesUrl}/blobs/${blobSha}`,
method: HttpMethod.get,
headers: this.mandatoryHttpHeaders
});
const getBlobReponse = response.toObject();
const blob: IGithubBlob = {
content: atob(getBlobReponse.content),
path: ""
};
return blob;
}
public async createBlob(path: string, content: Uint8Array): Promise<IGithubCreateBlobReponse> {
await this.ensureConfig();
const base64 = Utils.arrayBufferToBase64(content);
const requestBody = {
content: base64,
encoding: "base64"
};
const httpResponse = await this.httpClient.send<IGithubCreateBlobReponse>({
url: `${this.baseRepositoriesUrl}/blobs`,
method: HttpMethod.post,
headers: this.mandatoryHttpHeaders,
body: JSON.stringify(requestBody)
});
const response = httpResponse.toObject();
const treeItem: IGithubTreeItem = {
path: path,
sha: response.sha
};
this.changes.push(treeItem);
return response;
}
public async getLatestCommitTree(): Promise<IGithubGetTreeResponse> {
await this.ensureConfig();
// get the head of the master branch
const heads = await this.getHeads();
const lastHead = heads.pop();
// get the last commit
const lastCommitReference: IGithubObject = lastHead.object;
const lastCommit = await this.getCommit(lastCommitReference.sha);
// get the last commit tree
const getTreeResponse = await this.getTree(lastCommit.tree.sha);
getTreeResponse.lastCommit = lastCommit;
return getTreeResponse;
}
public async getLatestCommit(): Promise<IGithubCommit> {
await this.ensureConfig();
// get the head of the master branch
const heads = await this.getHeads();
const lastHead = heads.pop();
const lastCommitReference: IGithubObject = lastHead.object;
// get the last commit
const commit = await this.getCommit(lastCommitReference.sha);
return commit;
}
}