-
Notifications
You must be signed in to change notification settings - Fork 7
/
rut_helper.dart
82 lines (66 loc) · 2.11 KB
/
rut_helper.dart
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
class RutHelper {
static String charAt(String subject, int position) {
if (subject is! String ||
subject.length <= position ||
subject.length + position < 0) {
return '';
}
int _realPosition = position < 0 ? subject.length + position : position;
return subject[_realPosition];
}
static bool isNumeric(String s) {
if (s == null) {
return false;
}
return double.parse(s, (e) => null) != null;
}
static bool Check(String rut) {
// Despejar Puntos
var valor = rut.replaceAll('.', '');
// Despejar Guión
valor = valor.replaceAll('-', '');
var cuerpo = valor.substring(0, valor.length - 1);
var dv = valor.substring(valor.length - 1).toUpperCase();
if (isNumeric(cuerpo)) {
// Este codigo fue mostrado en el hacktoberfest Concepcion 2019
// #Hacktoberfest2019
// Aguante el CITT <3
// Aislar Cuerpo y Dígito Verificador
// Formatear RUN
rut = cuerpo + '-' + dv;
// Si no cumple con el mínimo ej. (n.nnn.nnn)
if (cuerpo.length < 7) {
return false;
}
// Calcular Dígito Verificador
var suma = 0;
var multiplo = 2;
// Para cada dígito del Cuerpo
for (var i = 1; i <= cuerpo.length; i++) {
// Obtener su Producto con el Múltiplo Correspondiente
var index = multiplo * int.parse(charAt(valor, cuerpo.length - i));
// Sumar al Contador General
suma = suma + index;
// Consolidar Múltiplo dentro del rango [2,7]
if (multiplo < 7) {
multiplo = multiplo + 1;
} else {
multiplo = 2;
}
}
// Calcular Dígito Verificador en base al Módulo 11
var dvEsperado = 11 - (suma % 11);
// Casos Especiales (0 y K)
dv = (dv == 'K') ? '10' : dv;
dv= (dv == 0) ? '11' : dv;
// Validar que el Cuerpo coincide con su Dígito Verificador
if (dvEsperado.toString() != dv.toString()) {
return false;
}
// Si todo sale bien, eliminar errores (decretar que es válido)
return true;
} else {
return false;
}
}
}