-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathindex.ts
More file actions
252 lines (207 loc) · 6.27 KB
/
Copy pathindex.ts
File metadata and controls
252 lines (207 loc) · 6.27 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
// eslint-disable-next-line import/no-unassigned-import
import 'typed-query-selector';
import {
getDirectoryContentViaContentsApi,
getDirectoryContentViaTreesApi,
type ListGithubDirectoryOptions,
type TreeResponseObject,
type ContentsReponseObject,
} from 'list-github-dir-content';
import pMap from 'p-map';
import {downloadFile} from './download.js';
import {getRepositoryInfo, getRepositoryPreview} from './repository-info.js';
type ApiOptions = ListGithubDirectoryOptions & {getFullData: true};
function isError(error: unknown): error is Error {
return error instanceof Error;
}
function saveFile(blob: Blob, filename: string) {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
a.click();
URL.revokeObjectURL(url);
}
async function listFiles(
repoListingConfig: ApiOptions,
): Promise<Array<TreeResponseObject | ContentsReponseObject>> {
const files = await getDirectoryContentViaTreesApi(repoListingConfig);
if (!files.truncated) {
return files;
}
updateStatus('Warning: It’s a large repo and this it take a long while just to download the list of files. You might want to use "git sparse checkout" instead.');
return getDirectoryContentViaContentsApi(repoListingConfig);
}
function updateStatus(status?: string, ...extra: unknown[]) {
const element = document.querySelector('.status')!;
if (status) {
const wrapper = document.createElement('div');
wrapper.textContent = status;
element.prepend(wrapper);
} else {
element.textContent = status ?? '';
}
console.log(status, ...extra);
}
async function getZip() {
// @ts-expect-error idk idc
// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/consistent-type-imports
const JSZip = await import('jszip') as typeof import('jszip');
return new JSZip();
}
const googleDoesntLikeThis = /malware|virus|trojan/i;
async function init() {
updateStatus();
const zipPromise = getZip();
const input = document.querySelector('input#token')!;
const token = localStorage.getItem('token');
if (token) {
input.value = token;
}
input.addEventListener('input', () => {
localStorage.setItem('token', input.value);
}, {passive: true});
const query = new URLSearchParams(location.search);
const url = query.get('url');
document.querySelector('input#url')!.value = url ?? '';
if (!url) {
return;
}
if (!navigator.onLine) {
updateStatus('⚠ You are offline.');
throw new Error('You are offline');
}
const repositoryPreview = getRepositoryPreview(url);
if ('error' in repositoryPreview) {
if (repositoryPreview.error === 'NOT_A_REPOSITORY') {
updateStatus('⚠ Not a repository');
} else if (repositoryPreview.error === 'NOT_A_DIRECTORY') {
updateStatus('⚠ Not a directory');
} else {
updateStatus('⚠ Unknown error');
}
return;
}
updateStatus(`Repo: ${repositoryPreview.user}/${repositoryPreview.repository}`);
const parsedPath = await getRepositoryInfo(repositoryPreview);
if ('error' in parsedPath) {
if (parsedPath.error === 'REPOSITORY_NOT_FOUND') {
updateStatus('⚠ Repository not found. If it’s private, you should enter a token that can access it.');
} else {
updateStatus('⚠ Unknown error');
}
return;
}
const {user, repository, gitReference, directory, isPrivate} = parsedPath;
updateStatus(`Directory: /${directory}`, {
source: {
user,
repository,
gitReference,
directory,
isPrivate,
},
});
if ('downloadUrl' in parsedPath) {
updateStatus('Downloading the entire repository directly from GitHub');
window.location.href = parsedPath.downloadUrl;
return;
}
updateStatus('Retrieving directory info');
let files = await listFiles({
user,
repository,
ref: gitReference,
directory,
token: localStorage.getItem('token') ?? undefined,
getFullData: true,
});
let foundBlockedFiles = false;
files = files.filter(file => {
if (googleDoesntLikeThis.test(file.path)) {
foundBlockedFiles = true;
updateStatus(`File blocked: ${file.path}`);
return false;
}
return true;
});
if (files.length === 0) {
if (foundBlockedFiles) {
updateStatus('⚠ Some files were blocked due to Google Safe Browsing.');
}
updateStatus('No files to download');
return;
}
updateStatus(`Will download ${files.length} files`);
const controller = new AbortController();
const signal = controller.signal;
let downloaded = 0;
try {
await pMap(files, async file => {
const blob = await downloadFile({
user,
repository,
reference: gitReference!,
file,
isPrivate,
signal,
});
downloaded++;
updateStatus(file.path);
const zip = await zipPromise;
zip.file(file.path.replace(directory + '/', ''), blob, {
binary: true,
});
}, {concurrency: 20});
} catch (error) {
controller.abort();
if (!navigator.onLine) {
updateStatus('⚠ Could not download all files, network connection lost.');
} else if (isError(error) && error.message.startsWith('HTTP ')) {
updateStatus('⚠ Could not download all files.');
} else {
updateStatus(
'⚠ Some files were blocked from downloading, try to disable any ad blockers and refresh the page.',
);
}
throw error;
}
updateStatus(`Zipping ${downloaded} files...`);
const zip = await zipPromise;
const zipBlob = await zip.generateAsync({
type: 'blob',
});
const filename
= query.get('filename')
?? `${user} ${repository} ${gitReference} ${directory}`.replace(/\//, '-');
const zipFilename = filename.endsWith('.zip') ? filename : `${filename}.zip`;
saveFile(zipBlob, zipFilename);
if (foundBlockedFiles) {
updateStatus('⚠ Some files were blocked due to Google Safe Browsing.');
}
updateStatus(`Downloaded ${downloaded} files! Done!`);
}
// eslint-disable-next-line unicorn/prefer-top-level-await -- Not allowed
void init().catch(error => {
if (error instanceof Error) {
switch (error.message) {
case 'Invalid token': {
updateStatus('⚠ The token provided is invalid or has been revoked.', {
token: localStorage.getItem('token'),
});
break;
}
case 'Rate limit exceeded': {
updateStatus(
'⚠ Your token rate limit has been exceeded. Please wait or add a token',
{token: localStorage.getItem('token')},
);
break;
}
default: {
updateStatus(`⚠ ${error.message}`, error);
break;
}
}
}
});