File size: 9,211 Bytes
b5ea024
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#!/usr/bin/env node
'use strict';

var fs = require('fs');
var path = require('path');
var color = require('cli-color');
var sade = require('sade');
var glob = require('tiny-glob');
var compiler = require('svelte/compiler');
var estreeWalker = require('estree-walker');

const isNumberString = (n) => !Number.isNaN(parseInt(n, 10));
function deepSet(obj, path, value) {
  const parts = path.replace(/\[(\w+)\]/gi, ".$1").split(".");
  return parts.reduce((ref, part, i) => {
    if (part in ref)
      return ref = ref[part];
    if (i < parts.length - 1) {
      if (isNumberString(parts[i + 1])) {
        return ref = ref[part] = [];
      }
      return ref = ref[part] = {};
    }
    return ref[part] = value;
  }, obj);
}

function getObjFromExpression(exprNode) {
  return exprNode.properties.reduce((acc, prop) => {
    if (prop.type === "SpreadElement")
      return acc;
    if (prop.value.type === "Literal" && prop.value.value !== Object(prop.value.value)) {
      const key = prop.key.name;
      acc[key] = prop.value.value;
    }
    return acc;
  }, {});
}

function delve(obj, fullKey) {
  if (fullKey == null)
    return void 0;
  if (fullKey in obj) {
    return obj[fullKey];
  }
  const keys = fullKey.split(".");
  let result = obj;
  for (let p = 0; p < keys.length; p++) {
    if (typeof result === "object") {
      if (p > 0) {
        const partialKey = keys.slice(p, keys.length).join(".");
        if (partialKey in result) {
          result = result[partialKey];
          break;
        }
      }
      result = result[keys[p]];
    } else {
      result = void 0;
    }
  }
  return result;
}

const LIB_NAME = "svelte-i18n";
const DEFINE_MESSAGES_METHOD_NAME = "defineMessages";
const FORMAT_METHOD_NAMES = /* @__PURE__ */ new Set(["format", "_", "t"]);
function isFormatCall(node, imports) {
  if (node.type !== "CallExpression")
    return false;
  let identifier;
  if (node.callee.type === "Identifier") {
    identifier = node.callee;
  }
  if (!identifier || identifier.type !== "Identifier") {
    return false;
  }
  const methodName = identifier.name.slice(1);
  return imports.has(methodName);
}
function isMessagesDefinitionCall(node, methodName) {
  if (node.type !== "CallExpression")
    return false;
  return node.callee && node.callee.type === "Identifier" && node.callee.name === methodName;
}
function getLibImportDeclarations(ast) {
  var _a, _b, _c, _d;
  const bodyElements = [
    ...(_b = (_a = ast.instance) == null ? void 0 : _a.content.body) != null ? _b : [],
    ...(_d = (_c = ast.module) == null ? void 0 : _c.content.body) != null ? _d : []
  ];
  return bodyElements.filter(
    (node) => node.type === "ImportDeclaration" && node.source.value === LIB_NAME
  );
}
function getDefineMessagesSpecifier(decl) {
  return decl.specifiers.find(
    (spec) => "imported" in spec && spec.imported.name === DEFINE_MESSAGES_METHOD_NAME
  );
}
function getFormatSpecifiers(decl) {
  return decl.specifiers.filter(
    (spec) => "imported" in spec && FORMAT_METHOD_NAMES.has(spec.imported.name)
  );
}
function collectFormatCalls(ast) {
  const importDecls = getLibImportDeclarations(ast);
  if (importDecls.length === 0)
    return [];
  const imports = new Set(
    importDecls.flatMap(
      (decl) => getFormatSpecifiers(decl).map((n) => n.local.name)
    )
  );
  if (imports.size === 0)
    return [];
  const calls = [];
  function enter(node) {
    if (isFormatCall(node, imports)) {
      calls.push(node);
      this.skip();
    }
  }
  estreeWalker.walk(ast.instance, { enter });
  estreeWalker.walk(ast.html, { enter });
  return calls;
}
function collectMessageDefinitions(ast) {
  const definitions = [];
  const defineImportDecl = getLibImportDeclarations(ast).find(
    getDefineMessagesSpecifier
  );
  if (defineImportDecl == null)
    return [];
  const defineMethodName = getDefineMessagesSpecifier(defineImportDecl).local.name;
  const nodeStepInstructions = {
    enter(node) {
      if (isMessagesDefinitionCall(node, defineMethodName) === false)
        return;
      const [arg] = node.arguments;
      if (arg.type === "ObjectExpression") {
        definitions.push(arg);
        this.skip();
      }
    }
  };
  estreeWalker.walk(ast.instance, nodeStepInstructions);
  estreeWalker.walk(ast.module, nodeStepInstructions);
  return definitions.flatMap(
    (definitionDict) => definitionDict.properties.map((propNode) => {
      if (propNode.type !== "Property") {
        throw new Error(
          `Found invalid '${propNode.type}' at L${propNode.loc.start.line}:${propNode.loc.start.column}`
        );
      }
      return propNode.value;
    })
  );
}
function collectMessages(markup) {
  const ast = compiler.parse(markup);
  const calls = collectFormatCalls(ast);
  const definitions = collectMessageDefinitions(ast);
  return [
    ...definitions.map((definition) => getObjFromExpression(definition)),
    ...calls.map((call) => {
      const [pathNode, options] = call.arguments;
      let messageObj;
      if (pathNode.type === "ObjectExpression") {
        messageObj = getObjFromExpression(pathNode);
      } else {
        const node = pathNode;
        const id = node.value;
        if (options && options.type === "ObjectExpression") {
          messageObj = getObjFromExpression(options);
          messageObj.id = id;
        } else {
          messageObj = { id };
        }
      }
      if ((messageObj == null ? void 0 : messageObj.id) == null)
        return null;
      return messageObj;
    })
  ].filter(Boolean);
}
function extractMessages(markup, {
  accumulator = {},
  shallow = false
} = {}) {
  collectMessages(markup).forEach((messageObj) => {
    let defaultValue = messageObj.default;
    if (typeof defaultValue === "undefined") {
      defaultValue = "";
    }
    if (shallow) {
      if (messageObj.id in accumulator)
        return;
      accumulator[messageObj.id] = defaultValue;
    } else {
      if (typeof delve(accumulator, messageObj.id) !== "undefined")
        return;
      deepSet(accumulator, messageObj.id, defaultValue);
    }
  });
  return accumulator;
}

const { readFile, writeFile, mkdir, access, stat } = fs.promises;
const fileExists = (path) => access(path).then(() => true).catch(() => false);
const isDirectory = (path) => stat(path).then((stats) => stats.isDirectory());
function isSvelteError(error, code) {
  return typeof error === "object" && error != null && "message" in error && "code" in error && (code == null || error.code === code);
}
const program = sade("svelte-i18n");
program.command("extract <glob> [output]").describe("extract all message definitions from files to a json").option(
  "-s, --shallow",
  "extract to a shallow dictionary (ids with dots interpreted as strings, not paths)",
  false
).option(
  "--overwrite",
  "overwrite the content of the output file instead of just appending new properties",
  false
).option(
  "-c, --config <dir>",
  'path to the "svelte.config.js" file',
  `${process.cwd()}/svelte.config.js`
).action(async (globStr, output, { shallow, overwrite, config }) => {
  const filesToExtract = (await glob(globStr)).filter(
    (file) => file.match(/\.html|svelte$/i)
  );
  const isConfigDir = await isDirectory(config);
  const resolvedConfigPath = path.resolve(
    config,
    isConfigDir ? "svelte.config.js" : ""
  );
  if (isConfigDir) {
    console.warn(
      color.yellow(
        `Warning: -c/--config should point to the svelte.config file, not to a directory.
Using "${resolvedConfigPath}".`
      )
    );
  }
  const svelteConfig = await import(resolvedConfigPath).then((mod) => mod.default || mod).catch(() => null);
  let accumulator = {};
  if (output != null && overwrite === false && await fileExists(output)) {
    accumulator = await readFile(output).then((file) => JSON.parse(file.toString())).catch((e) => {
      console.warn(e);
      accumulator = {};
    });
  }
  for await (const filePath of filesToExtract) {
    try {
      const buffer = await readFile(filePath);
      let content = buffer.toString();
      if (svelteConfig == null ? void 0 : svelteConfig.preprocess) {
        const processed = await compiler.preprocess(content, svelteConfig.preprocess, {
          filename: filePath
        });
        content = processed.code;
      }
      extractMessages(content, { accumulator, shallow });
    } catch (e) {
      if (isSvelteError(e, "parse-error") && e.message.includes("Unexpected token")) {
        const msg = [
          `Error: unexpected token detected in "${filePath}"`,
          svelteConfig == null && `A svelte config is needed if the Svelte files use preprocessors. Tried to load "${resolvedConfigPath}".`,
          svelteConfig != null && `A svelte config was detected at "${resolvedConfigPath}". Make sure the preprocess step is correctly configured."`
        ].filter(Boolean).join("\n");
        console.error(color.red(msg));
        process.exit(1);
      }
      throw e;
    }
  }
  const jsonDictionary = JSON.stringify(accumulator, null, "  ");
  if (output == null)
    return console.log(jsonDictionary);
  await mkdir(path.dirname(output), { recursive: true });
  await writeFile(output, jsonDictionary);
});
program.parse(process.argv);