-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.js
374 lines (343 loc) · 5.14 KB
/
lang.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
var lo = require("lodash");
var langmap = require("@subiz/langmap");
const fs = require("fs");
// 2021 Nov 2 from https://www.six-group.com/en/products-services/financial-information/data-standards.html
let allCurrencyCodes = [
"AFN",
"EUR",
"ALL",
"DZD",
"USD",
"AOA",
"XCD",
"ARS",
"AMD",
"AWG",
"AUD",
"AZN",
"BSD",
"BHD",
"BDT",
"BBD",
"BYN",
"BZD",
"XOF",
"BMD",
"INR",
"BTN",
"BOB",
"BOV",
"BAM",
"BWP",
"NOK",
"BRL",
"BND",
"BGN",
"BIF",
"CVE",
"KHR",
"XAF",
"CAD",
"KYD",
"CLP",
"CLF",
"CNY",
"COP",
"COU",
"KMF",
"CDF",
"NZD",
"CRC",
"HRK",
"CUP",
"CUC",
"ANG",
"CZK",
"DKK",
"DJF",
"DOP",
"EGP",
"SVC",
"ERN",
"SZL",
"ETB",
"FKP",
"FJD",
"XPF",
"GMD",
"GEL",
"GHS",
"GIP",
"GTQ",
"GBP",
"GNF",
"GYD",
"HTG",
"HNL",
"HKD",
"HUF",
"ISK",
"IDR",
"XDR",
"IRR",
"IQD",
"ILS",
"JMD",
"JPY",
"JOD",
"KZT",
"KES",
"KPW",
"KRW",
"KWD",
"KGS",
"LAK",
"LBP",
"LSL",
"ZAR",
"LRD",
"LYD",
"CHF",
"MOP",
"MKD",
"MGA",
"MWK",
"MYR",
"MVR",
"MRU",
"MUR",
"XUA",
"MXN",
"MXV",
"MDL",
"MNT",
"MAD",
"MZN",
"MMK",
"NAD",
"NPR",
"NIO",
"NGN",
"OMR",
"PKR",
"PAB",
"PGK",
"PYG",
"PEN",
"PHP",
"PLN",
"QAR",
"RON",
"RUB",
"RWF",
"SHP",
"WST",
"STN",
"SAR",
"RSD",
"SCR",
"SLL",
"SGD",
"XSU",
"SBD",
"SOS",
"SSP",
"LKR",
"SDG",
"SRD",
"SEK",
"CHE",
"CHW",
"SYP",
"TWD",
"TJS",
"TZS",
"THB",
"TOP",
"TTD",
"TND",
"TRY",
"TMT",
"UGX",
"UAH",
"AED",
"USN",
"UYU",
"UYI",
"UYW",
"UZS",
"VUV",
"VES",
"VED",
"VND",
"YER",
"ZMW",
"ZWL",
"XBA",
"XBB",
"XBC",
"XBD",
"XTS",
"XXX",
"XAU",
"XPD",
"XPT",
"XAG",
];
allCurrencyCodes = lo.uniqBy(allCurrencyCodes, (e) => e);
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function toGoLocale(locale) {
return capitalizeFirstLetter(locale.replace("-", "_"));
}
let curm =
`
var AllCurrency = map[string]bool{
` +
allCurrencyCodes.map((code) => ` "` + code + `": true,`).join("\n") +
`
}
`;
let localem = `
var LocaleM = map[string]bool{
`;
let gocodeallstring = `
func GetAllI18ns(str *I18NString) []string {
out := make([]string, 0)
`;
let gocode = `// CODE GENERATED BY lang.js. DO NOT MODIFY
package header
import "strings"
// GetI18n returns the value by its locale
func GetI18n(str *I18NString, locale, fallback string) string {
if str == nil {
return fallback
}
`;
let proto = `// CODE GENERATED BY lang.js. DO NOT MODIFY
syntax = "proto3";
package header;
option go_package = "github.com/subiz/header";
message I18nString {`;
var i = 10;
var s = lo
.map(langmap, (_, k) => k)
.filter((k) => k.indexOf("-") >= 0)
.map((k) => {
i++;
gocode += ` if locale == "${k}" {
if str.${toGoLocale(k)} == "" && fallback != locale && fallback != "" {
return GetI18n(str, fallback, fallback)
}
return str.${toGoLocale(k)}
}
`;
gocodeallstring += ` if strings.TrimSpace(str.${toGoLocale(k)}) != "" {
out = append(out, str.${toGoLocale(k)})
}
`;
localem += ` "${k}": true,
`;
proto += `
string ${k.replace("-", "_")} = ${i}; // ${langmap[k].englishName}`;
});
localem += "}\n";
gocode +=
` return fallback
}` +
localem +
curm;
gocodeallstring += ` return out
}`;
proto += `
string custom = 250;
string key = 251;
}`;
let curencySource =
`
func toFP(f float32) int64 {
return int64(float64(f) * 1000000)
}
// CalcFPV turns price concurrency code to fixed point arithmetic value
// (https://en.wikipedia.org/wiki/Fixed-point_arithmetic)
// must convert to base concurrency first
func CalcFPV(price *Price, code string) int64 {
cur := strings.TrimSpace(strings.ToUpper(code))
if cur != "" {
` +
allCurrencyCodes
.map((code) => {
return (
`
if cur == "` +
code +
`" {
return toFP(price.Get` +
code +
`())
}`
);
})
.join("\n") +
` }
// unknow currency codd => fallback to the first non-zero
` +
allCurrencyCodes
.map((code) => {
return (
`
if price.Get` +
code +
`() != 0 {
return toFP(price.Get` +
code +
`())
}`
);
})
.join("\n") +
`
return 0
}
func SetCurrency(price *Price, code string, value float32) {
cur := strings.TrimSpace(strings.ToUpper(code))
if cur != "" {
return
}
` +
allCurrencyCodes
.map((code) => {
return (
`
if cur == "` +
code +
`" {
price.` +
code +
` = value
}`
);
})
.join("\n") +
`
}
`;
// proto
let protoAllCurCodeStr = allCurrencyCodes
.map((code, i) => "\tfloat " + code + " = " + (i + 10) + ";")
.join("\n");
let curProto =
`
message Price {
string currency = 2;
int64 FPV = 3; // fixed point arithmetic value, see https://en.wikipedia.org/wiki/Fixed-point_arithmetic
` +
protoAllCurCodeStr +
"\n}\n";
proto += curProto;
fs.writeFileSync(
"/src/locale.generated.go",
gocode + gocodeallstring + curencySource,
);
fs.writeFileSync("/src/locale.generated.proto", proto);