-
Notifications
You must be signed in to change notification settings - Fork 596
/
Copy pathcrowdinApi.ts
465 lines (356 loc) · 14 KB
/
crowdinApi.ts
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
import crowdin, { Credentials, SourceFilesModel, ClientConfig } from '@crowdin/crowdin-api-client';
import * as path from 'path';
import axios from 'axios';
import * as AdmZip from "adm-zip";
let client: crowdin;
const KINDSCRIPT_PROJECT_ID = 157956;
let projectId = KINDSCRIPT_PROJECT_ID;
let fetchedFiles: SourceFilesModel.File[];
let fetchedDirectories: SourceFilesModel.Directory[];
export function setProjectId(id: number) {
projectId = id;
fetchedFiles = undefined;
fetchedDirectories = undefined;
}
export async function uploadFileAsync(fileName: string, fileContent: string): Promise<void> {
if (pxt.crowdin.testMode) return;
const files = await getAllFiles();
// If file already exists, update it
for (const file of files) {
if (normalizePath(file.path) === normalizePath(fileName)) {
await updateFile(file.id, path.basename(fileName), fileContent);
return;
}
}
// Ensure directory exists
const parentDir = path.dirname(fileName);
let parentDirId: number;
if (parentDir && parentDir !== ".") {
parentDirId = (await mkdirAsync(parentDir)).id;
}
// Create new file
await createFile(path.basename(fileName), fileContent, parentDirId);
}
export async function getProjectInfoAsync() {
const { projectsGroupsApi } = getClient();
const project = await projectsGroupsApi.getProject(projectId);
return project.data;
}
export async function getProjectProgressAsync(languages?: string[]) {
const { translationStatusApi } = getClient();
const stats = await translationStatusApi
.withFetchAll()
.getProjectProgress(projectId);
let results = stats.data.map(stat => stat.data);
if (languages) {
results = results.filter(stat => languages.indexOf(stat.language.locale) !== -1 || languages.indexOf(stat.language.twoLettersCode) !== -1);
}
return results;
}
export async function getDirectoryProgressAsync(directory: string, languages?: string[]) {
const { translationStatusApi } = getClient();
const directoryId = await getDirectoryIdAsync(directory);
const stats = await translationStatusApi
.withFetchAll()
.getDirectoryProgress(projectId, directoryId);
let results = stats.data.map(stat => stat.data);
if (languages) {
results = results.filter(stat => languages.indexOf(stat.language.locale) !== -1 || languages.indexOf(stat.language.twoLettersCode) !== -1);
}
return results;
}
export async function getFileProgressAsync(file: string, languages?: string[]) {
const { translationStatusApi } = getClient();
const fileId = await getFileIdAsync(file);
const stats = await translationStatusApi
.withFetchAll()
.getFileProgress(projectId, fileId);
let results = stats.data.map(stat => stat.data);
if (languages) {
results = results.filter(stat => languages.indexOf(stat.language.locale) !== -1 || languages.indexOf(stat.language.twoLettersCode) !== -1);
}
return results;
}
export async function listFilesAsync(directory?: string): Promise<string[]> {
const files = (await getAllFiles()).map(file => normalizePath(file.path));
if (directory) {
directory = normalizePath(directory);
return files.filter(file => file.startsWith(directory));
}
return files;
}
export async function downloadTranslationsAsync(directory?: string) {
const { translationsApi } = getClient();
let buildId: number;
let status: string;
const options = {
skipUntranslatedFiles: true,
exportApprovedOnly: true
};
if (directory) {
pxt.log(`Building translations for directory ${directory}`);
const directoryId = await getDirectoryIdAsync(directory);
const buildResp = await translationsApi.buildProjectDirectoryTranslation(projectId, directoryId, options);
buildId = buildResp.data.id;
status = buildResp.data.status;
}
else {
pxt.log(`Building all translations`)
const buildResp = await translationsApi.buildProject(projectId, options);
buildId = buildResp.data.id;
status = buildResp.data.status;
}
// Translation builds take a long time, so poll for progress
while (status !== "finished") {
const progress = await translationsApi.checkBuildStatus(projectId, buildId);
status = progress.data.status;
pxt.log(`Translation build progress: ${progress.data.progress}%`)
if (status !== "finished") {
await pxt.Util.delay(5000);
}
}
pxt.log("Fetching translation build");
const downloadReq = await translationsApi.downloadTranslations(projectId, buildId);
// The downloaded file is a zip of all files broken out in a directory for each language
// e.g. /en/docs/tutorial.md, /fr/docs/tutorial.md, etc.
pxt.log("Downloading translation zip");
const zipFile = await axios.get(downloadReq.data.url, { responseType: 'arraybuffer' });
const zip = new AdmZip(Buffer.from(zipFile.data));
const entries = zip.getEntries();
const filesystem: pxt.Map<string> = {};
for (const entry of entries) {
if (entry.isDirectory) continue;
filesystem[entry.entryName] = zip.readAsText(entry);
}
pxt.log("Translation download complete");
return filesystem;
}
export async function downloadFileTranslationsAsync(fileName: string): Promise<pxt.Map<string>> {
const { translationsApi } = getClient();
const fileId = await getFileIdAsync(fileName);
const projectInfo = await getProjectInfoAsync();
let todo = projectInfo.targetLanguageIds.filter(id => id !== "en");
if (pxt.appTarget && pxt.appTarget.appTheme && pxt.appTarget.appTheme.availableLocales) {
todo = todo.filter(l => pxt.appTarget.appTheme.availableLocales.indexOf(l) > -1);
}
const options = {
skipUntranslatedFiles: true,
exportApprovedOnly: true
};
const results: pxt.Map<string> = {};
// There's no API to get all translations for a file, so we have to build each one individually
for (const language of todo) {
pxt.debug(`Building ${language} translation for '${fileName}'`);
try {
const buildResp = await translationsApi.buildProjectFileTranslation(projectId, fileId, {
targetLanguageId: language,
...options
});
if (!buildResp.data) {
pxt.debug(`No translation available for ${language}`);
continue;
}
const textResp = await axios.get(buildResp.data.url, { responseType: "text" });
results[language] = textResp.data;
}
catch (e) {
console.log(`Error building ${language} translation for '${fileName}'`, e);
continue;
}
}
return results;
}
async function getFileIdAsync(fileName: string): Promise<number> {
for (const file of await getAllFiles()) {
if (normalizePath(file.path) === normalizePath(fileName)) {
return file.id;
}
}
throw new Error(`File '${fileName}' not found in crowdin project`);
}
async function getDirectoryIdAsync(dirName: string): Promise<number> {
for (const dir of await getAllDirectories()) {
if (normalizePath(dir.path) === normalizePath(dirName)) {
return dir.id;
}
}
throw new Error(`Directory '${dirName}' not found in crowdin project`);
}
async function mkdirAsync(dirName: string): Promise<SourceFilesModel.Directory> {
const dirs = await getAllDirectories();
for (const dir of dirs) {
if (normalizePath(dir.path) === normalizePath(dirName)) {
return dir;
}
}
let parentDirId: number;
const parentDir = path.dirname(dirName);
if (parentDir && parentDir !== ".") {
parentDirId = (await mkdirAsync(parentDir)).id;
}
return await createDirectory(path.basename(dirName), parentDirId);
}
async function getAllDirectories() {
// This request takes a decent amount of time, so cache the results
if (!fetchedDirectories) {
const { sourceFilesApi } = getClient();
pxt.debug(`Fetching directories`)
const dirsResponse = await sourceFilesApi
.withFetchAll()
.listProjectDirectories(projectId, {});
let dirs = dirsResponse.data.map(fileResponse => fileResponse.data);
if (!dirs.length) {
throw new Error("No directories found!");
}
pxt.debug(`Directory count: ${dirs.length}`);
fetchedDirectories = dirs;
}
return fetchedDirectories;
}
async function getAllFiles() {
// This request takes a decent amount of time, so cache the results
if (!fetchedFiles) {
const { sourceFilesApi } = getClient();
pxt.debug(`Fetching files`)
const filesResponse = await sourceFilesApi
.withFetchAll()
.listProjectFiles(projectId, {});
let files = filesResponse.data.map(fileResponse => fileResponse.data);
if (!files.length) {
throw new Error("No files found!");
}
pxt.debug(`File count: ${files.length}`);
fetchedFiles = files;
}
return fetchedFiles;
}
async function createFile(fileName: string, fileContent: any, directoryId?: number): Promise<void> {
if (pxt.crowdin.testMode) return;
const { uploadStorageApi, sourceFilesApi } = getClient();
// This request happens in two parts: first we upload the file to the storage API,
// then we actually create the file
const storageResponse = await uploadStorageApi.addStorage(fileName, fileContent);
const file = await sourceFilesApi.createFile(projectId, {
storageId: storageResponse.data.id,
name: fileName,
directoryId
});
// Make sure to add the file to the cache if it exists
if (fetchedFiles) {
fetchedFiles.push(file.data);
}
}
async function createDirectory(dirName: string, directoryId?: number): Promise<SourceFilesModel.Directory> {
if (pxt.crowdin.testMode) return undefined;
const { sourceFilesApi } = getClient();
const dir = await sourceFilesApi.createDirectory(projectId, {
name: dirName,
directoryId
});
// Make sure to add the directory to the cache if it exists
if (fetchedDirectories) {
fetchedDirectories.push(dir.data);
}
return dir.data;
}
export async function restoreFileBefore(filename: string, cutoffTime: number) {
const revisions = await listFileRevisions(filename);
let lastRevision: SourceFilesModel.FileRevision;
let lastRevisionBeforeCutoff: SourceFilesModel.FileRevision;
for (const rev of revisions) {
const time = new Date(rev.date).getTime();
if (lastRevision) {
if (time > new Date(lastRevision.date).getTime()) {
lastRevision = rev;
}
}
else {
lastRevision = rev;
}
if (time < cutoffTime) {
if (lastRevisionBeforeCutoff) {
if (time > new Date(lastRevisionBeforeCutoff.date).getTime()) {
lastRevisionBeforeCutoff = rev;
}
}
else {
lastRevisionBeforeCutoff = rev;
}
}
}
if (lastRevision === lastRevisionBeforeCutoff) {
pxt.log(`${filename} already at most recent valid revision before ${formatTime(cutoffTime)}`);
}
else if (lastRevisionBeforeCutoff) {
pxt.log(`Restoring ${filename} to revision ${formatTime(new Date(lastRevisionBeforeCutoff.date).getTime())}`)
await restorefile(lastRevisionBeforeCutoff.fileId, lastRevisionBeforeCutoff.id);
}
else {
pxt.log(`No revisions found for ${filename} before ${formatTime(cutoffTime)}`);
}
}
function formatTime(time: number) {
const date = new Date(time);
return `${date.toLocaleDateString()} ${date.toLocaleTimeString()}`;
}
async function listFileRevisions(filename: string): Promise<SourceFilesModel.FileRevision[]> {
const { sourceFilesApi } = getClient();
const fileId = await getFileIdAsync(filename);
const revisions = await sourceFilesApi
.withFetchAll()
.listFileRevisions(projectId, fileId);
return revisions.data.map(rev => rev.data);
}
async function updateFile(fileId: number, fileName: string, fileContent: any): Promise<void> {
if (pxt.crowdin.testMode) return;
const { uploadStorageApi, sourceFilesApi } = getClient();
const storageResponse = await uploadStorageApi.addStorage(fileName, fileContent);
await sourceFilesApi.updateOrRestoreFile(projectId, fileId, {
storageId: storageResponse.data.id,
updateOption: "keep_translations"
});
}
async function restorefile(fileId: number, revisionId: number) {
if (pxt.crowdin.testMode) return;
const { sourceFilesApi } = getClient();
await sourceFilesApi.updateOrRestoreFile(projectId, fileId, {
revisionId
});
}
function getClient() {
if (!client) {
const crowdinConfig: ClientConfig = {
retryConfig: {
retries: 5,
waitInterval: 5000,
conditions: [
{
test: (error: any) => {
// do not retry when result has not changed
return error?.code == 304;
}
}
]
}
};
client = new crowdin(crowdinCredentials(), crowdinConfig);
}
return client;
}
function crowdinCredentials(): Credentials {
const token = process.env[pxt.crowdin.KEY_VARIABLE];
if (!token) {
throw new Error(`Crowdin token not found in environment variable ${pxt.crowdin.KEY_VARIABLE}`);
}
if (pxt.appTarget?.appTheme?.crowdinProjectId !== undefined) {
setProjectId(pxt.appTarget.appTheme.crowdinProjectId);
}
return { token };
}
// calls path.normalize and removes leading slash
function normalizePath(p: string) {
p = path.normalize(p);
p = p.replace(/\\/g, "/");
if (/^[\/\\]/.test(p)) p = p.slice(1)
return p;
}