-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
98 lines (82 loc) · 4.03 KB
/
utils.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
const assert = require('assert')
const validate = require('rut.js').validate
// Remove accent vocals
// (str) -> str
function removeAccent (str) {
assert.equal(typeof str, 'string', 'Sólo se puede remover acentos de strings')
return str
.replace(/á/g, 'a')
.replace(/é/g, 'e')
.replace(/í/g, 'i')
.replace(/ó/g, 'o')
.replace(/ú/g, 'u')
.replace(/Á/g, 'A')
.replace(/É/g, 'E')
.replace(/Í/g, 'I')
.replace(/Ó/g, 'O')
.replace(/Ú/g, 'U')
}
// Remove the dots of a string
// (str) -> str
function removeDots (str) {
assert.equal(typeof str, 'string', 'Sólo se puede remover puntos de strings')
return str.replace(/\./g, '')
}
// Wrap a string to prevent search errors for case mismatch and untrimed strings
// (str) -> str
function wrapString (str) {
return str ? removeAccent(removeDots(str)).toUpperCase().trim() : ''
}
// Apply a specific filter with specific options to a senators array
// (arr, obj) -> arr
function filter (arrayToFilter, options) {
// conditions
const nameFilter = (senador, nombre) => {
assert(typeof nombre === 'string' || nombre instanceof RegExp, 'El nombre solo se puede filtrar por string o expresion regular')
return typeof nombre === 'string' ? wrapString(senador.nombre).indexOf(wrapString(nombre)) > -1 : nombre.test(senador.nombre)
}
const rutFilter = (senador, rut) => {
assert(validate(rut), 'el rut de busqueda ingresado no es valido')
return wrapString(senador.rut) === wrapString(rut)
}
const defualtRutFilter = (senador, rut) => {
rut = rut.toString()
return senador.rut.split('-')[0] === rut
}
const regionFilter = (senador, region) => {
assert(typeof region === 'string' || region instanceof RegExp, 'La region solo se puede filtrar por string o expresion regular')
return typeof region === 'string' ? wrapString(senador.region).indexOf(wrapString(region)) > -1 : region.test(senador.region)
}
const circunscripcionFilter = (senador, circunscripcion) => {
assert.equal(typeof circunscripcion, 'number', 'La circunscripción ingresada para buscar debe ser un número')
return senador.circunscripcion === circunscripcion
}
const telefonoFilter = (senador, telefono) => {
assert(typeof telefono === 'string' || telefono instanceof RegExp, 'El telefono solo se puede filtrar por string o expresion regular')
return typeof telefono === 'string' ? wrapString(senador.telefono).indexOf(wrapString(telefono)) > -1 : telefono.test(senador.telefono)
}
const mailFilter = (senador, mail) => {
assert(typeof mail === 'string' || mail instanceof RegExp, 'El telefono solo se puede filtrar por string o expresion regular')
return typeof mail === 'string' ? wrapString(senador.mail).indexOf(wrapString(mail)) > -1 : mail.test(senador.mail)
}
const partidoFilter = (senador, partido) => {
assert(typeof partido === 'string' || partido instanceof RegExp, 'El telefono solo se puede filtrar por string o expresion regular')
return typeof partido === 'string' ? wrapString(senador.partido).indexOf(wrapString(partido)) > -1 : partido.test(senador.partido)
}
const _filter = elem => {
if (elem.hasOwnProperty('senador')) elem = elem.senador
// default queries
if (typeof options === 'string' && elem) return nameFilter(elem, options)
if (typeof options === 'number' && elem) return defualtRutFilter(elem, options)
return (options.nombre ? nameFilter(elem, options.nombre) : true) &&
(options.rut ? rutFilter(elem, options.rut) : true) &&
(options.region ? regionFilter(elem, options.region) : true) &&
(options.circunscripcion ? circunscripcionFilter(elem, options.circunscripcion) : true) &&
(options.telefono ? telefonoFilter(elem, options.telefono) : true) &&
(options.mail ? mailFilter(elem, options.mail) : true) &&
(options.partido ? partidoFilter(elem, options.partido) : true)
}
return arrayToFilter.filter(_filter)
}
exports.filter = filter
exports.wrapString = wrapString