-
Notifications
You must be signed in to change notification settings - Fork 0
/
validaCPF.php
124 lines (98 loc) · 3.58 KB
/
validaCPF.php
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
<?php
require 'include/headers_api_php.php';
require 'include/std_messages_api_php.php';
# Get JSON as a string
$json_str = file_get_contents('php://input');
# Get as an object
$json_obj = json_decode($json_str, true);
if(count($json_obj) < 2) {
$json_output = $JSONStandard[3];
} else {
if(!isset($json_obj["authKey"]) || !isset($json_obj["param"])) {
$json_output = $JSONStandard[3];
} else {
if(isset($json_obj["authKey"])) {
//Verifica a permissao de uso
//Como eh publica, todos podem usar
if(true) {
if($json_obj["param"][0] != "") {
//Executa o codigo da API
$ary = [];
for($i = 0; $i < count($json_obj["param"]); $i++) {
if(validaCPF($json_obj["param"][$i])) {
array_push($ary,1);
} else {
array_push($ary,0);
}
}
unset($i);
$strResult = "[";
$strSeparador = "";
for($i = 0; $i < count($ary); $i++) {
$strResult = $strResult.$strSeparador.$ary[$i];
($i == 0 ? $strSeparador = "," : true);
}
unset($i,$strSeparador,$ary);
$strResult = $strResult."]";
$json_output = str_replace('__RESULT__', $strResult, $JSONStandard[0]);
unset($strResult);
} else {
//Server error
$json_output = str_replace('__RESULT__', '{}', $JSONStandard[1]);
}
} else {
//Forbidden
$json_output = $JSONStandard[2];
}
} else {
//Forbidden
$json_output = $JSONStandard[2];
}
}
}
function validaCPF($cpf = null) {
// Verifica se um número foi informado
if(empty($cpf)) {
return false;
}
// Elimina possivel mascara
$cpf = preg_replace("/[^0-9]/", "", $cpf);
$cpf = str_pad($cpf, 11, '0', STR_PAD_LEFT);
// Verifica se o numero de digitos informados é igual a 11
if (strlen($cpf) != 11) {
return false;
}
// Verifica se nenhuma das sequências invalidas abaixo
// foi digitada. Caso afirmativo, retorna falso
else if ($cpf == '00000000000' ||
$cpf == '11111111111' ||
$cpf == '22222222222' ||
$cpf == '33333333333' ||
$cpf == '44444444444' ||
$cpf == '55555555555' ||
$cpf == '66666666666' ||
$cpf == '77777777777' ||
$cpf == '88888888888' ||
$cpf == '99999999999') {
return false;
// Calcula os digitos verificadores para verificar se o
// CPF é válido
} else {
for ($t = 9; $t < 11; $t++) {
for ($d = 0, $c = 0; $c < $t; $c++) {
$d += $cpf{$c} * (($t + 1) - $c);
}
$d = ((10 * $d) % 11) % 10;
if ($cpf{$c} != $d) {
return false;
}
}
return true;
}
}
if(isset($JSONStandard)){ unset($JSONStandard);}
if(isset($json_str)){ unset($json_str);}
if(isset($json_obj)){ unset($json_obj);}
if(isset($result)){ unset($result);}
echo $json_output;
?>