From 18b1fd1cdb909a4633b17f5badc05a314ea8c08f Mon Sep 17 00:00:00 2001 From: cihatata Date: Tue, 11 Mar 2025 00:12:45 +0300 Subject: [PATCH] fix: use require --- .github/scripts/download-translations.js | 89 +++++++++++++++++++++++ .github/workflows/poeditor-sync.yml | 91 ++++++++++++++++++++++++ 2 files changed, 180 insertions(+) create mode 100644 .github/scripts/download-translations.js create mode 100644 .github/workflows/poeditor-sync.yml diff --git a/.github/scripts/download-translations.js b/.github/scripts/download-translations.js new file mode 100644 index 000000000..8a1b5383d --- /dev/null +++ b/.github/scripts/download-translations.js @@ -0,0 +1,89 @@ +const axios = require('axios'); +const fs = require('fs-extra'); +const path = require('path'); +const { URLSearchParams } = require('url'); + +// POEditor API information +const API_TOKEN = process.env.POEDITOR_API; +const PROJECT_ID = process.env.POEDITOR_PROJECT_ID; +const LANGUAGES = (process.env.LANGUAGES || 'tr,en').split(','); +const EXPORT_FORMAT = process.env.EXPORT_FORMAT || 'key_value_json'; + +// POEditor API endpoint +const API_URL = 'https://api.poeditor.com/v2'; + +// Function to download translations +async function downloadTranslations() { + try { + console.log('Downloading translations from POEditor...'); + console.log(`Using export format: ${EXPORT_FORMAT}`); + + for (const language of LANGUAGES) { + console.log(`Downloading translations for ${language} language...`); + + // Get export URL from POEditor + const exportResponse = await axios.post(`${API_URL}/projects/export`, + new URLSearchParams({ + api_token: API_TOKEN, + id: PROJECT_ID, + language: language, + type: EXPORT_FORMAT + }) + ); + + if (exportResponse.data.response.status !== 'success') { + throw new Error(`Failed to get export URL for ${language} language: ${JSON.stringify(exportResponse.data)}`); + } + + const fileUrl = exportResponse.data.result.url; + console.log(`Export URL obtained for ${language}`); + + // Download translation file + const downloadResponse = await axios.get(fileUrl, { responseType: 'json' }); + const translations = downloadResponse.data; + console.log(`Downloaded translations for ${language}`); + + // Check the format of data returned from POEditor and convert if necessary + let formattedTranslations = translations; + + // If data is in array format, convert it to key-value format + if (Array.isArray(translations)) { + console.log(`Converting array format to key-value format for ${language}`); + formattedTranslations = {}; + translations.forEach(item => { + if (item.term && item.definition) { + formattedTranslations[item.term] = item.definition; + } + }); + } + + // Save file + const outputPath = path.join(process.cwd(), 'temp', `${language}.json`); + await fs.writeJson(outputPath, formattedTranslations, { spaces: 2 }); + + console.log(`Translations for ${language} language successfully downloaded and saved: ${outputPath}`); + } + + console.log('All translations successfully downloaded!'); + } catch (error) { + console.error('An error occurred while downloading translations:', error); + process.exit(1); + } +} + +// Main function +async function main() { + try { + // Clean temp folder + await fs.emptyDir(path.join(process.cwd(), 'temp')); + + // Download translations + await downloadTranslations(); + } catch (error) { + console.error('An error occurred during the process:', error); + process.exit(1); + } +} + +// Run script +main(); \ No newline at end of file diff --git a/.github/workflows/poeditor-sync.yml b/.github/workflows/poeditor-sync.yml new file mode 100644 index 000000000..876ab811b --- /dev/null +++ b/.github/workflows/poeditor-sync.yml @@ -0,0 +1,91 @@ +name: POEditor Translation Synchronization + +on: + # For manual triggering + workflow_dispatch: + inputs: + languages: + description: "Languages to synchronize (comma separated, e.g.: tr,en,es)" + required: false + default: "tr,en" + format: + description: "Export format (key_value_json or json)" + required: false + default: "key_value_json" + + # For automatic execution at a specific time (every day at midnight) + schedule: + - cron: "0 0 * * *" + +jobs: + sync-translations: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "18" + + - name: Create package.json for scripts + run: | + mkdir -p .github/scripts + cat > .github/scripts/package.json << EOF + { + "name": "poeditor-scripts", + "version": "1.0.0", + "private": true, + "dependencies": { + "axios": "^1.6.0", + "fs-extra": "^11.1.1" + } + } + EOF + + - name: Install dependencies + run: | + cd .github/scripts + npm install + + - name: Download translations from POEditor + env: + POEDITOR_API_TOKEN: ${{ secrets.POEDITOR_API_TOKEN }} + POEDITOR_PROJECT_ID: ${{ secrets.POEDITOR_PROJECT_ID }} + LANGUAGES: ${{ github.event.inputs.languages || 'tr,en' }} + EXPORT_FORMAT: ${{ github.event.inputs.format || 'key_value_json' }} + run: | + mkdir -p temp + node .github/scripts/download-translations.js + + - name: Verify translation files + run: | + echo "Verifying translation files..." + for file in temp/*.json; do + echo "Checking $file" + if [ ! -s "$file" ]; then + echo "Error: $file is empty or does not exist" + exit 1 + fi + # Validate JSON format + cat "$file" | jq . > /dev/null || { echo "Error: $file is not valid JSON"; exit 1; } + done + echo "All translation files are valid" + + - name: Copy translations to project + run: | + mkdir -p src/locales + cp -r temp/* src/locales/ + echo "Translation files copied to src/locales/" + + - name: Commit changes + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git add src/locales/*.json + git diff --staged --quiet || git commit -m "Translations updated from POEditor" + git push