mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 08:02:28 +00:00
* feat(plugins): Orca plugin system — kernel, content packs, panels, workers, marketplace v0 (experimental) Adds Orca's experimental plugin system behind a settings flag: a supervised kernel, declarative content packs (VM recipes, commands and keybindings, language packs), sandboxed iframe panels, forked worker hosts, and a Git-backed marketplace v0 with consent, provenance and kill-list enforcement. Theme, icon-theme and terminal-theme contributions are deferred to a follow-up pass. * fix(plugins): make unsupported marketplace listings unreachable by key findPlugin() backs preview/install/previewInstalledUpdate via requireListing(), so filtering only listPlugins() hid the catalog card while leaving the dead install path reachable one click later. * fix(plugins): fan Pi session-only status out to plugin subscribers The providerSessionOnly early-return in applyNormalizedStatus emitted to onAgentStatus (main-window fanout) but skipped enrichedStatusListeners, so plugins subscribed to agent.status.changed silently missed every Pi session_start event. Route both emit sites through one helper so a future early return cannot drop the plugin tap again. Co-authored-by: Orca <help@stably.ai> * plugins: drop dead code and hoist duplicated trust-boundary patterns Cleanup pass over the P1 diff, no behavior change: - Delete `readPluginTreeSnapshot`/`readSnapshotFile` and their types, plus the now-vestigial `directories`/`signal` plumbing in `collectFiles`. - Delete `resolveContainedPluginDirectory` (no callers). - Delete `plugin-content-load-pool.ts`; it reimplemented the existing `mapWithConcurrency`, whose index arg also removes the pairing wrapper in `buildPluginList`. - Hoist `PLUGIN_CONTENT_HASH_PATTERN` and `PLUGIN_COMMIT_PATTERN` into the install-lockfile module; 11 sites hand-rolled these identically. - Point the new reliability gate at the PR instead of gitignored docs paths, matching every other gate's link form. * fix(plugins): retry plugin state renames on Windows AV/EPERM locks Six plugin write paths (lockfile, provenance, current pointer, kill list, marketplace cache, staged install dir) did a plain rename, so an antivirus or indexer holding the target open surfaced as a failed install. The repo already retries this hazard for issue #1507, but only through a sync helper; these paths are all async. Adds one bounded async retry + atomic write used by all six, and trims a consent-provenance header that restated its own JSX. * test(plugins): cover the Windows rename retry path The retry loop shipped untested: both existing cases hit the non-retry path, and the temp-cleanup test passed identically with the `finally` removed. Mock `rename` to queue errno codes so CI can exercise locks it cannot provoke. Co-authored-by: Orca <help@stably.ai> * fix(plugins): pin bundled plugin resources to LF Windows CI checks out with autocrlf, so the byte-hashed launch tree arrived as CRLF and verify-packaged-plugin-resources rejected it — the packaged build could never pass on Windows. Reproduced locally: CRLF yields the exact CI error, LF verifies clean. Files are already LF, so nothing renormalizes. Co-authored-by: Orca <help@stably.ai> * test: guard the bundled-plugin LF pin against a CRLF checkout The byte-hash mismatch only surfaced in Windows packaging CI. Assert the .gitattributes pin and that a CRLF tree is rejected, so a regression fails on any platform instead of waiting for a packaged Windows build. Co-authored-by: Orca <help@stably.ai> * ci: trigger packaged-build check on bundled plugin resource changes The launch tree is byte-hashed during packaging, but no trigger path covered it — so the CRLF fix for that check would not have re-run the check. Add the resources, verifier and .gitattributes paths that can break packaging. Co-authored-by: Orca <help@stably.ai> * perf(plugins): rebuild the panel frame only when its baked theme values change The revision keys the panel iframe, so every bump destroys the sandboxed frame and its in-panel state. It counted root attribute mutations, but --workspace-sidebar-live-width is written every rAF of a sidebar drag, so dragging with a panel open blanked it ~60x/sec. Compare the two values the shell actually bakes in instead. Co-authored-by: Orca <help@stably.ai> * test: stop pinning a plugin name in the CRLF guard The CRLF case rewrites every launch file, so the reported mismatch is whichever plugin sorts first. P2 adds theme plugins that sort ahead of orca-navigation-shortcuts, which broke the assertion there. Co-authored-by: Orca <help@stably.ai> * style: drop stray blank lines left by the rebase resolutions Both sides of the agent-hooks and orca-runtime conflicts contributed a trailing blank, which oxfmt rejects. Whitespace only. Co-authored-by: Orca <help@stably.ai> * test(plugins): stop the startup budget failing on machine load P95 runs 16-34ms idle but exceeds the 50ms bound under full-suite parallelism, so the gate flaked. Widen it to catch an order-of-magnitude regression instead; the no-worker/no-plugin-code assertions are the real guarantee. Verified a 400ms regression still fails. Co-authored-by: Orca <help@stably.ai> --------- Co-authored-by: Orca <help@stably.ai>
553 lines
17 KiB
JavaScript
553 lines
17 KiB
JavaScript
import fs from 'node:fs/promises'
|
|
import path from 'node:path'
|
|
import { pathToFileURL } from 'node:url'
|
|
import process from 'node:process'
|
|
|
|
// TypeScript 7 is a native CLI; AST consumers still need the legacy JavaScript API.
|
|
import ts from 'typescript-api'
|
|
|
|
const SOURCE_EXTENSIONS = new Set(['.ts', '.tsx', '.js', '.jsx', '.mts', '.cts'])
|
|
const SKIP_PATH_PARTS = new Set(['.git', 'dist', 'node_modules', 'out', '__snapshots__', 'assets'])
|
|
const LOCALIZATION_FUNCTION_NAMES = new Set(['t', 'translate', 'translateMain'])
|
|
const PLACEHOLDER_RE = /\{\{[^}]+\}\}/g
|
|
const LOCALES_RELATIVE_DIR = path.join('src', 'renderer', 'src', 'i18n', 'locales')
|
|
const SOURCE_RELATIVE_ROOTS = [path.join('src', 'renderer', 'src'), path.join('src', 'main')]
|
|
|
|
function normalizePath(root, filePath) {
|
|
return path.relative(root, filePath).split(path.sep).join('/')
|
|
}
|
|
|
|
function isSkippedFile(root, filePath) {
|
|
const relative = normalizePath(root, filePath)
|
|
if (
|
|
relative.endsWith('.d.ts') ||
|
|
relative.includes('.test.') ||
|
|
relative.includes('.spec.') ||
|
|
relative.includes('/__tests__/')
|
|
) {
|
|
return true
|
|
}
|
|
return relative.split('/').some((part) => SKIP_PATH_PARTS.has(part))
|
|
}
|
|
|
|
async function collectSourceFiles(root, dir) {
|
|
const entries = await fs.readdir(dir, { withFileTypes: true })
|
|
const files = []
|
|
|
|
for (const entry of entries) {
|
|
const fullPath = path.join(dir, entry.name)
|
|
if (entry.isDirectory()) {
|
|
if (!SKIP_PATH_PARTS.has(entry.name)) {
|
|
files.push(...(await collectSourceFiles(root, fullPath)))
|
|
}
|
|
continue
|
|
}
|
|
if (
|
|
entry.isFile() &&
|
|
SOURCE_EXTENSIONS.has(path.extname(entry.name)) &&
|
|
!isSkippedFile(root, fullPath)
|
|
) {
|
|
files.push(fullPath)
|
|
}
|
|
}
|
|
|
|
return files
|
|
}
|
|
|
|
function flattenCatalogKeys(value, prefix = '') {
|
|
if (typeof value !== 'object' || value === null || Array.isArray(value)) {
|
|
return prefix ? [prefix] : []
|
|
}
|
|
return Object.entries(value).flatMap(([key, child]) =>
|
|
flattenCatalogKeys(child, prefix ? `${prefix}.${key}` : key)
|
|
)
|
|
}
|
|
|
|
function expressionNameText(node) {
|
|
if (ts.isIdentifier(node)) {
|
|
return node.text
|
|
}
|
|
if (ts.isPropertyAccessExpression(node)) {
|
|
return `${expressionNameText(node.expression) ?? ''}.${node.name.text}`.replace(/^\./, '')
|
|
}
|
|
return undefined
|
|
}
|
|
|
|
function reportAt(root, filePath, sourceFile, node, key, fallback) {
|
|
const position = sourceFile.getLineAndCharacterOfPosition(node.getStart(sourceFile))
|
|
return {
|
|
filePath: normalizePath(root, filePath),
|
|
line: position.line + 1,
|
|
column: position.character + 1,
|
|
key,
|
|
fallback
|
|
}
|
|
}
|
|
|
|
export function collectLocalizationKeyReferences(filePath, sourceText, root = process.cwd()) {
|
|
const sourceKind =
|
|
filePath.endsWith('.tsx') || filePath.endsWith('.jsx') ? ts.ScriptKind.TSX : ts.ScriptKind.TS
|
|
const sourceFile = ts.createSourceFile(
|
|
filePath,
|
|
sourceText,
|
|
ts.ScriptTarget.Latest,
|
|
true,
|
|
sourceKind
|
|
)
|
|
const references = []
|
|
|
|
function visit(node) {
|
|
if (ts.isCallExpression(node)) {
|
|
const name = expressionNameText(node.expression)
|
|
const functionName = name?.split('.').at(-1)
|
|
const firstArg = node.arguments[0]
|
|
if (
|
|
functionName &&
|
|
LOCALIZATION_FUNCTION_NAMES.has(functionName) &&
|
|
firstArg &&
|
|
ts.isStringLiteralLike(firstArg)
|
|
) {
|
|
const secondArg = node.arguments[1]
|
|
references.push(
|
|
reportAt(
|
|
root,
|
|
filePath,
|
|
sourceFile,
|
|
firstArg,
|
|
firstArg.text,
|
|
secondArg && ts.isStringLiteralLike(secondArg) ? secondArg.text : undefined
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
ts.forEachChild(node, visit)
|
|
}
|
|
|
|
visit(sourceFile)
|
|
return references
|
|
}
|
|
|
|
function formatMissingReferences(missing) {
|
|
return missing
|
|
.map(
|
|
(reference) => `${reference.filePath}:${reference.line}:${reference.column} ${reference.key}`
|
|
)
|
|
.join('\n')
|
|
}
|
|
|
|
function formatMissingKeys(label, keys) {
|
|
return keys.map((key) => `${label}: ${key}`).join('\n')
|
|
}
|
|
|
|
function normalizeInterpolationVariables(value) {
|
|
return collectInterpolationVariables(value)
|
|
.map((variable) => variable.slice(2, -2))
|
|
.join('|')
|
|
}
|
|
|
|
function formatInconsistentFallbackVariables(inconsistentFallbackVariables) {
|
|
return inconsistentFallbackVariables
|
|
.map(({ key, references }) => {
|
|
const locations = references
|
|
.map(
|
|
(reference) =>
|
|
` ${reference.filePath}:${reference.line}:${reference.column} ${JSON.stringify(reference.fallback)}`
|
|
)
|
|
.join('\n')
|
|
return `${key}\n${locations}`
|
|
})
|
|
.join('\n\n')
|
|
}
|
|
|
|
function collectInconsistentFallbackVariables(references) {
|
|
const byKey = new Map()
|
|
|
|
for (const reference of references) {
|
|
if (typeof reference.fallback !== 'string') {
|
|
continue
|
|
}
|
|
const existing = byKey.get(reference.key) ?? []
|
|
existing.push(reference)
|
|
byKey.set(reference.key, existing)
|
|
}
|
|
|
|
return [...byKey.entries()]
|
|
.map(([key, keyReferences]) => {
|
|
const uniqueFallbackVariables = new Set(
|
|
keyReferences.map((reference) => normalizeInterpolationVariables(reference.fallback))
|
|
)
|
|
return {
|
|
key,
|
|
references: keyReferences,
|
|
uniqueFallbackVariableCount: uniqueFallbackVariables.size
|
|
}
|
|
})
|
|
.filter(({ uniqueFallbackVariableCount }) => uniqueFallbackVariableCount > 1)
|
|
}
|
|
|
|
function collectInterpolationVariables(value) {
|
|
if (typeof value === 'string') {
|
|
const matches = value.match(PLACEHOLDER_RE) ?? []
|
|
return [...matches].sort()
|
|
}
|
|
if (typeof value !== 'object' || value === null || Array.isArray(value)) {
|
|
return []
|
|
}
|
|
return Object.values(value).flatMap((child) => collectInterpolationVariables(child))
|
|
}
|
|
|
|
function flattenCatalogEntries(value, prefix = '', entries = new Map()) {
|
|
if (typeof value === 'string') {
|
|
entries.set(prefix, value)
|
|
return entries
|
|
}
|
|
if (typeof value !== 'object' || value === null || Array.isArray(value)) {
|
|
return entries
|
|
}
|
|
for (const [key, child] of Object.entries(value)) {
|
|
flattenCatalogEntries(child, prefix ? `${prefix}.${key}` : key, entries)
|
|
}
|
|
return entries
|
|
}
|
|
|
|
function getCatalogEntry(catalog, key) {
|
|
return key.split('.').reduce((cursor, part) => cursor?.[part], catalog)
|
|
}
|
|
|
|
function setCatalogEntry(catalog, key, value) {
|
|
const parts = key.split('.')
|
|
let cursor = catalog
|
|
for (const part of parts.slice(0, -1)) {
|
|
if (typeof cursor[part] !== 'object' || cursor[part] === null || Array.isArray(cursor[part])) {
|
|
cursor[part] = {}
|
|
}
|
|
cursor = cursor[part]
|
|
}
|
|
cursor[parts.at(-1)] = value
|
|
}
|
|
|
|
function deleteCatalogEntry(catalog, key) {
|
|
const parts = key.split('.')
|
|
const stack = []
|
|
let cursor = catalog
|
|
|
|
for (const part of parts.slice(0, -1)) {
|
|
if (
|
|
typeof cursor?.[part] !== 'object' ||
|
|
cursor[part] === null ||
|
|
Array.isArray(cursor[part])
|
|
) {
|
|
return false
|
|
}
|
|
stack.push([cursor, part])
|
|
cursor = cursor[part]
|
|
}
|
|
|
|
const leafKey = parts.at(-1)
|
|
if (!Object.hasOwn(cursor, leafKey)) {
|
|
return false
|
|
}
|
|
|
|
delete cursor[leafKey]
|
|
for (let index = stack.length - 1; index >= 0; index -= 1) {
|
|
const [parent, part] = stack[index]
|
|
const child = parent[part]
|
|
if (
|
|
typeof child === 'object' &&
|
|
child !== null &&
|
|
!Array.isArray(child) &&
|
|
Object.keys(child).length === 0
|
|
) {
|
|
delete parent[part]
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
function collectLocaleParityIssues(enCatalog, localeCatalog) {
|
|
const enEntries = flattenCatalogEntries(enCatalog)
|
|
const localeEntries = flattenCatalogEntries(localeCatalog)
|
|
const missingInLocale = [...enEntries.keys()].filter((key) => !localeEntries.has(key))
|
|
const extraInLocale = [...localeEntries.keys()].filter((key) => !enEntries.has(key))
|
|
const interpolationMismatches = []
|
|
|
|
for (const key of enEntries.keys()) {
|
|
if (!localeEntries.has(key)) {
|
|
continue
|
|
}
|
|
const enVariables = collectInterpolationVariables(enEntries.get(key))
|
|
const localeVariables = collectInterpolationVariables(localeEntries.get(key))
|
|
if (enVariables.join('|') !== localeVariables.join('|')) {
|
|
interpolationMismatches.push(key)
|
|
}
|
|
}
|
|
|
|
return { enEntries, localeEntries, missingInLocale, extraInLocale, interpolationMismatches }
|
|
}
|
|
|
|
function repairLocaleParity(enCatalog, localeCatalog) {
|
|
const { enEntries, missingInLocale, extraInLocale, interpolationMismatches } =
|
|
collectLocaleParityIssues(enCatalog, localeCatalog)
|
|
let changed = 0
|
|
|
|
for (const key of missingInLocale) {
|
|
setCatalogEntry(localeCatalog, key, enEntries.get(key))
|
|
changed += 1
|
|
}
|
|
|
|
for (const key of extraInLocale) {
|
|
if (deleteCatalogEntry(localeCatalog, key)) {
|
|
changed += 1
|
|
}
|
|
}
|
|
|
|
for (const key of interpolationMismatches) {
|
|
setCatalogEntry(localeCatalog, key, enEntries.get(key))
|
|
changed += 1
|
|
}
|
|
|
|
return changed
|
|
}
|
|
|
|
function referencesMissingFallbacks(missing) {
|
|
return missing.filter((reference) => typeof reference.fallback !== 'string')
|
|
}
|
|
|
|
function collectMissingCatalogEntries(missing) {
|
|
const entries = new Map()
|
|
|
|
for (const reference of missing) {
|
|
if (typeof reference.fallback !== 'string') {
|
|
continue
|
|
}
|
|
if (!entries.has(reference.key)) {
|
|
entries.set(reference.key, reference.fallback)
|
|
}
|
|
}
|
|
|
|
return entries
|
|
}
|
|
|
|
function applyMissingEnglishEntries(catalog, missing) {
|
|
const entries = collectMissingCatalogEntries(missing)
|
|
let changed = 0
|
|
|
|
for (const [key, fallback] of entries) {
|
|
if (getCatalogEntry(catalog, key) !== undefined) {
|
|
continue
|
|
}
|
|
setCatalogEntry(catalog, key, fallback)
|
|
changed += 1
|
|
}
|
|
|
|
return changed
|
|
}
|
|
|
|
function verifyLocaleParity(enCatalog, localeName, localeCatalog) {
|
|
const { localeEntries, missingInLocale, extraInLocale, interpolationMismatches } =
|
|
collectLocaleParityIssues(enCatalog, localeCatalog)
|
|
|
|
if (
|
|
missingInLocale.length > 0 ||
|
|
extraInLocale.length > 0 ||
|
|
interpolationMismatches.length > 0
|
|
) {
|
|
console.error(`Locale catalog parity failed for ${localeName}.json.`)
|
|
if (missingInLocale.length > 0) {
|
|
console.error('')
|
|
console.error(formatMissingKeys('missing', missingInLocale.slice(0, 20)))
|
|
if (missingInLocale.length > 20) {
|
|
console.error(`...and ${missingInLocale.length - 20} more missing keys`)
|
|
}
|
|
}
|
|
if (extraInLocale.length > 0) {
|
|
console.error('')
|
|
console.error(formatMissingKeys('extra', extraInLocale.slice(0, 20)))
|
|
if (extraInLocale.length > 20) {
|
|
console.error(`...and ${extraInLocale.length - 20} more extra keys`)
|
|
}
|
|
}
|
|
if (interpolationMismatches.length > 0) {
|
|
console.error('')
|
|
console.error(
|
|
formatMissingKeys('interpolation mismatch', interpolationMismatches.slice(0, 20))
|
|
)
|
|
if (interpolationMismatches.length > 20) {
|
|
console.error(`...and ${interpolationMismatches.length - 20} more interpolation mismatches`)
|
|
}
|
|
}
|
|
return 1
|
|
}
|
|
|
|
console.log(`Verified locale parity for ${localeName}.json (${localeEntries.size} keys).`)
|
|
return 0
|
|
}
|
|
|
|
function parseArgs(argv) {
|
|
const pluginCatalogs = []
|
|
for (let index = 0; index < argv.length; index += 1) {
|
|
const argument = argv[index]
|
|
if (argument === '--plugin-catalog') {
|
|
const catalogPath = argv[index + 1]
|
|
if (!catalogPath || catalogPath.startsWith('--')) {
|
|
throw new Error('--plugin-catalog requires a JSON catalog path')
|
|
}
|
|
pluginCatalogs.push(catalogPath)
|
|
index += 1
|
|
} else if (argument.startsWith('--plugin-catalog=')) {
|
|
pluginCatalogs.push(argument.slice('--plugin-catalog='.length))
|
|
}
|
|
}
|
|
return {
|
|
fix: argv.includes('--fix'),
|
|
pluginCatalogs
|
|
}
|
|
}
|
|
|
|
async function reportPluginCatalog(root, catalog, pluginCatalogPath) {
|
|
const resolvedPath = path.resolve(root, pluginCatalogPath)
|
|
let pluginCatalog
|
|
try {
|
|
pluginCatalog = JSON.parse(await fs.readFile(resolvedPath, 'utf8'))
|
|
} catch (error) {
|
|
console.error(
|
|
`Could not read plugin catalog ${normalizePath(root, resolvedPath)}: ${error instanceof Error ? error.message : String(error)}`
|
|
)
|
|
return 1
|
|
}
|
|
const { enEntries, localeEntries, missingInLocale, extraInLocale, interpolationMismatches } =
|
|
collectLocaleParityIssues(catalog, pluginCatalog)
|
|
const translated = enEntries.size - missingInLocale.length - interpolationMismatches.length
|
|
const coverage = enEntries.size === 0 ? 100 : (translated / enEntries.size) * 100
|
|
console.log(
|
|
`Plugin catalog ${normalizePath(root, resolvedPath)}: ${translated}/${enEntries.size} core keys (${coverage.toFixed(1)}% coverage), ${localeEntries.size} catalog entries.`
|
|
)
|
|
if (missingInLocale.length > 0) {
|
|
console.log(formatMissingKeys('missing', missingInLocale.slice(0, 20)))
|
|
if (missingInLocale.length > 20) {
|
|
console.log(`...and ${missingInLocale.length - 20} more missing keys`)
|
|
}
|
|
}
|
|
if (extraInLocale.length > 0) {
|
|
console.log(formatMissingKeys('extra', extraInLocale.slice(0, 20)))
|
|
}
|
|
if (interpolationMismatches.length > 0) {
|
|
console.log(formatMissingKeys('interpolation mismatch', interpolationMismatches.slice(0, 20)))
|
|
}
|
|
// Why: absent plugin translations safely fall back to English, but a present
|
|
// value with different variables can render broken or misleading UI.
|
|
return interpolationMismatches.length > 0 ? 1 : 0
|
|
}
|
|
|
|
export async function main(root = process.cwd(), options = parseArgs(process.argv.slice(2))) {
|
|
const localesDir = path.join(root, LOCALES_RELATIVE_DIR)
|
|
const catalogPath = path.join(localesDir, 'en.json')
|
|
const catalog = JSON.parse(await fs.readFile(catalogPath, 'utf8'))
|
|
const pluginCatalogs = options.pluginCatalogs ?? []
|
|
if (pluginCatalogs.length > 0) {
|
|
if (options.fix) {
|
|
console.error('--fix cannot be combined with --plugin-catalog')
|
|
return 1
|
|
}
|
|
for (const pluginCatalogPath of pluginCatalogs) {
|
|
const result = await reportPluginCatalog(root, catalog, pluginCatalogPath)
|
|
if (result !== 0) {
|
|
return result
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
let catalogKeys = new Set(flattenCatalogKeys(catalog))
|
|
const sourceRoots = SOURCE_RELATIVE_ROOTS.map((sourceRoot) => path.join(root, sourceRoot))
|
|
const references = []
|
|
|
|
for (const sourceRoot of sourceRoots) {
|
|
const files = await collectSourceFiles(root, sourceRoot)
|
|
for (const filePath of files) {
|
|
references.push(
|
|
...collectLocalizationKeyReferences(filePath, await fs.readFile(filePath, 'utf8'), root)
|
|
)
|
|
}
|
|
}
|
|
|
|
const missing = references.filter((reference) => !catalogKeys.has(reference.key))
|
|
if (missing.length > 0) {
|
|
const missingFallbacks = referencesMissingFallbacks(missing)
|
|
if (options.fix && missingFallbacks.length === 0) {
|
|
const added = applyMissingEnglishEntries(catalog, missing)
|
|
await fs.writeFile(catalogPath, `${JSON.stringify(catalog, null, 2)}\n`, 'utf8')
|
|
catalogKeys = new Set(flattenCatalogKeys(catalog))
|
|
console.log(`Added ${added} missing localization key(s) to en.json.`)
|
|
} else {
|
|
if (options.fix && missingFallbacks.length > 0) {
|
|
console.error('Some missing localization keys do not have string fallbacks to bootstrap.')
|
|
console.error('')
|
|
console.error(formatMissingReferences(missingFallbacks))
|
|
return 1
|
|
}
|
|
console.error('Localization keys are missing from src/renderer/src/i18n/locales/en.json.')
|
|
console.error('')
|
|
console.error(formatMissingReferences(missing))
|
|
console.error('')
|
|
console.error('Run `pnpm run sync:localization-catalog` to add keys with string fallbacks.')
|
|
return 1
|
|
}
|
|
}
|
|
|
|
const remainingMissing = references.filter((reference) => !catalogKeys.has(reference.key))
|
|
if (remainingMissing.length > 0) {
|
|
console.error('Localization keys are missing from src/renderer/src/i18n/locales/en.json.')
|
|
console.error('')
|
|
console.error(formatMissingReferences(remainingMissing))
|
|
return 1
|
|
}
|
|
|
|
const inconsistentFallbackVariables = collectInconsistentFallbackVariables(references)
|
|
if (inconsistentFallbackVariables.length > 0) {
|
|
console.error('Localization keys are used with inconsistent interpolation placeholders.')
|
|
console.error('')
|
|
console.error(formatInconsistentFallbackVariables(inconsistentFallbackVariables))
|
|
return 1
|
|
}
|
|
|
|
console.log(`Verified ${references.length} localization key references against en.json.`)
|
|
|
|
const localeFiles = (await fs.readdir(localesDir))
|
|
.filter(
|
|
(fileName) =>
|
|
fileName.endsWith('.json') &&
|
|
fileName !== 'en.json' &&
|
|
!fileName.startsWith('.') &&
|
|
!fileName.includes('-catalog-cache')
|
|
)
|
|
.sort()
|
|
|
|
for (const fileName of localeFiles) {
|
|
const localeName = fileName.replace(/\.json$/, '')
|
|
const localeCatalogPath = path.join(localesDir, fileName)
|
|
const localeCatalog = JSON.parse(await fs.readFile(localeCatalogPath, 'utf8'))
|
|
if (options.fix) {
|
|
const repaired = repairLocaleParity(catalog, localeCatalog)
|
|
if (repaired > 0) {
|
|
await fs.writeFile(localeCatalogPath, `${JSON.stringify(localeCatalog, null, 2)}\n`, 'utf8')
|
|
console.log(`Repaired ${fileName} parity (${repaired} key update(s)).`)
|
|
}
|
|
}
|
|
const exitCode = verifyLocaleParity(catalog, localeName, localeCatalog)
|
|
if (exitCode !== 0) {
|
|
if (!options.fix) {
|
|
console.error('')
|
|
console.error('Run `pnpm run sync:localization-catalog` to repair locale parity.')
|
|
}
|
|
return exitCode
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
process.exit(await main())
|
|
}
|