-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
158 lines (144 loc) · 4.22 KB
/
index.js
File metadata and controls
158 lines (144 loc) · 4.22 KB
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
const CO = require('./countries');
const LA = require('./languages');
const GE = require('./genres');
const C2L = require('./others/country2languages');
const J2D = require('./others/job2department');
let countries = {};
let languages = {};
let genres = {};
for (let i = 0; i < CO.length; i++) {
countries[CO[i].locale] = CO[i].countries;
}
for (let i = 0; i < LA.length; i++) {
languages[LA[i].locale] = LA[i].languages;
}
for (let i = 0; i < GE.length; i++) {
genres[GE[i].locale] = GE[i].genres;
}
/**
* Convert country names (string) to ISO 3166-1 (array)
* Convert country ISO 3166-1 (array) to names (array)
*
* @param {String|Array} items
* @param {String} [lang]
* @param {String} [separator]
* @return {Array}
*/
module.exports.co = (items, lang, separator) => {
return parse(items, lang, separator, countries);
};
/**
* Convert language names (string) to ISO 639-1 (array)
* Convert language ISO 639-1 (array) to names (array)
*
* @param {String|Array} items
* @param {String} [lang]
* @param {String} [separator]
* @return {Array}
*/
module.exports.la = (items, lang, separator) => {
return parse(items, lang, separator, languages);
};
/**
* Convert genre names (string) to codes (array)
* Convert genre codes (array) to names (array)
*
* @param {String|Array} items
* @param {String} [lang]
* @param {String} [separator]
* @return {Array}
*/
module.exports.ge = (items, lang, separator) => {
return parse(items, lang, separator, genres);
};
const parse = (items, lang, separator, data) => {
if (typeof separator === 'undefined') {
separator = ',';
}
if (!items) {
return [];
}
if (typeof items === 'string') {
return items.split(separator).map(title => {
title = title
.replace(/\s+/g, ' ')
.replace(/(^\s*)|(\s*)$/g, '')
.toLowerCase();
if (typeof lang === 'undefined') {
let langs = Object.keys(data);
for (let l = 0; l < langs.length; l++) {
let codes = Object.keys(data[langs[l]]);
for (let c = 0; c < codes.length; c++) {
if (data[langs[l]][codes[c]].toLowerCase() === title) {
return codes[c];
}
}
}
}
else if (typeof lang === 'string') {
lang = lang.toLowerCase();
if (!data[lang]) return false;
let codes = Object.keys(data[lang]);
for (let c = 0; c < codes.length; c++) {
if (data[lang][codes[c]].toLowerCase() === title) {
return codes[c];
}
}
}
else {
return false;
}
}).filter(Boolean);
}
if (typeof items === 'object') {
lang = typeof lang === 'undefined'
? 'en'
: lang.toLowerCase();
if (!data[lang]) return [];
return items.map(code => {
return (data[lang] && data[lang][code])
? data[lang][code]
: false;
}).filter(Boolean);
}
};
/**
* Convert country ISO 3166-1 (string) to languages ISO 639-1 (array)
*
* @param {String} item
* @return {Array}
*/
module.exports.c2l = item => {
if (item && typeof C2L[item.toLowerCase()] !== 'undefined') {
return C2L[item.toLowerCase()].split(',');
} else {
return [item.toLowerCase()];
}
};
/**
* Convert job (string) to department (string)
*
* @param {String} item
* @return {string}
*/
module.exports.j2d = item => {
if (!item || /other/i.test(item)) return '';
let department = '';
if (!department) {
J2D.forEach(function (d) {
d.jobs.forEach(function (j) {
let r = new RegExp('^' + item + '$', 'i');
if (r.test(j)) department = d['department'];
});
});
}
if (!department) {
J2D.forEach(function (d) {
d.jobs.forEach(function (j) {
let r = new RegExp(item, 'i');
if (r.test(j)) department = d['department'];
});
});
}
return department;
};