-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnAPIviacep.pas
118 lines (118 loc) · 3.63 KB
/
UnAPIviacep.pas
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
{
1 - copie essa unit para a pasta de seu projeto
2 - no seu formulário em "uses" adicione -> UnTAPIViacep
3 - Declare uma variável do tipo TAPIwebm Ex: teste : TAPIViacep
3 - Instancie um objeto da classe TAPIwebm passando como parâmetro o CEP que deseja buscar Ex : teste := TAPIViacep.Create('17852145');
4 - Pegue seus dados ex: teste.GetLogradouro
* .GetRespCode -> 200 = ok ; 400 = Cep errado ou inexistente
}
unit UnAPIviacep;
interface
uses
IdTCPConnection, IdTCPClient, IdHTTP, IdSSLOpenSSL, System.json, System.SysUtils;
type
TAPIViacep = class
private
RespCode: Integer;
Logradouro, Complemento, Bairro, Localidade, UF, IBGE, Gia, Unidade : String;
procedure BuscarCep(pCep: String);
procedure LerJson(pJson: String);
public
function GetRespCode: Integer;
function GetLogradouro : String;
function GetComplemento : String;
function GetBairro : String;
function GetLocalidade : String;
function GetUF : String;
function GetIBGE : String;
function GetGia : String;
function GetUnidade : String;
constructor Create(pCEP : String);
end;
implementation
{ TAPIwebm }
procedure TAPIViacep.BuscarCep(pCEP: String);
var
IdHTTP: TIdHTTP;
LHandler: TIdSSLIOHandlerSocketOpenSSL;
Json: String;
URL : String;
begin
IdHTTP := TIdHTTP.Create();//responsavel pela chamada web
LHandler := TIdSSLIOHandlerSocketOpenSSL.Create(nil); //Handler necessário, pois a chamada é https (SSL)
try
try
IdHttp.IOHandler := LHandler;
URL := 'https://viacep.com.br/ws/' + PCEP + '/json/'; // defifinindo a URL que vai ser chamada (ex: https://viacep.com.br/ws/17202140/json/)
Json := IdHTTP.Get(URL);
RespCode := IdHTTP.ResponseCode; //recebe á resposta do servidor web
except
RespCode := IdHTTP.ResponseCode; //recebe á resposta do servidor web
exit; //se cair na excessão, interrompe a execução restante
end;
finally
FreeAndNil(LHandler);
FreeAndNil(IdHTTP);
end;
LerJson(Json);
end;
constructor TAPIViacep.Create(pCEP: String);
begin
BuscarCep(pCEP);
end;
function TAPIViacep.GetBairro: String;
begin
Result := Bairro;
end;
function TAPIViacep.GetComplemento: String;
begin
Result := Complemento;
end;
function TAPIViacep.GetGia: String;
begin
Result := Gia;
end;
function TAPIViacep.GetIBGE: String;
begin
Result := IBGE;
end;
function TAPIViacep.GetLocalidade: String;
begin
Result := Localidade;
end;
function TAPIViacep.GetLogradouro: String;
begin
Result := Logradouro;
end;
function TAPIViacep.GetRespCode: Integer;
begin
Result := RespCode;
end;
function TAPIViacep.GetUF: String;
begin
Result := UF;
end;
function TAPIViacep.GetUnidade: String;
begin
Result := Unidade;
end;
{ Passa os valores do Json vindo da web para os fields da classe}
procedure TAPIViacep.LerJson(pJson: String);
var
umJSONObject : TJSONObject;
begin
try
umJSONObject:= TJSONObject.ParseJSONValue(TEncoding.ASCII.GetBytes(pJson), 0) as TJSONObject; //converte string JSON em um objeto nativo do delphi do tipo TJSONObject
Logradouro := umJSONObject.Get('logradouro').JsonValue.Value; //busca dentro do JsonObject o indíce 'logradouro'; passa o valor para o Field Logradouro
Bairro := umJSONObject.Get('bairro').JsonValue.Value;
Localidade := umJSONObject.Get('localidade').JsonValue.Value;
Complemento := umJSONObject.Get('complemento').JsonValue.Value;
Unidade := umJSONObject.Get('unidade').JsonValue.Value;
IBGE := umJSONObject.Get('ibge').JsonValue.Value;
UF := umJSONObject.Get('uf').JsonValue.Value;
Gia := umJSONObject.Get('gia').JsonValue.Value;
finally
FreeAndNil(umJSONObject);
end;
end;
end.