-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
169 lines (156 loc) · 4.85 KB
/
script.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
167
168
169
function validarCep(valor)
{
// obtém somente os números através da expressão regular
let cep = valor.replace(/\D/gm,'');
// expressão regular para validar o cep
let regEx = /^[0-9]{8}$/;
// verifica se o cep está no formato válido
if (regEx.test(cep) === true)
{
consultarCep(cep);
} else
{
alert('Cep em formato inválido!');
limparFormulario();
}
}
function validarCnpj(valor)
{
// obtém somente os números
let cnpj = valor.replace(/\D/gm,'');
// expressão regular para validar o cnpj
let regEx = /^[0-9]{14}$/;
// verifica se o cep está no formato válido
if (regEx.test(cnpj) === true)
{
consultarCnpj(cnpj);
} else
{
alert('Cnpj em formato inválido!');
limparFormulario();
}
}
function limparFormulario()
{
document.getElementById('cnpj').value = "";
document.getElementById('nome').value = "";
document.getElementById('cep').value = "";
document.getElementById('logradouro').value = "";
document.getElementById('bairro').value = "";
document.getElementById('municipio').value = "";
document.getElementById('uf').value = "";
document.getElementById('ibge').value = "";
document.getElementById('ddd').value = "";
document.getElementById('telefone').value = "";
}
function escreverDadosCep(textoJson)
{
// converte o texto JSON em objeto
const jsonObj = JSON.parse(textoJson);
// escreve os valores do objeto JSON no formulário
if (!('erro' in jsonObj))
{
document.getElementById('logradouro').value = jsonObj.logradouro;
document.getElementById('bairro').value = jsonObj.bairro;
document.getElementById('municipio').value = jsonObj.localidade;
document.getElementById('uf').value = jsonObj.uf;
document.getElementById('ibge').value = jsonObj.ibge;
document.getElementById('ddd').value = jsonObj.ddd;
} else
{
// pesquisa retornou algum erro
limparFormulario();
alert('Cep não encontrado!');
}
}
function consultarCep(valor)
{
let baseUrl = 'https://viacep.com.br/ws/' + valor + '/json/';
let xhttp = new XMLHttpRequest();
xhttp.open('GET',baseUrl,true);
xhttp.setRequestHeader('Content-Type','text/plain');
xhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xhttp.send();
xhttp.onload = function()
{
if (xhttp.readyState == 4 && xhttp.status == 200)
{
// sucesso
let resposta = xhttp.responseText;
escreverDadosCep(resposta);
return;
} else
{
// alerta porque não foi possível obter a consulta
alert(xhttp.readyState + `\n` + xhttp.status + `\n` + xhttp.statusText);
return;
};
}
xhttp.onerror = function()
{
// alerta o erro
alert('Erro: ' + xhttp);
return;
}
}
function escreverDadosCnpj(textoJson)
{
// converte o texto JSON em objeto
const jsonObj = JSON.parse(textoJson);
console.log(jsonObj.cep);
console.log(jsonObj.nome);
console.log(jsonObj.abertura);
// escreve os valores do objeto JSON no formulário
if (jsonObj.status == 'OK')
{
document.getElementById('razao').value = jsonObj.nome;
document.getElementById('abertura').value = jsonObj.abertura;
document.getElementById('cep').value = jsonObj.cep.replace(/\D/gm,'');
validarCep(jsonObj.cep);
} else
{
// pesquisa retornou algum erro
limparFormulario();
alert(`ERRO: \n` + jsonObj.message);
}
}
function consultarCnpj(valor)
{
// PARA ATIVAR A DEMO DO CORS PARA CONSULTA DA API --> https://cors-anywhere.herokuapp.com/corsdemo
let baseUrl = 'https://cors-anywhere.herokuapp.com/https://www.receitaws.com.br/v1/cnpj/' + valor;
let xhttp = new XMLHttpRequest();
xhttp.open('GET',baseUrl,true);
xhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xhttp.setRequestHeader('Content-Type','text/plain');
xhttp.send();
xhttp.onload = function()
{
if (xhttp.readyState == 4 && xhttp.status == 200)
{
// sucesso
let resposta = xhttp.responseText;
escreverDadosCnpj(resposta);
console.log(resposta);
return;
} else
{
// alerta porque não foi possível obter a consulta
alert(xhttp.readyState + `\n` + xhttp.status + `\n` + xhttp.statusText);
return;
};
}
xhttp.onerror = function()
{
// alerta o erro
alert('Erro: ' + xhttp.getAllResponseHeaders());
return;
}
}
function validarTelefone(valor)
{
let regexTelefone = /^[0-9]{4,5}-[0-9]{4}$/;
if (!(regexTelefone.test(valor) === true))
{
alert('Formato de telefone inválido!');
}
}