arduino-ide/scripts/i18n/transifex-push.js
Akos Kitta 9a6a457bc4
chore(deps): Updated to Theia 1.39.0 (#2144)
- update Theia to `1.39.0`,
 - remove the application packager and fix the security vulnerabilities,
 - bundle the backed application with `webpack`, and
 - enhance the developer docs.

Co-authored-by: Akos Kitta <a.kitta@arduino.cc>
Co-authored-by: per1234 <accounts@perglass.com>

Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
2023-08-14 12:12:05 +02:00

95 lines
3.1 KiB
JavaScript

// @ts-check
const transifex = require('./transifex');
const { default: fetch } = require('node-fetch');
const fs = require('fs');
const util = require('util');
const uploadSourceFile = async (organization, project, resource, filePath) => {
const url = transifex.url('resource_strings_async_uploads');
const data = {
data: {
attributes: {
callback_url: null,
content: fs.readFileSync(filePath).toString('base64'),
content_encoding: 'base64'
},
relationships: {
resource: {
data: {
id: util.format('o:%s:p:%s:r:%s', organization, project, resource),
type: 'resources'
}
}
},
type: 'resource_strings_async_uploads'
}
};
const headers = transifex.authHeader();
headers['Content-Type'] = 'application/vnd.api+json';
const json = await fetch(url, { method: 'POST', headers, body: JSON.stringify(data) })
.catch(err => {
console.error(err)
process.exit(1);
})
.then(res => res.json());
return json['data']['id'];
};
const getSourceUploadStatus = async (uploadId) => {
const url = transifex.url(util.format('resource_strings_async_uploads/%s', uploadId));
// The download request status must be asked from time to time, if it's
// still pending we try again using exponentional backoff starting from 2.5 seconds.
let backoffMs = 2500;
const headers = transifex.authHeader();
while (true) {
const json = await fetch(url, { headers })
.catch(err => {
console.error(err)
process.exit(1);
})
.then(res => res.json());
const status = json['data']['attributes']['status'];
if (status === 'succeeded') {
return
} else if (status === 'pending' || status === 'processing') {
await new Promise(r => setTimeout(r, backoffMs));
backoffMs = backoffMs * 2;
// Retry the upload request status again
continue
} else if (status === 'failed') {
const errors = [];
json['data']['attributes']['errors'].forEach(err => {
errors.push(util.format('%s: %s', err.code, err.details));
});
throw util.format('Download request failed: %s', errors.join(', '));
}
throw 'Download request failed in an unforeseen way';
}
}
(async () => {
const { organization, project, resource } = await transifex.credentials();
const sourceFile = process.argv[2];
if (!sourceFile) {
console.error('Translation source file not specified')
process.exit(1);
}
const uploadId = await uploadSourceFile(organization, project, resource, sourceFile)
.catch(err => {
console.error(err)
process.exit(1);
});
await getSourceUploadStatus(uploadId)
.catch(err => {
console.error(err)
process.exit(1);
});
console.log("Translation source file uploaded");
})()