-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathgitapi.js
467 lines (299 loc) · 9.76 KB
/
gitapi.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
// change pushing state
let pendingPromise;
function changePushingState(to, pendingPromise) {
if (to === true) {
pendingPromise = pendingPromise ?? null;
window.addEventListener('beforeunload', beforeUnloadListener, {capture: true});
} else {
pendingPromise = null;
window.removeEventListener('beforeunload', beforeUnloadListener, {capture: true});
}
}
const beforeUnloadListener = (event) => {
event.preventDefault();
return event.returnValue = 'Are you sure you want to exit?';
};
let git = {
// get a blob
'getBlob': async (treeLoc, sha) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo] = treeLoc;
// get repository branch
let [repoName, branch] = repo.split(':');
if (branch) branch = '?ref='+ branch;
else branch = '';
query += '/repos/'+ user +'/'+ repoName +'/git/blobs/'+ sha + branch;
// get the query
const resp = await axios.get(query, gitToken);
return resp;
},
// get a file
'getFile': async (treeLoc, fileName) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo, contents] = treeLoc;
// get repository branch
let [repoName, branch] = repo.split(':');
if (branch) branch = '?ref='+ branch;
else branch = '';
query += '/repos/' + user + '/' + repoName +
'/contents/' + contents
+ '/' + fileName +
branch;
// get the query
const resp = await axios.get(query, gitToken);
return resp;
},
// get public file content
'getPublicFile': async (treeLoc, fileName) => {
// map tree location
let query = 'https://raw.githubusercontent.com';
const [user, repo, contents] = treeLoc;
// get repository branch
let [repoName, branch] = repo.split(':');
query += '/' + user + '/' + repoName +
'/' + branch +
'/' + contents + '/' + fileName;
// get the query
const resp = await axios.get(query, '', true);
return resp;
},
// get public file content as ReadableStream
'getPublicFileAsStream': async (treeLoc, fileName) => {
// map tree location
let query = 'https://raw.githubusercontent.com';
const [user, repo, contents] = treeLoc;
// get repository branch
let [repoName, branch] = repo.split(':');
query += '/' + user + '/' + repoName +
'/' + branch +
'/' + contents + '/' + fileName;
// get the query
const resp = await fetch(query);
// if received an error
if (String(resp.status).startsWith('4')) {
return {
errorCode: resp.status
};
}
// get data from response
const reader = resp.body.getReader();
let buffer = [];
async function readChunk() {
const chunk = await reader.read();
// if finished reading, return
if (chunk.done) return;
// add new chunk to buffer
buffer = new Uint8Array([...buffer, ...chunk.value]);
// read next chunk
return readChunk();
}
await readChunk();
return buffer;
},
// get public LFS file content as ReadableStream
'getPublicLFSFileAsStream': async (treeLoc, fileName) => {
// map tree location
let query = 'https://media.githubusercontent.com/media';
const [user, repo, contents] = treeLoc;
// get repository branch
let [repoName, branch] = repo.split(':');
query += '/' + user + '/' + repoName +
'/' + branch +
'/' + contents + '/' + fileName;
// get the query
const resp = await fetch(query);
// if received an error
if (String(resp.status).startsWith('4')) {
return {
errorCode: resp.status
};
}
const buffer = await resp.arrayBuffer();
return buffer;
},
// get items in tree
'getItems': async (treeLoc, page = 1) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo, contents] = treeLoc;
// if navigating in repository
if (repo != '') {
// get repository branch
let [repoName, branch] = repo.split(':');
if (branch) branch = '?ref='+ branch;
else branch = '';
query += '/repos/' + user + '/' + repoName +
'/contents' + contents +
branch;
} else { // else, show all repositories
query += '/user/repos?visibility=all&sort=updated&per_page=100&page=' + page;
}
// get the query
const resp = await axios.get(query, gitToken);
return resp;
},
// get a repository
'getRepo': async (treeLoc) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo] = treeLoc;
// get repository branch
const [repoName, branch] = repo.split(':');
query += '/repos/' + user + '/' + repoName;
// get the query
const resp = await axios.get(query, gitToken);
return resp;
},
// list branches for repository
'getBranches': async (treeLoc) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
query += '/repos/'+ user +'/'+ repoName +'/branches';
// get the query
const resp = await axios.get(query, gitToken);
return resp;
},
// push a file
'push': async (commit) => {
// map file location in tree
const [user, repo, contents] = commit.file.dir.split(',');
// get repository branch
let [repoName, branch] = repo.split(':');
const query = 'https://api.github.com/repos' +
'/' + user + '/' + repoName +
'/contents' + contents +
'/' + commit.file.name;
let commitData;
if (commit.file.sha) {
commitData = {
message: commit.message,
content: commit.file.content,
sha: commit.file.sha,
branch: branch
};
} else {
commitData = {
message: commit.message,
content: commit.file.content,
branch: branch
};
}
// change pushing state
changePushingState(true);
// put the query
const resp = await axios.put(query, gitToken, commitData);
// change pushing state
changePushingState(false);
return resp.content.sha;
},
// create a repository
'createRepo': async (repoName, private) => {
const query = 'https://api.github.com/user/repos';
const repoData = {
name: repoName,
private: private,
has_wiki: false,
auto_init: false
};
// create post request with query
const postRequest = axios.post(query, gitToken, repoData);
// change pushing state
changePushingState(true, postRequest);
// await the request
const resp = await postRequest;
// change pushing state
changePushingState(false);
return resp.full_name;
},
// create a branch
'createBranch': async (treeLoc, shaToBranchFrom, newBranchName) => {
// map tree location
let query = 'https://api.github.com';
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
query += '/repos/'+ user +'/'+ repoName +'/git/refs';
// create new branch
const branchData = {
ref: 'refs/heads/' + newBranchName,
sha: shaToBranchFrom
};
// change pushing state
changePushingState(true);
// post the query
const resp = await axios.post(query, branchData, gitToken);
// change pushing state
changePushingState(false);
return resp;
},
// fork a repository
'forkRepo': async (treeLoc) => {
// map tree location
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
const query = 'https://api.github.com/repos' +
'/' + user + '/' + repoName + '/forks';
// change pushing state
changePushingState(true);
// post the query
const resp = await axios.post(query, gitToken);
// change pushing state
changePushingState(false);
return resp.full_name;
},
// invite a user to a repository
'sendInviteToRepo': async (treeLoc, usernameToInvite) => {
// map tree location
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
const query = 'https://api.github.com/repos' +
'/' + user + '/' + repoName +
'/collaborators/' + usernameToInvite;
// change pushing state
changePushingState(true);
// put the query
const resp = await axios.put(query, gitToken);
// change pushing state
changePushingState(false);
return resp.node_id;
},
// accept an invitation to a repository
'acceptInviteToRepo': async (treeLoc) => {
// map tree location
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
let query = 'https://api.github.com/user' +
'/repository_invitations';
// get the query
const invites = await axios.get(query, gitToken);
// find repo invite
const repoInvite = invites.filter(invite =>
invite.repository.full_name ===
(user + '/' + repoName)
);
// if invite exists
if (repoInvite.length > 0) {
// accept invite
query += '/' + repoInvite[0].id;
// patch the query
const resp = await axios.patch(query, gitToken);
return true;
} else {
return false;
}
},
// delete a repository
'deleteRepo': async (treeLoc) => {
// map tree location
const [user, repo] = treeLoc;
const [repoName] = repo.split(':');
const query = 'https://api.github.com/repos' +
'/' + user + '/' + repoName;
// dispatch request with query
await axios.delete(query, gitToken);
return;
}
};