forked from tecnospeedti/plugnotas-delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DemoPlugNotasMain.pas
323 lines (273 loc) · 9.83 KB
/
DemoPlugNotasMain.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
unit DemoPlugNotasMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, IdHTTP, IdSSLOpenSSL, StrUtils, ExtCtrls, IdMultipartFormData,
superobject;
type
TPlugException = class(Exception);
TForm1 = class(TForm)
cbbAmbiente: TComboBox;
btnEnviarNota: TButton;
mmoJsonNota: TMemo;
mmoResposta: TMemo;
pnlConfiguracoes: TPanel;
lblAmbiente: TLabel;
pnlEnvioNota: TPanel;
lblNota: TLabel;
lblResposta: TLabel;
pnlConsultarNota: TPanel;
lblIdNota: TLabel;
btnConsultarNota: TButton;
edtIdNota: TEdit;
edtApiKey: TEdit;
lblApiKey: TLabel;
mmoJsonParseado: TMemo;
btnParsearJson: TButton;
lblRespostaFormatada: TLabel;
btnImprimirNota: TButton;
dlgSavePDF: TSaveDialog;
btnSubirCertificado: TButton;
dlgOpenSelecionarCertificado: TOpenDialog;
pnlUploadCertificado: TPanel;
edtCaminhoCertificado: TEdit;
edtSenhaCertificado: TEdit;
lblCaminhoCertificado: TLabel;
lblSenhaCertificado: TLabel;
btnSelecionarCertificado: TButton;
lblStatusCode: TLabel;
procedure btnEnviarNotaClick(Sender: TObject);
procedure btnConsultarNotaClick(Sender: TObject);
procedure btnImprimirNotaClick(Sender: TObject);
procedure btnSubirCertificadoClick(Sender: TObject);
procedure btnSelecionarCertificadoClick(Sender: TObject);
procedure btnParsearJsonClick(Sender: TObject);
private
{ Private declarations }
procedure Requisicao(const aOperacao: string);
procedure EnviarNota(const aIndy: TIdHTTP; const aBody: TStrings; const aResponse: TMemoryStream);
procedure ConsultarNota(const aIndy: TIdHTTP; const aResponse: TMemoryStream);
procedure ImprimirNota(const aIndy: TIdHTTP; const aResponse: TMemoryStream);
procedure UploadCertificado(const aIndy: TIdHTTP; const aFormData: TIdMultiPartFormDataStream; const aResponse: TMemoryStream);
public
{ Public declarations }
end;
var
Form1: TForm1;
urls : array[0..1] of string = ('https://api.sandbox.plugnotas.com.br', 'https://api.plugnotas.com.br');
implementation
{$R *.dfm}
procedure TForm1.btnConsultarNotaClick(Sender: TObject);
begin
Requisicao('consultar');
end;
procedure TForm1.btnEnviarNotaClick(Sender: TObject);
begin
Requisicao('enviar');
end;
procedure TForm1.btnImprimirNotaClick(Sender: TObject);
begin
Requisicao('imprimir');
mmoResposta.Lines.Text := 'Arquivo PDF ' + dlgSavePDF.FileName + ' salvo com sucesso.';
end;
procedure TForm1.btnParsearJsonClick(Sender: TObject);
var
_json: ISuperObject;
procedure formatarRespostaEnvioSucesso;
var
_document:ISuperObject;
begin
mmoJsonParseado.Lines.Clear;
mmoJsonParseado.Lines.Add('Mensagem: ' + _json['message'].AsString);
mmoJsonParseado.Lines.Add('Protocolo: ' + _json['protocol'].AsString);
for _document in _json['documents'] do
begin
edtIdNota.Text := _document.S['id'];
mmoJsonParseado.Lines.Add('Id da Nota: ' + _document.S['id']);
mmoJsonParseado.Lines.Add('--------------------------------');
end;
end;
procedure formatarRespostaConsultaSucesso;
var
_document:ISuperObject;
begin
mmoJsonParseado.Lines.Clear;
for _document in _json do
begin
edtIdNota.Text := _document.S['id'];
mmoJsonParseado.Lines.Add('Id da Nota: ' + _document.S['id']);
mmoJsonParseado.Lines.Add('Data de emissão: ' + _document.S['emissao']);
mmoJsonParseado.Lines.Add('Situação: ' + _document.S['status']);
mmoJsonParseado.Lines.Add('Data de autorização: ' + _document.S['dataAutorizacao']);
mmoJsonParseado.Lines.Add('Valor: ' + _document.S['valor']);
mmoJsonParseado.Lines.Add('--------------------------------');
end;
end;
procedure formatarRespostaErro;
begin
mmoJsonParseado.Lines.Clear;
mmoJsonParseado.Lines.Add('Mensagem: ' + _json['error.message'].AsString);
mmoJsonParseado.Lines.Add('Dados do erro: ' + _json['error.data'].AsString);
end;
procedure formatarRespostaCertificadoSucesso;
begin
mmoJsonParseado.Lines.Clear;
mmoJsonParseado.Lines.Add('Mensagem: ' + _json['message'].AsString);
mmoJsonParseado.Lines.Add('Dados do certificado: ' + _json['data'].AsString);
end;
begin
try
_json := SO(Trim(AnsiReplaceText(mmoResposta.Lines.Text, #13#10, '')));
try
if _json['error'] <> nil then
begin
formatarRespostaErro;
exit;
end;
if _json['documents'] <> nil then
begin
formatarRespostaEnvioSucesso;
exit;
end;
if AnsiStartsStr('[', mmoResposta.Lines.Text) then
begin
formatarRespostaConsultaSucesso;
exit;
end;
if _json['message'] <> nil then
begin
formatarRespostaCertificadoSucesso;
exit;
end;
finally
_json.Clear(True);
_json := nil;
end;
except on E: Exception do
raise Exception.Create('Erro ao carregar o JSON: ' + E.Message);
end;
end;
procedure TForm1.btnSelecionarCertificadoClick(Sender: TObject);
begin
if dlgOpenSelecionarCertificado.Execute then
begin
edtCaminhoCertificado.Text := dlgOpenSelecionarCertificado.FileName;
end;
end;
procedure TForm1.btnSubirCertificadoClick(Sender: TObject);
begin
Requisicao('upload');
end;
procedure TForm1.ConsultarNota(const aIndy: TIdHTTP; const aResponse: TMemoryStream);
begin
aIndy.Request.ContentType := 'application/json';
if Trim(edtIdNota.Text) = EmptyStr then
raise TPlugException.Create('ID da nota deve ser preenchido na consulta.');
aIndy.Get(urls[cbbAmbiente.ItemIndex] + '/nfe/' + edtIdNota.Text + '/resumo', aResponse);
end;
procedure TForm1.EnviarNota(const aIndy: TIdHTTP; const aBody: TStrings; const aResponse: TMemoryStream);
begin
if Trim(mmoJsonNota.Lines.Text) = EmptyStr then
raise TPlugException.Create('JSON da nota deve ser preenchido no envio.');
aIndy.Request.ContentType := 'application/json';
aBody.Text := AnsiReplaceText(mmoJsonNota.Lines.Text, #13#10, '');
aIndy.Post(urls[cbbAmbiente.ItemIndex] + '/nfe', aBody, aResponse);
end;
procedure TForm1.ImprimirNota(const aIndy: TIdHTTP;
const aResponse: TMemoryStream);
var
resposta : string;
begin
aIndy.Request.ContentType := 'application/json';
if Trim(edtIdNota.Text) = EmptyStr then
raise TPlugException.Create('ID da nota deve ser preenchido na impressão.');
aIndy.Get(urls[cbbAmbiente.ItemIndex] + '/nfe/' + edtIdNota.Text + '/pdf', aResponse);
dlgSavePDF.FileName := edtIdNota.Text;
if (dlgSavePDF.Execute()) then
aResponse.SaveToFile(dlgSavePDF.FileName);
aResponse.Clear;
end;
procedure TForm1.Requisicao(const aOperacao: string);
var
_idHttp : TIdHTTP;
_body : TStrings;
_SSLHandler : TIdSSLIOHandlerSocketOpenSSL;
_response: TMemoryStream;
_formData : TIdMultiPartFormDataStream;
begin
lblStatusCode.font.Color := clBlack;
lblStatusCode.Caption := '';
_idHttp := TIdHTTP.Create;
_SSLHandler := TIdSSLIOHandlerSocketOpenSSL.Create(nil);
_body := TStringList.Create;
_response := TMemoryStream.Create;
_formData := TIdMultiPartFormDataStream.Create;
try
_idHttp.IOHandler := _SSLHandler;
_idHttp.HandleRedirects := True;
_idHttp.Request.Clear;
_idHttp.ProtocolVersion := pv1_1;
_idHttp.HandleRedirects := true;
_idHttp.ConnectTimeout := 15000;
_idHttp.Request.AcceptEncoding := 'gzip, deflate, br';
_idHttp.Request.Connection := 'keep-alive';
_idHttp.Request.Accept := '*/*';
if TRim(edtApiKey.Text) = EmptyStr then
raise TPlugException.Create('Chave de autenticação deve ser preenchida.');
_idHttp.Request.CustomHeaders.AddValue('x-api-key', edtApiKey.Text);
try
if aOperacao = 'enviar' then
EnviarNota(_idHttp, _body, _response);
if aOperacao = 'consultar' then
ConsultarNota(_idHttp, _response);
if aOperacao = 'imprimir' then
ImprimirNota(_idHttp, _response);
if aOperacao = 'upload' then
UploadCertificado(_idHttp, _formData, _response);
except
on e: TPlugException do
begin
raise;
end;
on e: EIdHTTPProtocolException do
begin
mmoResposta.Lines.Clear;
lblStatusCode.font.Color := clRed;
lblStatusCode.Caption := _idHttp.ResponseText;
mmoResposta.Lines.Add(e.ErrorMessage);
Exit;
end;
on e: exception do
begin
mmoResposta.Lines.Clear;
lblStatusCode.font.Color := clRed;
lblStatusCode.Caption := _idHttp.ResponseText;
mmoResposta.Lines.Text := _idHttp.ResponseText;
Exit;
end;
end;
lblStatusCode.font.Color := clGreen;
lblStatusCode.Caption := _idHttp.ResponseText;
_response.Position := 0;
mmoResposta.Lines.LoadFromStream(_response);
finally
_response.Free;
_body.Free;
_formData.Free;
_SSLHandler.Free;
_idHttp.Free;
end;
end;
procedure TForm1.UploadCertificado(const aIndy: TIdHTTP; const aFormData: TIdMultiPartFormDataStream; const aResponse: TMemoryStream);
begin
if edtCaminhoCertificado.Text = EmptyStr then
raise TPlugException.Create('Caminho do certificado digital está vazio.');
if edtSenhaCertificado.Text = EmptyStr then
raise TPlugException.Create('Senha do certificado digital está vazia.');
if not FileExists(edtCaminhoCertificado.Text) then
raise TPlugException.Create('Arquivo do certificado digital não encontrado.');
aFormData.AddFile('arquivo', edtCaminhoCertificado.Text, 'application/x-pkcs12');
aFormData.AddFormField('senha', edtSenhaCertificado.Text);
aIndy.Post(urls[cbbAmbiente.ItemIndex] + '/certificado', aFormData, aResponse);
end;
end.