-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathuCepWS.pas
126 lines (105 loc) · 3.04 KB
/
uCepWS.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
119
120
121
122
123
124
125
126
unit uCepWS;
interface
uses
IdHTTP,System.JSON,System.Classes,System.StrUtils,System.SysUtils,
IdBaseComponent, IdComponent,
IdIOHandler, IdIOHandlerSocket, IdIOHandlerStack, IdSSL, IdSSLOpenSSL,
IdTCPConnection, IdTCPClient, IdExplicitTLSClientServerBase, IdMessageClient,
IdSMTPBase, IdSMTP,
FMX.Dialogs;
type
TCep = class
private
FLogradouro: String;
FIbge: Integer;
FBairro: String;
FUf: String;
FCep: String;
FLocalidade: String;
FComplemento: String;
procedure SetBairro(const Value: String);
procedure SetCep(const Value: String);
procedure SetComplemento(const Value: String);
procedure SetIbge(const Value: Integer);
procedure SetLocalidade(const Value: String);
procedure SetLogradouro(const Value: String);
procedure SetUf(const Value: String);
published
property Cep: String read FCep write SetCep;
property Logradouro: String read FLogradouro write SetLogradouro;
property Complemento: String read FComplemento write SetComplemento;
property Bairro: String read FBairro write SetBairro;
property Localidade: String read FLocalidade write SetLocalidade;
property Uf: String read FUf write SetUf;
property Ibge :Integer read FIbge write SetIbge;
public
procedure Consultar(Cep :String);
end;
implementation
{ TCep }
uses uFuncoes;
procedure TCep.Consultar(Cep: String);
var
HTTP: TIdHTTP;
JStream : TStringStream;
JSON : TJSONObject;
begin
JStream := TStringStream.Create('');
HTTP := TIdHTTP.Create(nil);
try
HTTP.Get('http://viacep.com.br/ws/'+cep+'/json/', JStream);
except
FreeAndNil(HTTP);
FreeAndNil(JStream);
Exit;
end;
JSON := nil;
try
try
JSON := TJSONObject.ParseJSONValue(TEncoding.ANSI.GetBytes(JStream.DataString), 0) as TJSONObject;
Bairro := JSON.GetValue('bairro').Value;
Logradouro := JSON.GetValue('logradouro').Value;
Cep := Desformata(JSON.GetValue('cep').Value);
Localidade := JSON.GetValue('localidade').Value;
Uf := JSON.GetValue('uf').Value;
Complemento := JSON.GetValue('complemento').Value;
except
on E:Exception do begin
showmessage(E.Message);
end;
end;
finally
FreeAndNil(JSON);
FreeAndNil(HTTP);
FreeAndNil(JStream);
end;
end;
procedure TCep.SetBairro(const Value: String);
begin
FBairro := Value;
end;
procedure TCep.SetCep(const Value: String);
begin
FCep := Value;
end;
procedure TCep.SetComplemento(const Value: String);
begin
FComplemento := Value;
end;
procedure TCep.SetIbge(const Value: Integer);
begin
FIbge := Value;
end;
procedure TCep.SetLocalidade(const Value: String);
begin
FLocalidade := Value;
end;
procedure TCep.SetLogradouro(const Value: String);
begin
FLogradouro := Value;
end;
procedure TCep.SetUf(const Value: String);
begin
FUf := Value;
end;
end.