This repository was archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYamlResourceFile.js
424 lines (374 loc) · 13.1 KB
/
YamlResourceFile.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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
* YamlResourceFile.js - represents a yaml resource file
*
* Copyright © 2019-2020, 2023 Box, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var fs = require("fs");
var path = require("path");
var yaml = require("yaml");
var ilib = require("ilib");
var Locale = require("ilib/lib/Locale.js");
/**
* @class Represents a yaml resource file.
* The props may contain any of the following properties:
*
* <ul>
* <li>project - the name of the project for this file
* <li>pathName - the path to the file, relative to the root of the project
* <li>type - type of this resource file
* <li>locale - the locale of this file
* </ul>
* @param {Object} props properties that control the construction of this file.
*/
var YamlResourceFile = function(props) {
if (props) {
this.project = props.project;
this.pathName = props.pathName;
this.locale = props.locale;
this.type = props.type;
this.flavor = props.flavor;
}
this.API = this.project.getAPI();
// update the locale from the path name if necessary
this._parsePath();
this.locale = this.locale || (this.project && this.project.sourceLocale) || "en-US";
this.set = this.API.newTranslationSet(this.locale);
this.logger = this.API.getLogger("loctool.plugin.YamlResourceFile");
};
/**
* @private
*/
YamlResourceFile.prototype._parseResources = function(prefix, obj, set) {
for (var key in obj) {
if (typeof(obj[key]) === "object") {
var pre = prefix ? prefix + "@" : "";
this._parseResources(pre + key.replace(/@/g, "\\@"), obj[key], set);
} else {
var resource = obj[key];
this.logger.trace("Adding string resource " + JSON.stringify(resource) + " locale " + this.getLocale());
var params = {
resType: "string",
project: this.project.getProjectId(),
key: key,
autoKey: true,
pathName: this.pathName,
datatype: this.type.datatype,
context: prefix,
flavor: this.flavor,
index: this.resourceIndex++
};
if (this.project.isSourceLocale(this.locale)) {
params.source = resource;
params.sourceLocale = this.getLocale();
} else {
params.source = "";
params.sourceLocale = this.project.sourceLocale;
params.target = resource;
params.targetLocale = this.getLocale();
}
var res = this.API.newResource(params);
set.add(res);
}
}
}
/**
* @private
*/
YamlResourceFile.prototype._handleResourceString = function(resource, object) {
if (!resource.getSource()) {
this.logger.warn("String resource " + resource.getKey() + " has no source text. Skipping...");
} else {
var string = resource.getTarget();
if (string && resource.getSource() !== string) {
this.logger.trace("writing string " + resource.getKey() + " as " + string);
var key = resource.getKey();
object[key] = string;
}
}
}
/**
* @private
*/
YamlResourceFile.prototype._handleResourcePlural = function(resource, object) {
if (!resource.getSourcePlurals()) {
this.logger.warn("Plural resource " + resource.getKey() + " has no plurals or is missing plurals. Skipping...");
} else {
var plurals = resource.getTargetPlurals();
// must have both a "one" and an "other" string
if (plurals &&
plurals.one &&
plurals.other &&
!this.API.utils.objectEquals(resource.getSourcePlurals(), plurals)) {
this.logger.trace("writing plurals " + resource.getKey() + " with " + JSON.stringify(plurals));
var key = resource.getKey();
object[key] = plurals;
}
}
}
var localeSpec = /^[a-z][a-z][a-z]?(-[A-Z][a-z][a-z][a-z])?(-[A-Z][A-Z](-[A-Z]+)?)?$/;
/**
* Parse a yml file and store the resources found in it into the
* file's translation set.
*
* @param {String} str the string to parse
*/
YamlResourceFile.prototype.parse = function(str) {
this.resourceIndex = 0;
var parsed = yaml.parse(str);
var top = parsed;
for (var key in parsed) {
var spec = key.replace(/_/g, "-");
if (localeSpec.exec(spec)) {
var l = new Locale(spec);
if (Locale.a1toa3langmap[l.getLanguage()] && (!l.getRegion() || Locale.a2toa3regmap[l.getRegion()])) {
this.locale = new Locale(l.language, l.region, l.variant, l.script).getSpec();
this.flavor = l.variant;
top = parsed[key];
break;
}
}
}
this._parseResources(undefined, top, this.set);
};
/**
* Extract all of the resources from this file and keep them in
* memory.
*/
YamlResourceFile.prototype.extract = function() {
this.logger.debug("Extracting strings from " + this.pathName);
if (this.pathName) {
var p = path.join(this.project.root, this.pathName);
try {
var data = fs.readFileSync(p, "utf8");
if (data) {
this.parse(data);
}
} catch (e) {
this.logger.warn("Could not read file: " + p);
this.logger.warn(e);
}
}
// mark this set as not dirty after we read it from disk
// so we can tell when other code has added resources to it
this.set.setClean();
};
var lang = new RegExp("[a-z][a-z]$");
var reg = new RegExp("[a-z][a-z]-[A-Z][A-Z]$");
var script = new RegExp("[a-z][a-z]-[A-Z][a-z][a-z][a-z]-[A-Z][A-Z]$");
/**
* Parse the file name of the yaml file for the locale. The
* locale for yaml files is given in the base name of the
* yaml file.<p>
*
* The general syntax of the file name is:<p>
*
* <pre>
* dir / [ language ["-" script] [ "-" region]] ".yml"
* </pre>
*
* That is, the directory is followed by the
* language code and an optional script and region code and the
* ".yml" suffix.
*
* @private
*/
YamlResourceFile.prototype._parsePath = function() {
if (!this._pathParsed && this.pathName) {
var base = path.basename(this.pathName);
if (base.endsWith(".yml") || base.endsWith(".yaml")) {
base = base.substring(0, base.lastIndexOf("."));
}
if (!this.locale) {
// don't have it? Then guess based on the path name
var l = new Locale(base);
if (l.language && Locale.a1toa3langmap[l.language]) {
this.locale = new Locale(l.language, l.region, l.variant, l.script).getSpec();
this.flavor = l.variant;
}
if (!this.locale) {
this.locale = this.project.sourceLocale;
}
}
}
this._pathParsed = true;
};
/**
* Get the path name of this resource file.
*
* @returns {String} the path name to this file
*/
YamlResourceFile.prototype.getPath = function() {
return this.pathName || this.getResourceFilePath(this.locale, this.flavor);
};
/**
* Get the locale of this resource file. For Android resource files, this
* can be extracted automatically based on the name of the directory
* that the file is in.
*
* @returns {String} the locale spec of this file
*/
YamlResourceFile.prototype.getLocale = function() {
this._parsePath();
return this.locale;
};
/**
* Get the locale of this resource file. For Android resource files, this
* can be extracted automatically based on the name of the directory
* that the file is in.
*
* @returns {String} the locale spec of this file
*/
YamlResourceFile.prototype.getContext = function() {
return "";
};
/**
* Get all resources from this file. This will return all resources
* of mixed types (strings, arrays, or plurals).
*
* @returns {Resource} all of the resources available in this resource file.
*/
YamlResourceFile.prototype.getAll = function() {
return this.set.getAll();
};
/**
* Add a resource to this file. The locale of the resource
* should correspond to the locale of the file, and the
* context of the resource should match the context of
* the file.
*
* @param {Resource} res a resource to add to this file
*/
YamlResourceFile.prototype.addResource = function(res) {
this.logger.trace("YamlResourceFile.addResource: " + JSON.stringify(res) + " to " + this.project.getProjectId() + ", " + this.locale + ", " + JSON.stringify(this.context));
if (res && res.getProject() === this.project.getProjectId()) {
this.logger.trace("correct project. Adding.");
this.set.add(res);
} else {
if (res) {
this.logger.warn("Attempt to add a resource to a resource file with the incorrect project.");
} else {
this.logger.warn("Attempt to add an undefined resource to a resource file.");
}
}
};
/**
* Add every resource in the given array to this file.
* @param {Array.<Resource>} resources an array of resources to add
* to this file
*/
YamlResourceFile.prototype.addAll = function(resources) {
if (resources && resources.length) {
resources.forEach(function(resource) {
this.addResource(resource);
}.bind(this));
}
};
/**
* Return true if this resource file has been modified
* since it was loaded from disk.
*
* @returns {boolean} true if this resource file has been
* modified since it was loaded
*/
YamlResourceFile.prototype.isDirty = function() {
return this.set.isDirty();
};
//we don't localize yml resource files
YamlResourceFile.prototype.localize = function() {};
/**
* Generate the content of the resource file.
*
* @private
* @returns {String} the content of the resource file
*/
YamlResourceFile.prototype.getContent = function() {
var json = {};
if (this.set.isDirty()) {
var resources = this.set.getAll();
var defaultLoc = this.API.utils.getLocaleDefault(this.locale, this.flavor);
if (resources.length) {
json[defaultLoc] = {};
}
for (var j = 0; j < resources.length; j++) {
var resource = resources[j];
if (resource.resType === "string") {
this._handleResourceString(resource, json[defaultLoc]);
} else if (resource.resType === "plural") {
this._handleResourcePlural(resource, json[defaultLoc]);
}
}
}
this.logger.trace("json is " + JSON.stringify(json));
// now convert the json back to yaml
// return yamljs.stringify(json, 4, 2, {});
return yaml.stringify(json, {
schema: 'failsafe',
sortMapEntries: true,
lineWidth: 0,
doubleQuotedAsJSON: true
});
};
/**
* Find the path for the resource file for the given project, context,
* and locale.
*
* @param {String} locale the name of the locale in which the resource
* file will reside
* @param {String|undefined} flavor the name of the flavor if any
* @return {String} the ios strings resource file path that serves the
* given project, context, and locale.
*/
YamlResourceFile.prototype.getResourceFilePath = function(locale, flavor) {
var localeDir, dir, newPath, spec = this.API.utils.getLocaleDefault(locale, flavor);
var filename = spec + ".yml";
dir = path.join(this.project.target, this.project.getResourceDirs("yml")[0] || ".");
newPath = path.join(dir, filename);
this.logger.trace("Getting resource file path for locale " + locale + ": " + newPath);
return newPath;
};
/**
* Write the resource file out to disk again.
*/
YamlResourceFile.prototype.write = function() {
this.logger.trace("writing yaml resource file. [" + this.project.getProjectId() + "," + this.locale + "]");
if (this.set.isDirty()) {
var dir;
if (!this.pathName) {
this.logger.trace("Calculating path name ");
// must be a new file, so create the name
this.pathName = path.join(this.project.target, this.getResourceFilePath(this.locale, this.flavor));
}
dir = path.dirname(this.pathName);
this.logger.info("Writing resources for locale " + this.locale + " to file " + this.pathName);
this.API.utils.makeDirs(dir);
var yml = this.getContent();
fs.writeFileSync(this.pathName, yml, "utf8");
this.logger.debug("Wrote string translations to file " + this.pathName);
} else {
this.logger.debug("File " + this.pathName + " is not dirty. Skipping.");
}
};
/**
* Return the set of resources found in the current Android
* resource file.
*
* @returns {TranslationSet} The set of resources found in the
* current Java file.
*/
YamlResourceFile.prototype.getTranslationSet = function() {
return this.set;
}
module.exports = YamlResourceFile;