-
-
Notifications
You must be signed in to change notification settings - Fork 419
/
i18n.js
1404 lines (1234 loc) · 42.2 KB
/
i18n.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @author Created by Marcus Spiegel <[email protected]> on 2011-03-25.
* @link https://github.com/mashpie/i18n-node
* @license http://opensource.org/licenses/MIT
*/
'use strict'
// dependencies
const printf = require('fast-printf').printf
const pkgVersion = require('./package.json').version
const fs = require('fs')
const url = require('url')
const path = require('path')
const debug = require('debug')('i18n:debug')
const warn = require('debug')('i18n:warn')
const error = require('debug')('i18n:error')
const Mustache = require('mustache')
const Messageformat = require('@messageformat/core')
const MakePlural = require('make-plural')
const parseInterval = require('math-interval-parser').default
// utils
const escapeRegExp = (string) => string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') // $& means the whole matched string
/**
* create constructor function
*/
const i18n = function I18n(_OPTS = false) {
const MessageformatInstanceForLocale = {}
const PluralsForLocale = {}
let locales = {}
const api = {
__: '__',
__n: '__n',
__l: '__l',
__h: '__h',
__mf: '__mf',
getLocale: 'getLocale',
setLocale: 'setLocale',
getCatalog: 'getCatalog',
getLocales: 'getLocales',
addLocale: 'addLocale',
removeLocale: 'removeLocale'
}
const mustacheConfig = {
tags: ['{{', '}}'],
disable: false
}
let mustacheRegex
const pathsep = path.sep // ---> means win support will be available in node 0.8.x and above
let autoReload
let cookiename
let languageHeaderName
let defaultLocale
let retryInDefaultLocale
let directory
let directoryPermissions
let extension
let fallbacks
let indent
let logDebugFn
let logErrorFn
let logWarnFn
let preserveLegacyCase
let objectNotation
let prefix
let queryParameter
let register
let updateFiles
let syncFiles
let missingKeyFn
let parser
// public exports
const i18n = {}
i18n.version = pkgVersion
i18n.configure = function i18nConfigure(opt) {
// reset locales
locales = {}
// Provide custom API method aliases if desired
// This needs to be processed before the first call to applyAPItoObject()
if (opt.api && typeof opt.api === 'object') {
for (const method in opt.api) {
if (Object.prototype.hasOwnProperty.call(opt.api, method)) {
const alias = opt.api[method]
if (typeof api[method] !== 'undefined') {
api[method] = alias
}
}
}
}
// you may register i18n in global scope, up to you
if (typeof opt.register === 'object') {
register = opt.register
// or give an array objects to register to
if (Array.isArray(opt.register)) {
register = opt.register
register.forEach(applyAPItoObject)
} else {
applyAPItoObject(opt.register)
}
}
// sets a custom cookie name to parse locale settings from
cookiename = typeof opt.cookie === 'string' ? opt.cookie : null
// set the custom header name to extract the language locale
languageHeaderName =
typeof opt.header === 'string' ? opt.header : 'accept-language'
// query-string parameter to be watched - @todo: add test & doc
queryParameter =
typeof opt.queryParameter === 'string' ? opt.queryParameter : null
// where to store json files
directory =
typeof opt.directory === 'string'
? opt.directory
: path.join(__dirname, 'locales')
// permissions when creating new directories
directoryPermissions =
typeof opt.directoryPermissions === 'string'
? parseInt(opt.directoryPermissions, 8)
: null
// write new locale information to disk
updateFiles = typeof opt.updateFiles === 'boolean' ? opt.updateFiles : true
// sync locale information accros all files
syncFiles = typeof opt.syncFiles === 'boolean' ? opt.syncFiles : false
// what to use as the indentation unit (ex: "\t", " ")
indent = typeof opt.indent === 'string' ? opt.indent : '\t'
// json files prefix
prefix = typeof opt.prefix === 'string' ? opt.prefix : ''
// where to store json files
extension = typeof opt.extension === 'string' ? opt.extension : '.json'
// setting defaultLocale
defaultLocale =
typeof opt.defaultLocale === 'string' ? opt.defaultLocale : 'en'
// allow to retry in default locale, useful for production
retryInDefaultLocale =
typeof opt.retryInDefaultLocale === 'boolean'
? opt.retryInDefaultLocale
: false
// auto reload locale files when changed
autoReload = typeof opt.autoReload === 'boolean' ? opt.autoReload : false
// enable object notation?
objectNotation =
typeof opt.objectNotation !== 'undefined' ? opt.objectNotation : false
if (objectNotation === true) objectNotation = '.'
// read language fallback map
fallbacks = typeof opt.fallbacks === 'object' ? opt.fallbacks : {}
// setting custom logger functions
logDebugFn = typeof opt.logDebugFn === 'function' ? opt.logDebugFn : debug
logWarnFn = typeof opt.logWarnFn === 'function' ? opt.logWarnFn : warn
logErrorFn = typeof opt.logErrorFn === 'function' ? opt.logErrorFn : error
preserveLegacyCase =
typeof opt.preserveLegacyCase === 'boolean'
? opt.preserveLegacyCase
: true
// setting custom missing key function
missingKeyFn =
typeof opt.missingKeyFn === 'function' ? opt.missingKeyFn : missingKey
parser =
typeof opt.parser === 'object' &&
typeof opt.parser.parse === 'function' &&
typeof opt.parser.stringify === 'function'
? opt.parser
: JSON
// when missing locales we try to guess that from directory
opt.locales = opt.staticCatalog
? Object.keys(opt.staticCatalog)
: opt.locales || guessLocales(directory)
// some options should be disabled when using staticCatalog
if (opt.staticCatalog) {
updateFiles = false
autoReload = false
syncFiles = false
}
// customize mustache parsing
if (opt.mustacheConfig) {
if (Array.isArray(opt.mustacheConfig.tags)) {
mustacheConfig.tags = opt.mustacheConfig.tags
}
if (opt.mustacheConfig.disable === true) {
mustacheConfig.disable = true
}
}
const [start, end] = mustacheConfig.tags
mustacheRegex = new RegExp(escapeRegExp(start) + '.*' + escapeRegExp(end))
// implicitly read all locales
if (Array.isArray(opt.locales)) {
if (opt.staticCatalog) {
locales = opt.staticCatalog
} else {
opt.locales.forEach(read)
}
// auto reload locale files when changed
if (autoReload) {
// watch changes of locale files (it's called twice because fs.watch is still unstable)
fs.watch(directory, (event, filename) => {
const localeFromFile = guessLocaleFromFile(filename)
if (localeFromFile && opt.locales.indexOf(localeFromFile) > -1) {
logDebug('Auto reloading locale file "' + filename + '".')
read(localeFromFile)
}
})
}
}
}
i18n.init = function i18nInit(request, response, next) {
if (typeof request === 'object') {
// guess requested language/locale
guessLanguage(request)
// bind api to req
applyAPItoObject(request)
// looks double but will ensure schema on api refactor
i18n.setLocale(request, request.locale)
} else {
return logError(
'i18n.init must be called with one parameter minimum, ie. i18n.init(req)'
)
}
if (typeof response === 'object') {
applyAPItoObject(response)
// and set that locale to response too
i18n.setLocale(response, request.locale)
}
// head over to next callback when bound as middleware
if (typeof next === 'function') {
return next()
}
}
i18n.__ = function i18nTranslate(phrase) {
let msg
const argv = parseArgv(arguments)
const namedValues = argv[0]
const args = argv[1]
// called like __({phrase: "Hello", locale: "en"})
if (typeof phrase === 'object') {
if (
typeof phrase.locale === 'string' &&
typeof phrase.phrase === 'string'
) {
msg = translate(phrase.locale, phrase.phrase)
}
}
// called like __("Hello")
else {
// get translated message with locale from scope (deprecated) or object
msg = translate(getLocaleFromObject(this), phrase)
}
// postprocess to get compatible to plurals
if (typeof msg === 'object' && msg.one) {
msg = msg.one
}
// in case there is no 'one' but an 'other' rule
if (typeof msg === 'object' && msg.other) {
msg = msg.other
}
// head over to postProcessing
return postProcess(msg, namedValues, args)
}
i18n.__mf = function i18nMessageformat(phrase) {
let msg, mf, f
let targetLocale = defaultLocale
const argv = parseArgv(arguments)
const namedValues = argv[0]
const args = argv[1]
// called like __({phrase: "Hello", locale: "en"})
if (typeof phrase === 'object') {
if (
typeof phrase.locale === 'string' &&
typeof phrase.phrase === 'string'
) {
msg = phrase.phrase
targetLocale = phrase.locale
}
}
// called like __("Hello")
else {
// get translated message with locale from scope (deprecated) or object
msg = phrase
targetLocale = getLocaleFromObject(this)
}
msg = translate(targetLocale, msg)
// --- end get msg
// now head over to Messageformat
// and try to cache instance
if (MessageformatInstanceForLocale[targetLocale]) {
mf = MessageformatInstanceForLocale[targetLocale]
} else {
mf = new Messageformat(targetLocale)
mf.compiledFunctions = {}
MessageformatInstanceForLocale[targetLocale] = mf
}
// let's try to cache that function
if (mf.compiledFunctions[msg]) {
f = mf.compiledFunctions[msg]
} else {
f = mf.compile(msg)
mf.compiledFunctions[msg] = f
}
return postProcess(f(namedValues), namedValues, args)
}
i18n.__l = function i18nTranslationList(phrase) {
const translations = []
Object.keys(locales)
.sort()
.forEach((l) => {
translations.push(i18n.__({ phrase: phrase, locale: l }))
})
return translations
}
i18n.__h = function i18nTranslationHash(phrase) {
const translations = []
Object.keys(locales)
.sort()
.forEach((l) => {
const hash = {}
hash[l] = i18n.__({ phrase: phrase, locale: l })
translations.push(hash)
})
return translations
}
i18n.__n = function i18nTranslatePlural(singular, plural, count) {
let msg
let namedValues
let targetLocale
let args = []
// Accept an object with named values as the last parameter
if (argsEndWithNamedObject(arguments)) {
namedValues = arguments[arguments.length - 1]
args =
arguments.length >= 5
? Array.prototype.slice.call(arguments, 3, -1)
: []
} else {
namedValues = {}
args =
arguments.length >= 4 ? Array.prototype.slice.call(arguments, 3) : []
}
// called like __n({singular: "%s cat", plural: "%s cats", locale: "en"}, 3)
if (typeof singular === 'object') {
if (
typeof singular.locale === 'string' &&
typeof singular.singular === 'string' &&
typeof singular.plural === 'string'
) {
targetLocale = singular.locale
msg = translate(singular.locale, singular.singular, singular.plural)
}
args.unshift(count)
// some template engines pass all values as strings -> so we try to convert them to numbers
if (typeof plural === 'number' || Number(plural) + '' === plural) {
count = plural
}
// called like __n({singular: "%s cat", plural: "%s cats", locale: "en", count: 3})
if (
typeof singular.count === 'number' ||
typeof singular.count === 'string'
) {
count = singular.count
args.unshift(plural)
}
} else {
// called like __n('cat', 3)
if (typeof plural === 'number' || Number(plural) + '' === plural) {
count = plural
// we add same string as default
// which efectivly copies the key to the plural.value
// this is for initialization of new empty translations
plural = singular
args.unshift(count)
args.unshift(plural)
}
// called like __n('%s cat', '%s cats', 3)
// get translated message with locale from scope (deprecated) or object
msg = translate(getLocaleFromObject(this), singular, plural)
targetLocale = getLocaleFromObject(this)
}
if (count === null) count = namedValues.count
// enforce number
count = Number(count)
// find the correct plural rule for given locale
if (typeof msg === 'object') {
let p
// create a new Plural for locale
// and try to cache instance
if (PluralsForLocale[targetLocale]) {
p = PluralsForLocale[targetLocale]
} else {
// split locales with a region code
const lc = targetLocale
.toLowerCase()
.split(/[_-\s]+/)
.filter((el) => true && el)
// take the first part of locale, fallback to full locale
p = MakePlural[lc[0] || targetLocale]
PluralsForLocale[targetLocale] = p
}
// fallback to 'other' on case of missing translations
msg = msg[p(count)] || msg.other
}
// head over to postProcessing
return postProcess(msg, namedValues, args, count)
}
i18n.setLocale = function i18nSetLocale(object, locale, skipImplicitObjects) {
// when given an array of objects => setLocale on each
if (Array.isArray(object) && typeof locale === 'string') {
for (let i = object.length - 1; i >= 0; i--) {
i18n.setLocale(object[i], locale, true)
}
return i18n.getLocale(object[0])
}
// defaults to called like i18n.setLocale(req, 'en')
let targetObject = object
let targetLocale = locale
// called like req.setLocale('en') or i18n.setLocale('en')
if (locale === undefined && typeof object === 'string') {
targetObject = this
targetLocale = object
}
// consider a fallback
if (!locales[targetLocale]) {
targetLocale = getFallback(targetLocale, fallbacks) || targetLocale
}
// now set locale on object
targetObject.locale = locales[targetLocale] ? targetLocale : defaultLocale
// consider any extra registered objects
if (typeof register === 'object') {
if (Array.isArray(register) && !skipImplicitObjects) {
register.forEach((r) => {
r.locale = targetObject.locale
})
} else {
register.locale = targetObject.locale
}
}
// consider res
if (targetObject.res && !skipImplicitObjects) {
// escape recursion
// @see - https://github.com/balderdashy/sails/pull/3631
// - https://github.com/mashpie/i18n-node/pull/218
if (targetObject.res.locals) {
i18n.setLocale(targetObject.res, targetObject.locale, true)
i18n.setLocale(targetObject.res.locals, targetObject.locale, true)
} else {
i18n.setLocale(targetObject.res, targetObject.locale)
}
}
// consider locals
if (targetObject.locals && !skipImplicitObjects) {
// escape recursion
// @see - https://github.com/balderdashy/sails/pull/3631
// - https://github.com/mashpie/i18n-node/pull/218
if (targetObject.locals.res) {
i18n.setLocale(targetObject.locals, targetObject.locale, true)
i18n.setLocale(targetObject.locals.res, targetObject.locale, true)
} else {
i18n.setLocale(targetObject.locals, targetObject.locale)
}
}
return i18n.getLocale(targetObject)
}
i18n.getLocale = function i18nGetLocale(request) {
// called like i18n.getLocale(req)
if (request && request.locale) {
return request.locale
}
// called like req.getLocale()
return this.locale || defaultLocale
}
i18n.getCatalog = function i18nGetCatalog(object, locale) {
let targetLocale
// called like i18n.getCatalog(req)
if (
typeof object === 'object' &&
typeof object.locale === 'string' &&
locale === undefined
) {
targetLocale = object.locale
}
// called like i18n.getCatalog(req, 'en')
if (
!targetLocale &&
typeof object === 'object' &&
typeof locale === 'string'
) {
targetLocale = locale
}
// called like req.getCatalog('en')
if (!targetLocale && locale === undefined && typeof object === 'string') {
targetLocale = object
}
// called like req.getCatalog()
if (
!targetLocale &&
object === undefined &&
locale === undefined &&
typeof this.locale === 'string'
) {
if (register && register.global) {
targetLocale = ''
} else {
targetLocale = this.locale
}
}
// called like i18n.getCatalog()
if (targetLocale === undefined || targetLocale === '') {
return locales
}
if (!locales[targetLocale]) {
targetLocale = getFallback(targetLocale, fallbacks) || targetLocale
}
if (locales[targetLocale]) {
return locales[targetLocale]
} else {
logWarn('No catalog found for "' + targetLocale + '"')
return false
}
}
i18n.getLocales = function i18nGetLocales() {
return Object.keys(locales)
}
i18n.addLocale = function i18nAddLocale(locale) {
read(locale)
}
i18n.removeLocale = function i18nRemoveLocale(locale) {
delete locales[locale]
}
// ===================
// = private methods =
// ===================
const postProcess = (msg, namedValues, args, count) => {
// test for parsable interval string
if (/\|/.test(msg)) {
msg = parsePluralInterval(msg, count)
}
// replace the counter
if (typeof count === 'number') {
msg = printf(msg, Number(count))
}
// if the msg string contains {{Mustache}} patterns we render it as a mini template
if (!mustacheConfig.disable && mustacheRegex.test(msg)) {
msg = Mustache.render(msg, namedValues, {}, mustacheConfig.tags)
}
// if we have extra arguments with values to get replaced,
// an additional substition injects those strings afterwards
if (/%/.test(msg) && args && args.length > 0) {
msg = printf(msg, ...args)
}
return msg
}
const argsEndWithNamedObject = (args) =>
args.length > 1 &&
args[args.length - 1] !== null &&
typeof args[args.length - 1] === 'object'
const parseArgv = (args) => {
let namedValues, returnArgs
if (argsEndWithNamedObject(args)) {
namedValues = args[args.length - 1]
returnArgs = Array.prototype.slice.call(args, 1, -1)
} else {
namedValues = {}
returnArgs = args.length >= 2 ? Array.prototype.slice.call(args, 1) : []
}
return [namedValues, returnArgs]
}
/**
* registers all public API methods to a given response object when not already declared
*/
const applyAPItoObject = (object) => {
let alreadySetted = true
// attach to itself if not provided
for (const method in api) {
if (Object.prototype.hasOwnProperty.call(api, method)) {
const alias = api[method]
// be kind rewind, or better not touch anything already existing
if (!object[alias]) {
alreadySetted = false
object[alias] = i18n[method].bind(object)
}
}
}
// set initial locale if not set
if (!object.locale) {
object.locale = defaultLocale
}
// escape recursion
if (alreadySetted) {
return
}
// attach to response if present (ie. in express)
if (object.res) {
applyAPItoObject(object.res)
}
// attach to locals if present (ie. in express)
if (object.locals) {
applyAPItoObject(object.locals)
}
}
/**
* tries to guess locales by scanning the given directory
*/
const guessLocales = (directory) => {
const entries = fs.readdirSync(directory)
const localesFound = []
for (let i = entries.length - 1; i >= 0; i--) {
if (entries[i].match(/^\./)) continue
const localeFromFile = guessLocaleFromFile(entries[i])
if (localeFromFile) localesFound.push(localeFromFile)
}
return localesFound.sort()
}
/**
* tries to guess locales from a given filename
*/
const guessLocaleFromFile = (filename) => {
const extensionRegex = new RegExp(extension + '$', 'g')
const prefixRegex = new RegExp('^' + prefix, 'g')
if (!filename) return false
if (prefix && !filename.match(prefixRegex)) return false
if (extension && !filename.match(extensionRegex)) return false
return filename.replace(prefix, '').replace(extensionRegex, '')
}
/**
* @param queryLanguage - language query parameter, either an array or a string.
* @return the first non-empty language query parameter found, null otherwise.
*/
const extractQueryLanguage = (queryLanguage) => {
if (Array.isArray(queryLanguage)) {
return queryLanguage.find((lang) => lang !== '' && lang)
}
return typeof queryLanguage === 'string' && queryLanguage
}
/**
* guess language setting based on http headers
*/
const guessLanguage = (request) => {
if (typeof request === 'object') {
const languageHeader = request.headers
? request.headers[languageHeaderName]
: undefined
const languages = []
const regions = []
request.languages = [defaultLocale]
request.regions = [defaultLocale]
request.language = defaultLocale
request.region = defaultLocale
// a query parameter overwrites all
if (queryParameter && request.url) {
const urlAsString =
typeof request.url === 'string' ? request.url : request.url.toString()
/**
* @todo WHATWG new URL() requires full URL including hostname - that might change
* @see https://github.com/nodejs/node/issues/12682
*/
// eslint-disable-next-line node/no-deprecated-api
const urlObj = url.parse(urlAsString, true)
const languageQueryParameter = urlObj.query[queryParameter]
if (languageQueryParameter) {
let queryLanguage = extractQueryLanguage(languageQueryParameter)
if (queryLanguage) {
logDebug('Overriding locale from query: ' + queryLanguage)
if (preserveLegacyCase) {
queryLanguage = queryLanguage.toLowerCase()
}
return i18n.setLocale(request, queryLanguage)
}
}
}
// a cookie overwrites headers
if (cookiename && request.cookies && request.cookies[cookiename]) {
request.language = request.cookies[cookiename]
return i18n.setLocale(request, request.language)
}
// 'accept-language' is the most common source
if (languageHeader) {
const acceptedLanguages = getAcceptedLanguagesFromHeader(languageHeader)
let match
let fallbackMatch
let fallback
for (let i = 0; i < acceptedLanguages.length; i++) {
const lang = acceptedLanguages[i]
const lr = lang.split('-', 2)
const parentLang = lr[0]
const region = lr[1]
// Check if we have a configured fallback set for this language.
const fallbackLang = getFallback(lang, fallbacks)
if (fallbackLang) {
fallback = fallbackLang
// Fallbacks for languages should be inserted
// where the original, unsupported language existed.
const acceptedLanguageIndex = acceptedLanguages.indexOf(lang)
const fallbackIndex = acceptedLanguages.indexOf(fallback)
if (fallbackIndex > -1) {
acceptedLanguages.splice(fallbackIndex, 1)
}
acceptedLanguages.splice(acceptedLanguageIndex + 1, 0, fallback)
}
// Check if we have a configured fallback set for the parent language of the locale.
const fallbackParentLang = getFallback(parentLang, fallbacks)
if (fallbackParentLang) {
fallback = fallbackParentLang
// Fallbacks for a parent language should be inserted
// to the end of the list, so they're only picked
// if there is no better match.
if (acceptedLanguages.indexOf(fallback) < 0) {
acceptedLanguages.push(fallback)
}
}
if (languages.indexOf(parentLang) < 0) {
languages.push(parentLang.toLowerCase())
}
if (region) {
regions.push(region.toLowerCase())
}
if (!match && locales[lang]) {
match = lang
break
}
if (!fallbackMatch && locales[parentLang]) {
fallbackMatch = parentLang
}
}
request.language = match || fallbackMatch || request.language
request.region = regions[0] || request.region
return i18n.setLocale(request, request.language)
}
}
// last resort: defaultLocale
return i18n.setLocale(request, defaultLocale)
}
/**
* Get a sorted list of accepted languages from the HTTP Accept-Language header
*/
const getAcceptedLanguagesFromHeader = (header) => {
const languages = header.split(',')
const preferences = {}
return languages
.map((item) => {
const preferenceParts = item.trim().split(';q=')
if (preferenceParts.length < 2) {
preferenceParts[1] = 1.0
} else {
const quality = parseFloat(preferenceParts[1])
preferenceParts[1] = quality || 0.0
}
preferences[preferenceParts[0]] = preferenceParts[1]
return preferenceParts[0]
})
.filter((lang) => preferences[lang] > 0)
.sort((a, b) => preferences[b] - preferences[a])
}
/**
* searches for locale in given object
*/
const getLocaleFromObject = (obj) => {
let locale
if (obj && obj.scope) {
locale = obj.scope.locale
}
if (obj && obj.locale) {
locale = obj.locale
}
return locale
}
/**
* splits and parses a phrase for mathematical interval expressions
*/
const parsePluralInterval = (phrase, count) => {
let returnPhrase = phrase
const phrases = phrase.split(/\|/)
let intervalRuleExists = false
// some() breaks on 1st true
phrases.some((p) => {
const matches = p.match(/^\s*([()[\]]+[\d,]+[()[\]]+)?\s*(.*)$/)
// not the same as in combined condition
if (matches != null && matches[1]) {
intervalRuleExists = true
if (matchInterval(count, matches[1]) === true) {
returnPhrase = matches[2]
return true
}
} else {
// this is a other or catch all case, this only is taken into account if there is actually another rule
if (intervalRuleExists) {
returnPhrase = p
}
}
return false
})
return returnPhrase
}
/**
* test a number to match mathematical interval expressions
* [0,2] - 0 to 2 (including, matches: 0, 1, 2)
* ]0,3[ - 0 to 3 (excluding, matches: 1, 2)
* [1] - 1 (matches: 1)
* [20,] - all numbers ≥20 (matches: 20, 21, 22, ...)
* [,20] - all numbers ≤20 (matches: 20, 21, 22, ...)
*/
const matchInterval = (number, interval) => {
interval = parseInterval(interval)
if (interval && typeof number === 'number') {
if (interval.from.value === number) {
return interval.from.included
}
if (interval.to.value === number) {
return interval.to.included
}
return (
Math.min(interval.from.value, number) === interval.from.value &&
Math.max(interval.to.value, number) === interval.to.value
)
}
return false
}
/**
* read locale file, translate a msg and write to fs if new
*/
const translate = (locale, singular, plural, skipSyncToAllFiles) => {
// add same key to all translations
if (!skipSyncToAllFiles && syncFiles) {
syncToAllFiles(singular, plural)
}
if (locale === undefined) {
logWarn(
'WARN: No locale found - check the context of the call to __(). Using ' +
defaultLocale +
' as current locale'
)
locale = defaultLocale
}
// try to get a fallback
if (!locales[locale]) {
locale = getFallback(locale, fallbacks) || locale
}
// attempt to read when defined as valid locale
if (!locales[locale]) {
read(locale)
}
// fallback to default when missed
if (!locales[locale]) {
logWarn(
'WARN: Locale ' +
locale +
" couldn't be read - check the context of the call to $__. Using " +
defaultLocale +
' (default) as current locale'
)
locale = defaultLocale
read(locale)
}
// dotnotaction add on, @todo: factor out
let defaultSingular = singular
let defaultPlural = plural
if (objectNotation) {
let indexOfColon = singular.indexOf(':')
// We compare against 0 instead of -1 because
// we don't really expect the string to start with ':'.
if (indexOfColon > 0) {
defaultSingular = singular.substring(indexOfColon + 1)
singular = singular.substring(0, indexOfColon)
}
if (plural && typeof plural !== 'number') {