mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
0122710750
Merge in DNS/adguard-home from imp-i18n-script to master Squashed commit of the following: commit 2ea88dcfaf24722f2b7568802a54cbe4f8ebc084 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Dec 3 16:05:00 2021 +0300 scripts: imp i18n upload script
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
const request = require('request-promise');
|
|
const twoskyConfig = require('../../.twosky.json')[0];
|
|
|
|
const { project_id: TWOSKY_PROJECT_ID, base_locale: DEFAULT_LANGUAGE } = twoskyConfig;
|
|
const LOCALES_DIR = '../../client/src/__locales';
|
|
const BASE_FILE = 'en.json';
|
|
const TWOSKY_URI = process.env.TWOSKY_URI;
|
|
|
|
/**
|
|
* Prepare post params
|
|
*/
|
|
const getRequestData = (url, projectId) => {
|
|
const language = process.env.UPLOAD_LANGUAGE || DEFAULT_LANGUAGE;
|
|
const formData = {
|
|
format: 'json',
|
|
language: language,
|
|
filename: BASE_FILE,
|
|
project: projectId,
|
|
file: fs.createReadStream(path.resolve(LOCALES_DIR, `${language}.json`)),
|
|
};
|
|
|
|
console.log(`uploading ${language}`);
|
|
|
|
return {
|
|
url: `${url}/upload`,
|
|
formData
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Make request to twosky to upload new json
|
|
*/
|
|
const upload = () => {
|
|
if (!TWOSKY_URI) {
|
|
console.error('No credentials');
|
|
return;
|
|
}
|
|
|
|
const { url, formData } = getRequestData(TWOSKY_URI, TWOSKY_PROJECT_ID);
|
|
request
|
|
.post({ url, formData })
|
|
.catch(err => console.log(err));
|
|
};
|
|
|
|
upload();
|