-
Notifications
You must be signed in to change notification settings - Fork 0
/
Principal.pas
594 lines (485 loc) · 23 KB
/
Principal.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
unit Principal;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, uLkJSON, ACBrDFeSSL, ACBrEAD, ACBrOpenSSLUtils, IdHTTP,
IdSSLOpenSSL, IniFiles, synacode;
type
TFPrincipal = class(TForm)
btnGerarToken: TButton;
MemoRespToken: TMemo;
Label1: TLabel;
editToken: TEdit;
Label2: TLabel;
lblTokenExpira: TLabel;
btnRegistraBoleto: TButton;
MemoResp: TMemo;
btnValidaAcesso: TButton;
procedure btnGerarTokenClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure btnRegistraBoletoClick(Sender: TObject);
procedure btnValidaAcessoClick(Sender: TObject);
private
{ Private declarations }
DFeSSL: TDFeSSL;
//FSSLDigest: TSSLDgst;
//FSSLHashOutput: TSSLHashOutput;
//ObjACBrEAD: TACBrEAD;
FIdSSLIOHandlerSocketOpenSSL: TIdSSLIOHandlerSocketOpenSSL;
ACBrOpenSSLUtils1: TACBrOpenSSLUtils;
FHTTP: TIdHTTP;
procedure InsereLog(Dado: string);
public
{ Public declarations }
procedure ACBrEADGetChavePrivada(var Chave: string);
end;
var
FPrincipal: TFPrincipal;
UrlToken, UrlTokenNoRequest, UrlRegBoleto, UrlRegBoletoNoRequest: string;
ClienteID, ClientSecret: string;
ArquivoPFX, SenhaPFX: string;
PagadorDocumento, PagadorNome, PagadorEnderecoRua, PagadorEnderecoNumero, PagadorEnderecoCep, PagadorEnderecoBairro, PagadorEnderecoMunicipio, PagadorEnderecoUF: string;
BeneficiarioDocumento, BeneficiarioCarteira, BeneficiarioAgencia, BeneficiarioConta: string;
Agora: TDateTime;
implementation
uses
Funcoes, LibBradescoApiCriaBoleto;
{$R *.dfm}
procedure TFPrincipal.InsereLog(Dado: string);
var
LogFile: TextFile;
LogNomeArquiovo: string;
begin
try
LogNomeArquiovo := ExtractFilePath(Application.ExeName) + 'Log_' + FormatDateTime('YYYY_MM_DD', Now) + '.txt';
AssignFile(LogFile, LogNomeArquiovo);
if FileExists(LogNomeArquiovo) then
Append(LogFile)
else
Rewrite(LogFile);
try
Writeln(LogFile, FormatDateTime('DD/MM/YYYY HH:NN:SS', Now) + ' => ' + Dado);
Flush(LogFile);
except
end;
CloseFile(LogFile);
except
// Nao foi possivel gravar
end;
end;
procedure TFPrincipal.FormCreate(Sender: TObject);
var
IniFile: TIniFile;
begin
//ProdUrlToken := 'https://openapi.bradesco.com.br/auth/server/v1.1/token';
//ProdUrlTokenNoRequest := 'https://openapi.bradesco.com.br/auth/server/v1.1/token';
UrlToken := 'https://proxy.api.prebanco.com.br/auth/server/v1.2/token';
UrlTokenNoRequest := 'https://proxy.api.prebanco.com.br/auth/server/v1.1/token';
UrlRegBoleto := 'https://proxy.api.prebanco.com.br/v1/boleto-hibrido/registrar-boleto';
UrlRegBoletoNoRequest := '/v1/boleto-hibrido/registrar-boleto';
//C_URL = 'https://openapi.bradesco.com.br/cobranca-bancaria/v2';
//C_URL_HOM = 'https://proxy.api.prebanco.com.br/cobranca-bancaria/v2';
//C_URL_OAUTH_PROD = 'https://openapi.bradesco.com.br/auth/server/v1.2/token';
//C_URL_OAUTH_HOM = 'https://proxy.api.prebanco.com.br/auth/server/v1.2/token';
//URL_BASE = 'https://proxy.api.prebanco.com.br';
//URL_TOKEN = 'https://proxy.api.prebanco.com.br/auth/server/v1.1/token';
//URL_TOKEN_REQ = 'https://proxy.api.prebanco.com.br/auth/server/v1.2/token';
//URL_CRIABOLETO = 'https://proxy.api.prebanco.com.br/v1/boleto/registrarBoleto';
//URI_REG_BOLETO = '/v1/boleto/registrarBoleto';
//URI_TESTE = '/v1.1/jwt-service';
//PARAM_TESTE = 'agencia=552&conta=331';
//CLIENT_ID = 'SEUCLIENTID';
ArquivoPFX := 'certificado.pfx';
SenhaPFX := '123456';
ClienteID := '12345678-1234-1234-1234-123456789012';
ClientSecret := '12345678-1234-1234-1234-123456789012';
PagadorDocumento := '12345678901234';
PagadorNome := 'EMPRESA MODELO';
PagadorEnderecoRua := 'EMPRESA MODELO';
PagadorEnderecoNumero := '123';
PagadorEnderecoCep := '13416901';
PagadorEnderecoBairro := 'CENTRO';
PagadorEnderecoMunicipio := 'MUNICIPIO';
PagadorEnderecoUF := 'SP';
if FileExists(ExtractFilePath(Application.ExeName) + 'Configuracoes.ini') then
begin
IniFile := TIniFile.Create(ExtractFilePath(Application.ExeName) + 'Configuracoes.ini');
if IniFile.ReadString('Configuracoes', 'ArquivoPFX', '') <> '' then
ArquivoPFX := IniFile.ReadString('Configuracoes', 'ArquivoPFX', '');
if IniFile.ReadString('Configuracoes', 'SenhaPFX', '') <> '' then
SenhaPFX := IniFile.ReadString('Configuracoes', 'SenhaPFX', '');
if IniFile.ReadString('Configuracoes', 'ClienteID', '') <> '' then
ClienteID := IniFile.ReadString('Configuracoes', 'ClienteID', '');
if IniFile.ReadString('Configuracoes', 'ClientSecret', '') <> '' then
ClientSecret := IniFile.ReadString('Configuracoes', 'ClientSecret', '');
BeneficiarioDocumento := IniFile.ReadString('Configuracoes', 'BeneficiarioDocumento', '');
BeneficiarioCarteira := IniFile.ReadString('Configuracoes', 'BeneficiarioCarteira', '');
BeneficiarioAgencia := IniFile.ReadString('Configuracoes', 'BeneficiarioAgencia', '');
BeneficiarioConta := IniFile.ReadString('Configuracoes', 'BeneficiarioConta', '');
PagadorDocumento := IniFile.ReadString('Configuracoes', 'PagadorDocumento', '');
PagadorNome := IniFile.ReadString('Configuracoes', 'PagadorNome', '');
PagadorEnderecoRua := IniFile.ReadString('Configuracoes', 'PagadorEnderecoRua', '');
PagadorEnderecoNumero := IniFile.ReadString('Configuracoes', 'PagadorEnderecoNumero', '');
PagadorEnderecoCep := IniFile.ReadString('Configuracoes', 'PagadorEnderecoCep', '');
PagadorEnderecoBairro := IniFile.ReadString('Configuracoes', 'PagadorEnderecoBairro', '');
PagadorEnderecoMunicipio := IniFile.ReadString('Configuracoes', 'PagadorEnderecoMunicipio', '');
PagadorEnderecoUF := IniFile.ReadString('Configuracoes', 'PagadorEnderecoUF', '');
//if IniFile.ReadString('Configuracoes', 'UrlToken', '') <> '' then
// UrlToken := IniFile.ReadString('Configuracoes', 'UrlToken', '');
IniFile.Free;
end;
FHTTP := TIdHTTP.Create;
FIdSSLIOHandlerSocketOpenSSL := TIdSSLIOHandlerSocketOpenSSL.Create(FHTTP);
FIdSSLIOHandlerSocketOpenSSL.SSLOptions.SSLVersions := [sslvTLSv1_2];
FHTTP.IOHandler := FIdSSLIOHandlerSocketOpenSSL;
// FHTTP.CookieManager := TIdCookieManager.Create(FHTTP);
FHTTP.ConnectTimeout := 30000;
FHTTP.HandleRedirects := True;
FHTTP.AllowCookies := True;
FHTTP.RedirectMaximum := 10;
FHTTP.HTTPOptions := [hoForceEncodeParams];
DFeSSL := TDFeSSL.Create();
//ObjACBrEAD := TACBrEAD.Create(nil);
//ObjACBrEAD.OnGetChavePrivada := ACBrEADGetChavePrivada;
ACBrOpenSSLUtils1 := TACBrOpenSSLUtils.Create(Self);
ACBrOpenSSLUtils1.LoadPFXFromFile(ArquivoPFX, SenhaPFX);
end;
procedure TFPrincipal.FormDestroy(Sender: TObject);
begin
DFeSSL.Free;
end;
procedure TFPrincipal.ACBrEADGetChavePrivada(var Chave: string);
var
objStringStream: TStringStream;
begin
objStringStream := TStringStream.Create('');
//objStringStream.LoadFromFile('CERT-TESTE.pem');
Chave := objStringStream.DataString;
end;
procedure TFPrincipal.btnGerarTokenClick(Sender: TObject);
var
jsonHeader, jsonPayload, objJson: TlkJSONobject;
intSegundos, intSegundos1h, intMilisegundos: Int64;
dataAtual: TDateTime;
strHeaderBase64, strPayloadBase64, strResult: string;
strAssinado, strJWS: WideString;
streamHeaderPayload: TStringStream;
xRequestBody: TStringList;
i: Integer;
strJsonHeader, strPayloadBase: string;
begin
InsereLog('Inicio GerarToken');
Agora := Now;
{*** BLOCO FORMATACAO DA DATA DO PAYLOAD***}
dataAtual := AddHoursToDateTime(Agora, 3); //Data Atual UTC
intSegundos := DateTimeToUnix(dataAtual); //Data Atual UTC em Segundos.
intSegundos1h := DateTimeToUnix(AddHoursToDateTime(dataAtual, 1)); //Data Atual UTC em Segundos + Horario 1h
intMilisegundos := DateTimeToUnix(dataAtual) * 1000 + MilliSecondsBetween(dataAtual, Trunc(dataAtual)); //Data Atual UTC em Milisegundos.
{*** FIM BLOCO FORMATACAO DA DATA DO PAYLOAD***}
{*** BLOCO MONTAGEM DO HEADER JSON ***}
jsonHeader := TlkJSONobject.Create;
jsonHeader.Add('alg', 'RS256');
jsonHeader.Add('typ', 'JWT');
i := 0;
strJsonHeader := GenerateReadableText(jsonHeader, i);
strJsonHeader := RemoveCaracterNaoUtilizadoNoJson(strJsonHeader);
strHeaderBase64 := EncodeBase64(strJsonHeader);
strHeaderBase64 := RemoveCaracterIgual(strHeaderBase64);
InsereLog('strJsonHeader ==> ' + strJsonHeader);
{*** FIM BLOCO MONTAGEM DO HEADER JSON ***}
{*** BLOCO MONTAGEM DO PAYLOAD JSON ***}
jsonPayload := TlkJSONobject.Create;
jsonPayload.Add('aud', UrlTokenNoRequest);
jsonPayload.Add('sub', ClienteID);
jsonPayload.Add('iat', Padr(IntToStr(intSegundos), '0', 10));
jsonPayload.Add('exp', Padr(IntToStr(intSegundos1h), '0', 10));
jsonPayload.Add('jti', Padr(IntToStr(intSegundos), '0', 10) + '000');
//jsonPayload.Add('iat', IntToStr(intSegundos));
//jsonPayload.Add('exp', IntToStr(intSegundos1h));
//jsonPayload.Add('jti', IntToStr(intMilisegundos));
jsonPayload.Add('ver', '1.1');
i := 0;
strPayloadBase := GenerateReadableText(jsonPayload, i);
strPayloadBase := RemoveCaracterNaoUtilizadoNoJson(strPayloadBase);
strPayloadBase64 := EncodeBase64(strPayloadBase);
strPayloadBase64 := RemoveCaracterIgual(strPayloadBase64);
InsereLog('strPayloadBase ==> ' + strPayloadBase);
{*** FIM BLOCO MONTAGEM DO PAYLOAD JSON ***}
{*** BLOCO DE ASSINATURA ***}
DFeSSL.SSLCryptLib := cryOpenSSL;
DFeSSL.ArquivoPFX := ArquivoPFX;
DFeSSL.Senha := SenhaPFX;
DFeSSL.CarregarCertificado;
streamHeaderPayload := TStringStream.Create(strHeaderBase64 + '.' + strPayloadBase64); //concatena conforme o manual.
strAssinado := CalcularHash(DFeSSL, streamHeaderPayload); //aqui realiza a assinatura.
strJWS := strHeaderBase64 + '.' + strPayloadBase64 + '.' + strAssinado; //HeaderBase64 + PayloadBase64 + JWT assinado = JWS.
InsereLog('strJWS ==> ' + strJWS);
{*** FIM BLOCO DE ASSINATURA ***}
{*** BLOCO DE MONTAGEM DO BODY ***}
xRequestBody := TStringList.Create;
xRequestBody.Add('grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer');
xRequestBody.Add('assertion=' + strJWS);
{*** FIM BLOCO DE MONTAGEM DO BODY ***}
FHTTP.Request.Clear;
FHTTP.Request.CustomHeaders.Clear;
FHTTP.Request.UserAgent := 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Maxthon; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)';
FHTTP.Request.AcceptCharSet := 'UTF-8, *;q=0.8';
FHTTP.Request.AcceptEncoding := 'gzip, deflate, br';
FHTTP.Request.ContentType := 'application/x-www-form-urlencoded';
FHTTP.Request.BasicAuthentication := False;
try
strResult := FHTTP.Post(UrlToken, xRequestBody);
MemoRespToken.lines.add(strResult);
InsereLog('UrlToken ==> ' + UrlToken);
for i := 0 to xRequestBody.Count - 1 do
InsereLog('xRequestBody ==> ' + xRequestBody[i]);
InsereLog('httpResult ==> ' + strResult);
objJson := TlkJSON.ParseText(strResult) as TlkJSONobject;
//objJson := TJSONObject.ParseJSONValue(TEncoding.UTF8.GetBytes(strResult), 0) as TJSONObject;
if objJson.Field['access_token'] <> nil then
if VarToStr(objJson.Field['access_token'].Value) <> '' then
editToken.Text := VarToStr(objJson.Field['access_token'].Value);
if objJson.Field['expires_in'] <> nil then
if VarToStr(objJson.Field['expires_in'].Value) <> '' then
lblTokenExpira.Caption := VarToStr(objJson.Field['expires_in'].Value);
//if Assigned(objJson.Values['expires_in']) then
// if (objJson.Values['expires_in'].ToString <> EmptyStr) then
// lblTokenExpira.Caption := DateTimeToStr(IncSecond(Now, StrToInt(objJson.Values['expires_in'].ToString)));
except
on E: EIdHTTPProtocolException do
begin
InsereLog('httpResult ==> ' + strResult);
InsereLog('ErrorMessage ==> ' + E.ErrorMessage);
MemoRespToken.Lines.add(E.ErrorMessage);
end;
end;
FreeAndNil(xRequestBody);
InsereLog('Fim GerarToken');
InsereLog('');
end;
procedure TFPrincipal.btnRegistraBoletoClick(Sender: TObject);
var
strResult: string;
strMiliSegundos: string;
strTimeStamp, strObj, strLinha1, strLinha2, strLinha3, strLinha4, strLinha5, strLinha6, strLinha7, strLinha8: string;
dataAtual: TDateTime;
stremRequest: TStringStream;
strRequestAssinado: string;
xRequestBody: TStringStream;
objCriaBoleto: TLibBradescoApiCriaBoleto;
strList: TStringList;
i: Integer;
begin
if editToken.Text = '' then
Exit;
InsereLog('Inicio RegistraBoleto');
{*** BLOCO FORMATACAO DA DATA DO PAYLOAD***}
dataAtual := AddHoursToDateTime(Agora, 3); //Data Atual UTC
strMiliSegundos := Padr(IntToStr(DateTimeToUnix(dataAtual)), '0', 10) + '000'; //Data Atual UTC em Milisegundos.
//intMiliSegundos := DateTimeToUnix(dataAtual) * 1000 + MilliSecondsBetween(dataAtual, Trunc(dataAtual)); //Data Atual UTC em Milisegundos.
strTimeStamp := ConverteDateISO(dataAtual, True);
{*** FIM BLOCO FORMATACAO DA DATA DO PAYLOAD***}
{*** CRIAÇAO DO PAYLOAD DO BOLETO ***}
objCriaBoleto := TLibBradescoApiCriaBoleto.Create; //Classe contento todos os campos do boleto.
objCriaBoleto.Clear;
objCriaBoleto.nroCpfCnpjSacdo := PagadorDocumento; //DOCUMENTO DO CLIENTE.
objCriaBoleto.ialiasAdsaoCta := PagadorDocumento; //DOCUMENTO DO CLIENTE.
if (Length(PagadorDocumento) = 11) then
objCriaBoleto.indCpfCnpjSacdo := 1 //TIPO 1 CPF
else
objCriaBoleto.indCpfCnpjSacdo := 2; //TIPO 1 CPF
objCriaBoleto.nroCpfCnpjBenef := BeneficiarioDocumento;
objCriaBoleto.filCpfCnpjBenef := Copy(BeneficiarioDocumento, 9, 4);
objCriaBoleto.filCpfCnpjBenef := Copy(BeneficiarioDocumento, 12, 2);
objCriaBoleto.isacdoTitloCobr := PagadorNome; //NOME DO CLIENTE
objCriaBoleto.elogdrSacdoTitlo := PagadorEnderecoRua; //RUA.
objCriaBoleto.enroLogdrSacdo := StrToIntDef(PagadorEnderecoNumero, 0); //NUMERO
objCriaBoleto.ccepSacdoTitlo := StrToInt64Def(PagadorEnderecoCep, 0); //CEP
objCriaBoleto.ebairoLogdrSacdo := PagadorEnderecoBairro; //BAIRRO
objCriaBoleto.imunSacdoTitlo := PagadorEnderecoMunicipio; //CIDADE CLIENTE
objCriaBoleto.csglUfSacdo := PagadorEnderecoUF; //UF CLIENTE
objCriaBoleto.demisTitloCobr := FormatDateTime('dd.mm.yyyy', Agora); //'30.08.2023'; //Data Emissão.
objCriaBoleto.dvctoTitloCobr := FormatDateTime('dd.mm.yyyy', AddHoursToDateTime(Agora, 24)); //'31.08.2023'; //Data Vencimento.
strObj := objCriaBoleto.ToString();
//boleto padrão enviado em um modelo de API fornecido pelo banco
strObj := objCriaBoleto.stringApiModeloDoBanco();
InsereLog('strObj');
InsereLog(strObj);
{*** FIM CRIAÇAO DO PAYLOAD DO BOLETO ***}
{*** BLOCO DE ASSINATURA ***}
DFeSSL.SSLCryptLib := cryOpenSSL;
DFeSSL.ArquivoPFX := ArquivoPFX;
DFeSSL.Senha := SenhaPFX;
DFeSSL.CarregarCertificado;
strLinha1 := 'POST' + #10; //Methodo HTTP
strLinha2 := UrlRegBoletoNoRequest + #10; //URI de Requisição
strLinha3 := '' + #10; //Parâmetros. quando houver, se não tem deixa linha em branco.
strLinha4 := strObj + #10; //Json de criação do Boleto que vai no Body.
strLinha5 := editToken.Text + #10; //Access-token retornado da API.
strLinha6 := strMiliSegundos + #10; //Hora Atual em Milisegundos.
strLinha7 := strTimeStamp + #10; //TimeStamp;
strLinha8 := 'SHA256'; //Algoritimo Usado.
//Assinatura conforme o manual
{
if FileExists('request.txt') then
DeleteFile('request.txt');
stremRequest := TStringStream.Create(strLinha1 + strLinha2 + strLinha3 + strLinha4 + strLinha5 + strLinha6 + strLinha7 + strLinha8); //Aqui vai o arquivo para Assinar.
FileStream := TFileStream.Create('request.txt', fmCreate);
try
// Define a posição inicial no TStringStream
stremRequest.Position := 0;
// Copia o conteúdo do TStringStream para o TFileStream
FileStream.CopyFrom(stremRequest, stremRequest.Size);
finally
// Libera a memória usada pelo TFileStream
FileStream.Free;
end;
InsereLog('request.txt');
InsereLog(strLinha1 + strLinha2 + strLinha3 + strLinha4 + strLinha5 + strLinha6 + strLinha7 + strLinha8);
strRequestAssinado := URLEncode(CalcularHashArquivo(DFeSSL, 'request.txt')); //aqui realiza a assinatura.
}
stremRequest := TStringStream.Create(strLinha1 + strLinha2 + strLinha3 + strLinha4 + strLinha5 + strLinha6 + strLinha7 + strLinha8); //Aqui vai o arquivo para Assinar.
strRequestAssinado := CalcularHash(DFeSSL, stremRequest);//aqui realiza a assinatura.
{*** FIM BLOCO DE ASSINATURA ***}
{*** MONTAGEM DO HEADER ***}
FHTTP.Request.Clear;
FHTTP.Request.CustomHeaders.Clear;
FHTTP.Request.UserAgent := 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Maxthon; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)';
FHTTP.Request.Accept := '*/*';
//FHTTP.Request.AcceptCharSet := 'UTF-8, *;q=0.8';
FHTTP.Request.AcceptEncoding := 'gzip, deflate, br';
FHTTP.Request.BasicAuthentication := False;
FHTTP.Request.Connection := 'keep-alive';
{
stremRequest := TStringStream.Create('');
stremRequest.Clear;
stremRequest.LoadFromFile('assinatura.txt');
strRequestAssinado := stremRequest.DataString;
}
FHTTP.Request.CustomHeaders.FoldLines := False;
FHTTP.Request.ContentType := 'application/json';
FHTTP.Request.CustomHeaders.Add('Authorization: Bearer ' + editToken.Text); //TOKEN OBTIDO.
FHTTP.Request.CustomHeaders.Add('X-Brad-Nonce: ' + strMiliSegundos);
FHTTP.Request.CustomHeaders.Add('X-Brad-Signature: ' + strRequestAssinado);
FHTTP.Request.CustomHeaders.Add('X-Brad-Timestamp: ' + strTimeStamp);
FHTTP.Request.CustomHeaders.Add('X-Brad-Algorithm: SHA256');
FHTTP.Request.CustomHeaders.Add('access-token: ' + ClienteID);
FHTTP.Request.CustomHeaders.Add('Content-Type: ' + 'application/json');
FHTTP.Request.CustomHeaders.Add('cpf-cnpj: ' + BeneficiarioDocumento); //CNPJ DA EMPRESA
{*** FIM MONTAGEM DO HEADER ***}
xRequestBody := TStringStream.Create(strObj); //Preenche o Body para enviar no Post.
try
InsereLog('UrlRegBoleto ==> ' + UrlRegBoleto);
for i := 0 to FHTTP.Request.CustomHeaders.Count - 1 do
InsereLog('Headers ==> ' + FHTTP.Request.CustomHeaders[i]);
strResult := FHTTP.Post(UrlRegBoleto, xRequestBody); //Envia.
InsereLog('httpResult ==> ' + strResult);
MemoResp.lines.add(strResult);
except
on E: EIdHTTPProtocolException do
begin
InsereLog('httpResult ==> ' + strResult);
InsereLog('httpError ==> ' + E.ErrorMessage);
MemoResp.Lines.add(E.ErrorMessage);
end;
end;
FreeAndNil(xRequestBody);
FreeAndNil(strList);
//FreeAndNil(streamstr);
InsereLog('Fim RegistraBoleto');
end;
procedure TFPrincipal.btnValidaAcessoClick(Sender: TObject);
var
strResult: string;
strMiliSegundos: string;
strTimeStamp, strLinha1, strLinha2, strLinha3, strLinha4, strLinha5, strLinha6, strLinha7, strLinha8: string;
dataAtual: TDateTime;
stremRequest: TStringStream;
strRequestAssinado, strRequestAssinadoList, strRequestAssinadoStream, strRequestAssinadoAnsiString: string;
xRequestBody: TStringStream;
urlValidaAcesso: string;
FileStream: TFileStream;
i: Integer;
begin
if editToken.Text = '' then
btnGerarToken.Click;
if editToken.Text = '' then
Exit;
InsereLog('Inicio ValidaAcesso');
{*** BLOCO FORMATACAO DA DATA DO PAYLOAD***}
dataAtual := AddHoursToDateTime(Agora, 3); //Data Atual UTC
strMiliSegundos := Padr(IntToStr(DateTimeToUnix(dataAtual)), '0', 10) + '000'; //Data Atual UTC em Milisegundos.
//intMiliSegundos := DateTimeToUnix(dataAtual) * 1000 + MilliSecondsBetween(dataAtual, Trunc(dataAtual)); //Data Atual UTC em Milisegundos.
strTimeStamp := ConverteDateISO(dataAtual, True);
{*** FIM BLOCO FORMATACAO DA DATA DO PAYLOAD***}
{*** BLOCO DE ASSINATURA ***}
DFeSSL.SSLCryptLib := cryOpenSSL;
DFeSSL.ArquivoPFX := ArquivoPFX;
DFeSSL.Senha := SenhaPFX;
DFeSSL.CarregarCertificado;
urlValidaAcesso := 'https://proxy.api.prebanco.com.br/v1.1/jwt-service?agencia=' + BeneficiarioAgencia + '&conta=' + BeneficiarioConta;
strLinha1 := 'POST' + #10; //Methodo HTTP
strLinha2 := '/v1.1/jwt-service' + #10; //URI de Requisição
strLinha3 := 'agencia=' + BeneficiarioAgencia + '&conta=' + BeneficiarioConta + #10; //Parâmetros
strLinha4 := '' + #10; //Body.
strLinha5 := editToken.Text + #10; //Access-token retornado da API.
strLinha6 := strMiliSegundos + #10; //Hora Atual em Milisegundos.
strLinha7 := strTimeStamp + #10; //TimeStamp;
strLinha8 := 'SHA256'; //Algoritimo Usado.
if FileExists('request.txt') then
DeleteFile('request.txt');
stremRequest := TStringStream.Create(strLinha1 + strLinha2 + strLinha3 + strLinha4 + strLinha5 + strLinha6 + strLinha7 + strLinha8); //Aqui vai o arquivo para Assinar.
FileStream := TFileStream.Create('request.txt', fmCreate);
try
// Define a posição inicial no TStringStream
stremRequest.Position := 0;
// Copia o conteúdo do TStringStream para o TFileStream
FileStream.CopyFrom(stremRequest, stremRequest.Size);
finally
// Libera a memória usada pelo TFileStream
FileStream.Free;
end;
strRequestAssinado := URLEncode(CalcularHashArquivo(DFeSSL, 'request.txt')); //aqui realiza a assinatura.
{*** FIM BLOCO DE ASSINATURA ***}
{*** MONTAGEM DO HEADER ***}
FHTTP.Request.Clear;
FHTTP.Request.CustomHeaders.Clear;
FHTTP.Request.UserAgent := 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Maxthon; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)';
FHTTP.Request.Accept := '*/*';
FHTTP.Request.AcceptEncoding := 'gzip, deflate, br';
FHTTP.Request.BasicAuthentication := False;
FHTTP.Request.Connection := 'keep-alive';
FHTTP.Request.CustomHeaders.FoldLines := False;
FHTTP.Request.ContentType := 'application/json';
FHTTP.Request.CustomHeaders.Add('Authorization: Bearer ' + editToken.Text); //TOKEN OBTIDO.
FHTTP.Request.CustomHeaders.Add('X-Brad-Nonce: ' + strMiliSegundos);
FHTTP.Request.CustomHeaders.Add('X-Brad-Signature: ' + strRequestAssinado);
FHTTP.Request.CustomHeaders.Add('X-Brad-Timestamp: ' + strTimeStamp);
FHTTP.Request.CustomHeaders.Add('X-Brad-Algorithm: SHA256');
FHTTP.Request.CustomHeaders.Add('access-token: ' + ClienteID);
FHTTP.Request.CustomHeaders.Add('Content-Type: ' + 'application/json');
{*** FIM MONTAGEM DO HEADER ***}
InsereLog('HTTP Headers');
InsereLog(FHTTP.Request.CustomHeaders.Text);
xRequestBody := TStringStream.Create(''); //Preenche o Body para enviar no Post.
try
InsereLog('urlValidaAcesso ==> ' + urlValidaAcesso);
for i := 0 to FHTTP.Request.CustomHeaders.Count - 1 do
InsereLog('Headers ==> ' + FHTTP.Request.CustomHeaders[i]);
strResult := FHTTP.Post(urlValidaAcesso, xRequestBody); //Envia.
InsereLog('httpResult ==> ' + strResult);
MemoResp.lines.add(strResult);
//objJson := TlkJSON.ParseText(strResult) as TlkJSONobject;
except
on E: Exception do
begin
InsereLog('httpResult ==> ' + strResult);
InsereLog('httpError ==> ' + E.Message);
MemoResp.Lines.add(E.Message);
end;
end;
FreeAndNil(xRequestBody);
InsereLog('Fim ValidaAcesso');
end;
end.