-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTransaction.php
677 lines (462 loc) · 13.5 KB
/
Transaction.php
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
<?php
namespace redecard_php;
/**
*
* @author Demetrius Feijoo Campos
* @link http://www.operabacana.com.br
* @version 0.1v
*
*/
class Transaction {
private $filiacao;
private $total;
private $tipoTransacao;
private $parcelas;
private $numPedido;
private $numCartao;
private $cvc2;
private $mes;
private $ano;
private $portador;
private $iata;
private $distribuidor;
private $concentrador;
private $taxaEmbarque;
private $entrada;
private $numDoc = array();
private $pax = array();
private $confTXN;
private $addData;
CONST URL_AMBIENTE_PRODUCAO = "https://ecommerce.redecard.com.br/pos_virtual/wskomerci/cap.asmx/";
CONST URL_AMBIENTE_TESTE = "https://ecommerce.redecard.com.br/pos_virtual/wskomerci/cap_teste.asmx/";
CONST OPERACAO_AUTORIZACAO = "GetAuthorized";
public function __construct(){
}
/**
* @return string
*/
public function __toString(){
return "";
}
public function __clone(){
}
/**
* @return the $filiacao
*/
public function getFiliacao(){
return $this -> filiacao;
}
/**
* @return the $valor
*/
public function getTotal(){
return $this -> total;
}
/**
* @return $transacao
*/
public function getTipoTransacao(){
return $this -> tipoTransacao;
}
/**
* @return the $parcelas
*/
public function getParcelas() {
return $this->parcelas;
}
/**
* @return the $numeroPedido
*/
public function getNumPedido() {
return $this->numPedido;
}
/**
* @return the $numeroCartao
*/
public function getNumCartao() {
return $this->numCartao;
}
/**
* @return the $cvc
*/
public function getCVC2() {
return $this->cvc2;
}
/**
* @return the $mes
*/
public function getMes() {
return $this->mes;
}
/**
* @return the $ano
*/
public function getAno() {
return $this->ano;
}
/**
* @return the $portador
*/
public function getPortador() {
return $this->portador;
}
/**
* @return the $iata
*/
public function getIata() {
return $this->iata;
}
/**
* @return the $distribuidor
*/
public function getDistribuidor() {
return $this->distribuidor;
}
/**
* @return the $concentrador
*/
public function getConcentrador() {
return $this->concentrador;
}
/**
* @return the $taxaEmbarque
*/
public function getTaxaEmbarque() {
return $this->taxaEmbarque;
}
/**
* @return the $entrada
*/
public function getEntrada() {
return $this->entrada;
}
/**
* @return the $numDoc
*/
public function getNumDoc() {
return $this->numDoc;
}
/**
* @return the $pax
*/
public function getPax() {
return $this->pax;
}
/**
* @return the $confTXN
*/
public function getConfTXN() {
return $this->confTXN;
}
/**
* @return the $addData
*/
public function getAddData() {
return $this->addData;
}
/**
* Codigo de filiacao da loja na redecard.
*
* @param String filiacaoo
* @throws \InvalidArgumentException
*/
public function setFiliacao( $filiacao ){
if( empty($filiacao) ){
throw new \InvalidArgumentException( "O parametro filiacao nao pode ser nulo." );
}
$this -> filiacao = $filiacao;
}
/**
* Seta o valor total da transacao.
* @param double total
* @throws \InvalidArgumentException
*/
public function setTotal( $total ){
if( $total <= 0.0 ){
throw new \InvalidArgumentException( sprintf("O parametro passado para o metodo %s devera ser um numero maior que zero. ", __METHOD__) );
}
$this -> total = number_format($total, 2, ".", "");
}
/**
* Tipos de transacoes:
* 04 - A vista
* 06 - Parcelado emissor
* 08 - Parcelado estabelecimento
* 73 - Pre-autorizacao
* 39 - IATA a vista
* 40 - IATA parcelado
*
* @param String $tipo
* @throws \InvalidArgumentException
*/
public function setTipoTransacao( $tipo ){
if( $tipo != "04" && $tipo != "06" && $tipo != "08" && $tipo != "73" && $tipo != "39" && $tipo != "40" ){
throw new \InvalidArgumentException( sprintf( "O parametro passado para o metodo %s devera ser igual a 04, 06, 08, 73, 39 ou 40!" , __METHOD__) );
}
$this->tipoTransacao = (String) $tipo;
}
/**
* Numero de parcelas da transacao.
* Antes de colocar a quantidade de parcelas e preciso colocar um tipo de transacao.
* Esse metodo so pode receber vazio ou 0 quando o tipo de transacao for a vista, ou seja, tipo de transacao 04 ou 39.
*
* @param String $parcelas
* @throws \RuntimeException
*/
public function setParcelas($parcelas) {
if( ( (empty($parcelas) || $parcelas == "00") && $this -> getTipoTransacao() != "04" && $this -> getTipoTransacao() != "39" ) ){
throw new \InvalidArgumentException( "O valor das parcelas nao pode ser vazio quando o tipo de transacao nao e a vista!" );
}else{
$transacaoVal = $this -> getTipoTransacao();
if( empty($transacaoVal) ){
throw new \InvalidArgumentException( "Primeiro e necessario setar o tipo de transacao." );
}
}
$this->parcelas = $parcelas;
}
/**
* O numPedido e o numero do pedido gerado pelo estabelecimento.
* O numPedido nao pode ser vazio ou ter mais que 16 caracteres.
*
* @param String $numeroPedido
* @throws \InvalidArgumentException
*/
public function setNumPedido($numeroPedido) {
if( empty($numeroPedido) || strlen($numeroPedido) > 16 ){
throw new \InvalidArgumentException("O numero do pedido nao pode ser vazio ou ter mais que 16 caracteres");
}
$this->numPedido = $numeroPedido;
}
/**
* Deve conter o numero do cartao de credito do portador, podendo ser MasterCard, Diners ou Visa. Nao sao aceitos cartoes de Debito.
* O numCartao nao pode ser vazio ou ter mais que 16 caracteres.
*
* @param String $numeroCartao
* @throws \InvalidArgumentException
*/
public function setNumCartao($numeroCartao) {
if( empty($numeroCartao) || strlen($numeroCartao) > 16){
throw new \InvalidArgumentException(" O numero do cartao nao pode ser vazio ou ter mais que 16 caracteres");
}
$this->numCartao = $numeroCartao;
}
/**
* Este parametro e obrigatorio com excecao dos estabelecimentos que trabalham no seguinte seguimento de venda recorrente.
* Este parametro deve possuir 3 caracteres.
*
* @param int cvc2c
* @throws \InvalidArgumentException
*/
public function setCVC2($cvc2) {
if( strlen($cvc2) != 3 ){
throw new \InvalidArgumentException("O CVC2 deve possuir exatamente 3 caracteres");
}
$this->cvc2 = $cvc2;
}
/**
* Mes de validade do cartao.
* Deve possuir o formato mm.
* Exemplo: 01 para Janeiro e 12 para Dezembro.
*
* @param String $mes
* @throws \InvalidArgumentException
*/
public function setMes($mes) {
$arrayMesesValidos = array("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12");
if( !in_array($mes, $arrayMesesValidos) ){
throw new \InvalidArgumentException("O Mes passado e invalido. Ele deve possuir o seguinte formato mm. Exemplo: 01 para Janeiro e 12 para Dezembro. ");
}
$this->mes = $mes;
}
/**
* Ano de validade do carto.
* Deve possuir formato yyyy e ser maior ou igual ao ano atual.
* Exemplo: 1999, so que maior ou igual ao ano atual.
*
* @param String $ano
* @throws \InvalidArgumentException
*/
public function setAno($ano) {
if( $ano < date('Y') ){
throw new \InvalidArgumentException("O Ano passado e invalido. Ele deve possuir o seguinte formato yyyy e ser maior ou igual ao ano atual. Exemplo: ".date('Y'));
}
$this->ano = $ano;
}
/**
* Devera conter o nome do portador da forma que foi informado por ele.
* O nome do portador nao pode ser maior que 50 caracteres.
* Este parametro nao e validade pelo emissor do cartao.
*
* @param String $portador
* @throws \InvalidArgumentException
*/
public function setPortador($portador) {
if( strlen($portador) > 50 ){
throw new \InvalidArgumentException("O nome do portador nao ser maior que 50 caracteres.");
}
$this->portador = $portador;
}
/**
* @param String $iata
*/
public function setIata($iata) {
$this->iata = $iata;
}
/**
* @param String $distribuidor
*/
public function setDistribuidor($distribuidor) {
$this->distribuidor = $distribuidor;
}
/**
* @param String $concentrador
*/
public function setConcentrador($concentrador) {
$this->concentrador = $concentrador;
}
/**
* @param String $taxaEmbarque
*/
public function setTaxaEmbarque($taxaEmbarque) {
$this->taxaEmbarque = $taxaEmbarque;
}
/**
* @param String $entrada
*/
public function setEntrada($entrada) {
$this->entrada = $entrada;
}
/**
* @param multitype: $numDoc
*/
public function setNumDoc($numDoc) {
$this->numDoc = $numDoc;
}
/**
* @param multitype: $pax
*/
public function setPax($pax) {
$this->pax = $pax;
}
/**
* @param String $confTXN
*/
public function setConfTXN($confTXN) {
$this->confTXN = (int) $confTXN;
}
/**
* @param String $addData
*/
public function setAddData($addData) {
$this->addData = $addData;
}
/**
* Verifica se todos os campos estao devidamente preenchidos.
* O endereço que faz a requisicao a esse metodo devera estar em HTTPS, caso contrario nao funcionara.
* Caso tudo ocorra perfeitamente, um xml sera retornado. Caso nao ocorra sera retornado null.
*
* @throws \BadMethodCallException
* @return \SimpleXMLElement
*/
public function consultaAutorizacao(){
$eValida = $this -> validaAutorizacao();
$ambienteSeguro = $this->isAmbienteSeguro();
if($ambienteSeguro){
if($eValida){
$ch = curl_init(self::URL_AMBIENTE_PRODUCAO.self::OPERACAO_AUTORIZACAO);
curl_setopt( $ch , CURLOPT_POST , 1 );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt( $ch , CURLOPT_POSTFIELDS , $this -> montaQueryAutorizacao() );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$resposta = curl_exec($ch);
curl_close($ch);
return simplexml_load_string($resposta);
}
}else{
throw new \BadMethodCallException("A Url do script que invoca esse metodo precisa estar em protocolo seguro(HTTPS)!");
}
return null;
}
private function validaAutorizacao(){
$formatoMsgError = "O metodo ".__METHOD__." nao pode ser chamado sem ter antes ter setado valores para os campos: %s ";
$metodoTestado = "";
$parcelas = $this -> getParcelas();
if( $this -> getFiliacao() == "" ){
$metodoTestado .= " 'filiacao' ";
}
if( $this -> getTotal() == "" ){
$metodoTestado .= " 'total' ";
}
if( $this -> getTipoTransacao() == "" ){
$metodoTestado .= " 'tipo transacao' ";
}
if( empty($parcelas) && $this -> getTipoTransacao() != "04" && $this -> getTipoTransacao() != "39" ){
$metodoTestado .= " 'parcelas' ";
}
if( $this -> getNumPedido() == "" ){
$metodoTestado .= " 'numpedido' ";
}
if( $this -> getNumCartao() == "" ){
$metodoTestado .= " 'numcartao' ";
}
if( !$this -> isDataValidadeValida() ){
$metodoTestado .= " 'data de validade' ";
}
if(!empty($metodoTestado) ){
throw new \BadMethodCallException(sprintf($formatoMsgError, $metodoTestado));
}else{
return TRUE;
}
}
/**
* Uma requisicao so pode ser feita para a Redecard utilizando protocolo seguro.
* @return boolean
*/
private function isAmbienteSeguro(){
return isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != "" && $_SERVER['HTTPS'] != "off";
}
private function isDataValidadeValida(){
$dataValidade = mktime(null, null, null, $this -> getMes(), null, $this->getAno());
$dataAtual = mktime(null, null, null, date('m'), null, date('Y'));
return $dataValidade >= $dataAtual;
}
private function montaQueryAutorizacao(){
$arrayNumDoc = $this -> getNumDoc();
$arrayPax = $this -> getPax();
$parcelas = $this -> getParcelas();
$arrayParametros = array();
$arrayParametros['FILIACAO'] = $this -> getFiliacao();
$arrayParametros['TOTAL'] = $this -> getTotal();
$arrayParametros['TRANSACAO'] = $this -> getTipoTransacao();
$arrayParametros['PARCELAS'] = empty($parcelas) ? "0" : $parcelas;
$arrayParametros['NUMPEDIDO'] = $this -> getNumPedido();
$arrayParametros['NRCARTAO'] = $this -> getNumCartao();
$arrayParametros['CVC2'] = $this -> getCVC2();
$arrayParametros['MES'] = $this -> getMes();
$arrayParametros['ANO'] = $this -> getAno();
$arrayParametros['PORTADOR'] = $this -> getPortador();
$arrayParametros['IATA'] = $this -> getIata();
$arrayParametros['DISTRIBUIDOR'] = $this -> getDistribuidor();
$arrayParametros['CONCENTRADOR'] = $this -> getConcentrador();
$arrayParametros['TAXAEMBARQUE'] = $this -> getTaxaEmbarque();
$arrayParametros['ENTRADA'] = $this -> getEntrada();
$arrayParametros['NUMDOC1'] = $arrayNumDoc[0];
$arrayParametros['NUMDOC2'] = $arrayNumDoc[1];
$arrayParametros['NUMDOC3'] = $arrayNumDoc[2];
$arrayParametros['NUMDOC4'] = $arrayNumDoc[3];
$arrayParametros['PAX1'] = $arrayPax[0];
$arrayParametros['PAX2'] = $arrayPax[1];
$arrayParametros['PAX3'] = $arrayPax[2];
$arrayParametros['PAX4'] = $arrayPax[3];
$arrayParametros['CONFTXN'] = $this -> getConfTXN();
$arrayParametros['AddData'] = $this -> getAddData();
$arrayParametros['Add_Data'] = $this -> getAddData();
$queryString = "";
foreach( $arrayParametros as $ind => $valor ){
$queryString .= "$ind=$valor&";
}
$queryString = trim($queryString);
return $queryString;
}
}
?>