forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset-translated-file.js
executable file
·106 lines (93 loc) · 3.13 KB
/
reset-translated-file.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]
//
// This is a convenience script for replacing the contents of translated
// files with the English content from their corresponding source file.
//
// Usage:
// script/i18n/reset-translated-file.js <filename>
//
// Examples:
//
// $ script/i18n/reset-translated-file.js translations/es-XL/content/actions/index.md
//
// [end-readme]
import { program } from 'commander'
import { execSync } from 'child_process'
import assert from 'assert'
import fs from 'fs'
import path from 'path'
import chalk from 'chalk'
program
.description('reset translated files')
.option(
'-m, --prefer-main',
'Reset file to the translated file, try using the file from `main` branch first, if not found (usually due to renaming), fall back to English source.'
)
.option('-rm, --remove', 'Remove the translated files altogether')
.option('-d, --dry-run', 'Just pretend to reset files')
.option('-r, --reason <reason>', 'A reason why the file is getting reset')
.parse(process.argv)
const dryRun = program.opts().dryRun
const reason = program.opts().reason
const reasonMessage = reason ? `Reason: ${reason}` : ''
const resetToEnglishSource = (translationFilePath) => {
assert(
translationFilePath.startsWith('translations/'),
'path argument must be in the format `translations/<lang>/path/to/file`'
)
if (program.opts().remove) {
if (!dryRun) {
const fullPath = path.join(process.cwd(), translationFilePath)
fs.unlinkSync(fullPath)
}
console.log('-> removed: %s %s', translationFilePath, reasonMessage)
return
}
if (!fs.existsSync(translationFilePath)) {
return
}
const relativePath = translationFilePath.split(path.sep).slice(2).join(path.sep)
const englishFile = path.join(process.cwd(), relativePath)
if (!dryRun && !fs.existsSync(englishFile)) {
fs.unlinkSync(translationFilePath)
return
}
if (!dryRun) {
// it is important to replace the file with English source instead of
// removing it, and relying on the fallback, because redired_from frontmatter
// won't work in fallbacks
const englishContent = fs.readFileSync(englishFile, 'utf8')
fs.writeFileSync(translationFilePath, englishContent)
}
console.log(
'-> reverted to English: %s %s',
path.relative(process.cwd(), translationFilePath),
reasonMessage
)
}
const [pathArg] = program.args
assert(pathArg, 'first arg must be a target filename')
// Is the arg a fully-qualified path?
const relativePath = fs.existsSync(pathArg) ? path.relative(process.cwd(), pathArg) : pathArg
if (program.opts().preferMain) {
try {
if (!dryRun) {
execSync(`git checkout main -- ${relativePath}`, { stdio: 'pipe' })
}
console.log('-> reverted to file from main branch: %s %s', relativePath, reasonMessage)
} catch (e) {
if (e.message.includes('pathspec')) {
console.warn(
chalk.red(
`cannot find ${relativePath} in main branch (likely because it was renamed); falling back to English source file.`
)
)
resetToEnglishSource(relativePath)
} else {
console.warn(e.message)
}
}
} else {
resetToEnglishSource(relativePath)
}