forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix-translation-errors.js
executable file
·106 lines (87 loc) · 3.39 KB
/
fix-translation-errors.js
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
#!/usr/bin/env node
// [start-readme]
//
// Run this script to fix known frontmatter errors by copying values from english file
// Currently only fixing errors in: 'type', 'changelog'
// Please double check the changes created by this script before committing.
//
// [end-readme]
import { fileURLToPath } from 'url'
import path from 'path'
import { execSync } from 'child_process'
import { get, set } from 'lodash-es'
import fs from 'fs'
import readFileAsync from '../lib/readfile-async.js'
import fm from '../lib/frontmatter.js'
import matter from 'gray-matter'
import chalk from 'chalk'
import yaml from 'js-yaml'
import ghesReleaseNotesSchema from '../tests/helpers/schemas/release-notes-schema.js'
import revalidator from 'revalidator'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
main()
async function main() {
const fixableFmProps = Object.keys(fm.schema.properties)
.filter((property) => !fm.schema.properties[property].translatable)
.sort()
const fixableYmlProps = ['date']
const loadAndValidateContent = async (path, schema) => {
let fileContents
try {
fileContents = await readFileAsync(path, 'utf8')
} catch (e) {
console.error(e.message)
return null
}
if (path.endsWith('yml')) {
let data
let errors = []
try {
data = yaml.load(fileContents)
} catch {}
if (data && schema) {
;({ errors } = revalidator.validate(data, schema))
}
return { data, errors, content: null }
} else {
return fm(fileContents)
}
}
const cmd =
'git -c diff.renameLimit=10000 diff --name-only origin/main | egrep "^translations/.*/(content/.+.md|data/release-notes/.*.yml)$"'
const changedFilesRelPaths = execSync(cmd).toString().split('\n')
for (const relPath of changedFilesRelPaths) {
// Skip READMEs
if (!relPath || relPath.endsWith('README.md')) continue
const localisedAbsPath = path.join(__dirname, '..', relPath)
// find the corresponding english file by removing the first 2 path segments: /translation/<language code>
const engAbsPath = path.join(__dirname, '..', relPath.split(path.sep).slice(2).join(path.sep))
const localisedResult = await loadAndValidateContent(localisedAbsPath, ghesReleaseNotesSchema)
if (!localisedResult) continue
const { data, errors, content } = localisedResult
const fixableProps = relPath.endsWith('yml') ? fixableYmlProps : fixableFmProps
const fixableErrors = errors.filter(({ property }) => {
const prop = property.split('.')
return fixableProps.includes(prop[0])
})
if (!data || fixableErrors.length === 0) continue
const engResult = await loadAndValidateContent(engAbsPath)
if (!engResult) continue
const { data: engData } = engResult
console.log(chalk.bold(relPath))
const newData = data
fixableErrors.forEach(({ property, message }) => {
const correctValue = get(engData, property)
console.log(chalk.red(` error message: [${property}] ${message}`))
console.log(` fix property [${property}]: ${get(data, property)} -> ${correctValue}`)
set(newData, property, correctValue)
})
let toWrite
if (content) {
toWrite = matter.stringify(content, newData, { lineWidth: 10000, forceQuotes: true })
} else {
toWrite = yaml.dump(newData, { lineWidth: 10000, forceQuotes: true })
}
fs.writeFileSync(localisedAbsPath, toWrite)
}
}