2021-09-14 06:43:57 -04:00
|
|
|
const Path = require('path')
|
2020-09-28 06:51:39 -04:00
|
|
|
const { promises: fs } = require('fs')
|
|
|
|
const { promisify } = require('util')
|
|
|
|
const oneSky = require('@brainly/onesky-utils')
|
|
|
|
const { withAuth } = require('./config')
|
|
|
|
|
|
|
|
const sleep = promisify(setTimeout)
|
|
|
|
|
|
|
|
async function uploadLocales() {
|
|
|
|
// Docs: https://github.com/onesky/api-documentation-platform/blob/master/resources/file.md#upload---upload-a-file
|
|
|
|
const blob = await oneSky.postFile(
|
|
|
|
withAuth({
|
|
|
|
fileName: 'en-US.json',
|
|
|
|
language: 'en-GB',
|
|
|
|
format: 'HIERARCHICAL_JSON',
|
2021-09-14 06:43:57 -04:00
|
|
|
content: await fs.readFile(
|
|
|
|
Path.join(__dirname, '/../../locales/en.json')
|
|
|
|
),
|
2021-04-27 03:52:58 -04:00
|
|
|
keepStrings: false, // deprecate locales that no longer exist in en.json
|
2020-09-28 06:51:39 -04:00
|
|
|
})
|
|
|
|
)
|
|
|
|
return JSON.parse(blob).data.import.id
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getImportTask(importId) {
|
|
|
|
// Docs: https://github.com/onesky/api-documentation-platform/blob/master/resources/import_task.md
|
|
|
|
const blob = await oneSky.getImportTask(withAuth({ importId }))
|
|
|
|
return JSON.parse(blob).data
|
|
|
|
}
|
|
|
|
|
|
|
|
async function pollUploadStatus(importId) {
|
|
|
|
let task
|
|
|
|
while ((task = await getImportTask(importId)).status === 'in-progress') {
|
|
|
|
console.log('onesky is processing the import ...')
|
|
|
|
await sleep(5000)
|
|
|
|
}
|
|
|
|
if (task.status === 'failed') {
|
|
|
|
console.error({ task })
|
|
|
|
throw new Error('upload failed')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
const importId = await uploadLocales()
|
|
|
|
await pollUploadStatus(importId)
|
|
|
|
}
|
|
|
|
|
|
|
|
main().catch(error => {
|
|
|
|
console.error({ error })
|
|
|
|
process.exit(1)
|
|
|
|
})
|