-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
166 lines (136 loc) · 3.57 KB
/
index.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
'use strict';
const pais = require('./venezuela');
function venezuela() {
const api = {
pais,
estado,
municipio,
parroquia,
estados: 24,
municipios: 335,
parroquias: 1139,
capital: estado(pais[23].estado)
};
return api;
}
// Quita acentos de las vocales.
function formato(nombre) {
const x = 'aeiou';
const y = 'áéíóú';
return nombre.toLowerCase().replace(/á|é|í|ó|ú/g, letra => x[y.indexOf(letra)]);
}
// Retorna un Municipio o parroquia aleatoria.
function aleatorio(tipo) {
const estado = pais[Math.floor(Math.random() * 24)];
const municipios = estado.municipios;
const municipio = municipios[Math.floor(Math.random() * municipios.length)];
const parroquias = municipio.parroquias;
const parroquia = parroquias[Math.floor(Math.random() * parroquias.length)];
if (tipo === 'municipio') {
return {
municipio: municipio.municipio,
capital: municipio.capital,
estado: estado.estado,
parroquias: parroquias.length
};
}
if (tipo === 'parroquia') {
return {
parroquia,
estado: estado.estado,
municipio: municipio.municipio,
capital: municipio.capital
};
}
}
// Retorna información sobre un Estado.
function estado(nombre, opciones) {
if (!nombre) {
return this.capital;
}
if (typeof nombre !== 'string') {
throw new Error(`El nombre no puede ser '${typeof nombre}'`);
}
let resultado;
pais.some(edo => {
if (formato(edo.estado) === formato(nombre)) {
resultado = {
iso_31662: edo.iso_31662,
estado: edo.estado,
capital: edo.capital,
municipios: detalles(edo.municipios),
parroquias: contador(edo.municipios)
};
return true;
}
});
return resultado;
function detalles(municipios) {
if (opciones && opciones.municipios) {
return municipios.map(data => data.municipio);
} else {
return municipios.length;
}
}
function contador(municipios) {
return municipios.map(data => data.parroquias.length).reduce((a, b) => a + b);
}
}
// Retorna información sobre un Municipio.
function municipio(nombre, opciones) {
if (!nombre) {
return aleatorio('municipio');
}
if (typeof nombre !== 'string') {
throw new Error(`El nombre no puede ser '${typeof nombre}'`);
}
let resultado;
pais.some(estado => {
return estado.municipios.some(municipio => {
if (formato(municipio.municipio) === formato(nombre)) {
resultado = {
municipio: municipio.municipio,
capital: municipio.capital,
estado: estado.estado,
parroquias: detalles(municipio.parroquias)
};
return true;
}
});
});
return resultado;
function detalles(parroquias) {
if (opciones && opciones.parroquias) {
return parroquias.map(data => data);
} else {
return parroquias.length;
}
}
}
// Retorna información sobre una Parroquia.
function parroquia(nombre, opciones) {
if (!nombre) {
return aleatorio('parroquia');
}
if (typeof nombre !== 'string') {
throw new Error(`El nombre no puede ser '${typeof nombre}'`);
}
let resultados = [];
pais.forEach(estado => {
estado.municipios.forEach(municipio => {
municipio.parroquias.forEach(parroquia => {
if (formato(parroquia) === formato(nombre)) {
let resultado = {
parroquia,
municipio: municipio.municipio,
capital: municipio.capital,
estado: estado.estado
};
resultados = [...resultados, resultado];
}
});
});
});
return resultados[0] ? resultados : undefined;
}
module.exports = venezuela();