forked from gerencianet/gn-api-whmcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gerencianetcharge.php
executable file
·479 lines (400 loc) · 22.5 KB
/
gerencianetcharge.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
<?php
include_once 'gerencianet_lib/Gerencianet_WHMCS_Interface.php';
function gerencianetcharge_config()
{
$configarray = array(
"FriendlyName" => array(
"Type" => "System",
"Value" => "Gerencianet via Boleto"
),
"clientIDProd" => array(
"FriendlyName" => "Client_Id Produção (*)",
"Type" => "text",
"Size" => "50",
"Description" => " (preenchimento obrigatório)",
),
"clientSecretProd" => array(
"FriendlyName" => "Client_Secret Produção (*)",
"Type" => "text",
"Size" => "54",
"Description" => " (preenchimento obrigatório)",
),
"clientIDDev" => array(
"FriendlyName" => "Client_Id Desenvolvimento (*)",
"Type" => "text",
"Size" => "50",
"Description" => " (preenchimento obrigatório)",
),
"clientSecretDev" => array(
"FriendlyName" => "Client_Secret Desenvolvimento (*)",
"Type" => "text",
"Size" => "54",
"Description" => " (preenchimento obrigatório)",
),
"idConta" => array(
"FriendlyName" => "Identificador da Conta (*)",
"Type" => "text",
"Size" => "32",
"Description" => " (preenchimento obrigatório)",
),
"whmcsAdmin" => array(
"FriendlyName" => "Usuario administrador do WHMCS (*)",
"Type" => "text",
"Description" => "Insira o nome do usuário administrador do WHMCS.",
"Description" => " (preenchimento obrigatório)",
),
"descontoBoleto" => array(
"FriendlyName" => "Desconto do Boleto",
"Type" => "text",
"Description" => "Desconto para pagamentos no boleto bancário.",
),
"tipoDesconto" => array(
'FriendlyName' => 'Tipo de desconto',
'Type' => 'dropdown',
'Options' => array(
'1' => '% (Porcentagem)',
'2' => 'R$ (Reais)',
),
'Description' => 'Escolha a forma do desconto: Porcentagem ou em Reais',
),
"numDiasParaVencimento" => array(
"FriendlyName" => "Número de dias para o vencimento da cobrança",
"Type" => "text",
"Description" => "Número de dias corridos para o vencimento da cobrança depois que a mesma foi gerada",
),
"documentField" => array(
"FriendlyName" => "Nome do campo referente à CPF e/ou CNPJ (*)",
"Type" => "text",
"Description" => "Informe o nome do campo referente à CPF e/ou CNPJ no seu WHMCS. (preenchimento obrigatório)",
),
"configSandbox" => array(
"FriendlyName" => "Sandbox",
"Type" => "yesno",
"Description" => "Habilita o ambiente de testes da API Gerencianet",
),
"configDebug" => array(
"FriendlyName" => "Debug",
"Type" => "yesno",
"Description" => "Habilita logs de transação e de erros referentes à integração da API Gerencianet com o WHMCS",
),
"sendEmailGN" => array(
"FriendlyName" => "Email de cobraça - Gerencianet",
"Type" => "yesno",
"Description" => "Marque esta opção se você deseja que a Gerencianet envie emails de transações para o cliente final",
),
"fineValue" => array(
"FriendlyName" => "Configuração de Multa",
'Type' => 'text',
"Description" => "Valor da multa se pago após o vencimento - informe em porcentagem (mínimo 0,01% e máximo 10%).",
),
"interestValue" => array(
"FriendlyName" => "Configuração de Juros",
'Type' => 'text',
"Description" => "Valor de juros por dia se pago após o vencimento - informe em porcentagem (mínimo 0,001% e máximo 0,33%).",
),
"message" => array(
'FriendlyName' => 'Observação',
'Type' => 'text',
'Size' => '80',
'Description' => 'Permite incluir no boleto uma mensagem para o cliente (máximo de 80 caracteres).',
),
);
return $configarray;
}
function gerencianetcharge_link($params)
{
$geraCharge = false;
if (isset($_POST['geraCharge']))
$geraCharge = $_POST['geraCharge'];
/* **************************************** Verifica se a versão do PHP é compatível com a API ******************************** */
if (version_compare(PHP_VERSION, '7.3') < 0) {
$errorMsg = 'A versão do PHP do servidor onde o WHMCS está hospedado não é compatível com o módulo Gerencianet. Atualize o PHP para uma versão igual ou superior à versão 5.4.39';
if ($params['configDebug'] == "on")
logTransaction('gerencianetcharge', $errorMsg, 'Erro de Versão');
return send_errors(array('Erro Inesperado: Ocorreu um erro inesperado. Entre em contato com o responsável do WHMCS.'));
}
/* ***************************************************** Includes e captura do invoice **************************************** */
include_once 'gerencianet_lib/GerencianetIntegration.php';
include_once 'gerencianet_lib/GerencianetValidation.php';
$invoiceId = $params['invoiceid'];
$urlCallback = $params['systemurl'] . 'modules/gateways/callback/gerencianetcharge.php';
/* ************************************************ Define mensagens de erro ***************************************************/
$validations = new GerencianetValidation();
$errorMessages = array();
define("NAME_ERROR_MESSAGE", "Nome Inválido: O nome é muito curto. Você deve digitar seu nome completo.");
define("EMAIL_ERROR_MESSAGE", "Email Inválido: O email informado é inválido ou não existe.");
define("BIRTHDATE_ERROR_MESSAGE", "Data de nascimento Inválida: A data de nascimento informada deve seguir o padrão Ano-mes-dia.");
define("PHONENUMBER_ERROR_MESSAGE", "Telefone Inválido: O telefone informado não existe ou o DDD está incorreto.");
define("DOCUMENT_NULL_ERROR_MESSAGE", "Documento Nulo: O campo referente à CPF e/ou CNPJ não existe ou não está preenchido.");
define("CPF_ERROR_MESSAGE", "Documento Inválido: O número do CPF do cliente é invalido.");
define("CNPJ_ERROR_MESSAGE", "Documento Inválido: O número do CNPJ do cliente é invalido.");
define("CORPORATE_ERROR_MESSAGE", "Razão Social Inválida: O nome da empresa é inválido. Você deve digitar no campo \"Empresa\" de seu WHMCS o nome que consta na Receita Federal.");
define("CORPORATE_NULL_ERROR_MESSAGE", "Razao Social Nula: O campo \"Empresa\" de seu WHMCS não está preenchido.");
define("INTEGRATION_ERROR_MESSAGE", "Erro Inesperado: Ocorreu um erro inesperado. Entre em contato com o responsável do WHMCS.");
/* ******************************************** Gateway Configuration Parameters ******************************************* */
$clientIDProd = $params['clientIDProd'];
$clientSecretProd = $params['clientSecretProd'];
$clientIDDev = $params['clientIDDev'];
$clientSecretDev = $params['clientSecretDev'];
$idConta = $params['idConta'];
$descontoBoleto = $params['descontoBoleto'];
$tipoDesconto = $params['tipoDesconto'];
$numDiasParaVencimento = $params['numDiasParaVencimento'];
$documentField = $params['documentField'];
$minValue = 5; //Valor mínimo de emissão de boleto na Gerencianet
$configSandbox = $params['configSandbox'];
$configDebug = $params['configDebug'];
$configVencimento = $params['configVencimento'];
$sendEmailGN = $params['sendEmailGN'];
$fineValue = $params['fineValue'];
$interestValue = $params['interestValue'];
$billetMessage = $params['message'];
$adminWHMCS = $params['whmcsAdmin'];
if ($adminWHMCS == '' || $adminWHMCS == null) {
array_push($errorMessages, INTEGRATION_ERROR_MESSAGE);
if ($configDebug == "on")
logTransaction('gerencianetcharge', 'O campo - Usuario administrador do WHMCS - está preenchido incorretamente', 'Erro de Integração');
return send_errors($errorMessages);
}
/* ***************************** Verifica se já existe um boleto para o pedido em questão *********************************** */
$gnIntegration = new GerencianetIntegration($clientIDProd, $clientSecretProd, $clientIDDev, $clientSecretDev, $configSandbox, $idConta);
$getTransactionValues['invoiceid'] = $invoiceId;
$transactionData = localAPI("gettransactions", $getTransactionValues, $adminWHMCS);
$totalTransactions = $transactionData['totalresults'];
$existCharge = false;
if ($totalTransactions > 0) {
$lastTransaction = end($transactionData['transactions']['transaction']);
$transactionId = (string)$lastTransaction['id'];
$chargeId = (int)$lastTransaction['transid'];
$chargeDetailsJson = $gnIntegration->detail_charge($chargeId);
$chargeDetails = json_decode($chargeDetailsJson, true);
if ($chargeDetails['code'] == 200) {
$existCharge = true;
if (isset($chargeDetails['data']['payment']['banking_billet']['pdf']['charge'])) {
$url = $chargeDetails['data']['payment']['banking_billet']['pdf']['charge'];
$code = buttonGerencianet(null, $url);
return $code;
}
}
}
$invoiceDescription = $params['description'];
$invoiceAmount = $params['amount'];
if ($invoiceAmount < $minValue) {
$limitMsg = "<div id=limit-value-msg style='font-weight:bold; color:#cc0000;'>Transação Não permitida: Você está tentando pagar uma fatura de<br> R$ $invoiceAmount. Para gerar o boleto Gerencianet, o valor mínimo do pedido deve ser de R$ $minValue</div>";
return $limitMsg;
}
if ($geraCharge == true) {
/* ************************************************* Invoice parameters *************************************************** */
$invoiceValues['invoiceid'] = $invoiceId;
$invoiceData = localAPI("getinvoice", $invoiceValues, $adminWHMCS);
/* ***************************************** Calcula data de vencimento do boleto **************************************** */
if ($numDiasParaVencimento == null || $numDiasParaVencimento == '')
$numDiasParaVencimento = '0';
$userId = $invoiceData['userid'];
$duedate = $invoiceData['duedate'];
if ($duedate < date('Y-m-d'))
$duedate = date('Y-m-d');
$date = DateTime::createFromFormat('Y-m-d', $duedate);
$date->add(new DateInterval('P' . (string)$numDiasParaVencimento . 'D'));
$newDueDate = (string)$date->format('Y-m-d');
/* *********************************************** Coleta dados dos itens ************************************************* */
$valueDiscountWHMCS = 0;
$percentageDiscountWHMCS = 0;
$invoiceItems = $invoiceData['items']['item'];
$invoiceTax = (double)$invoiceData['tax'];
$invoiceTax2 = (double)$invoiceData['tax2'];
$totalItem = 0;
$totalTaxes = 0;
$items = array();
foreach ($invoiceItems as $invoiceItem) {
if ((double)$invoiceItem['amount'] > 0) {
$itemValue = number_format($invoiceItem['amount'], 2, '.', '');
$itemValue = preg_replace("/[.,-]/", "", $itemValue);
$item = array(
'name' => str_replace("'", "", $invoiceItem['description']),
'amount' => 1,
'value' => (int)$itemValue
);
array_push($items, $item);
$totalItem += (double)$invoiceItem['amount'];
} else {
$valueDiscountWHMCS += (double)$invoiceItem['amount'];
}
}
if ($invoiceTax > 0) {
$totalTaxes += (double)$invoiceTax;
$item = array(
'name' => 'Taxa 1: Taxa adicional do WHMCS',
'amount' => 1,
'value' => (int)($invoiceTax * 100)
);
array_push($items, $item);
}
if ($invoiceTax2 > 0) {
$totalTaxes += (double)$invoiceTax2;
$item = array(
'name' => 'Taxa 2: Taxa adicional do WHMCS',
'amount' => 1,
'value' => (int)($invoiceTax2 * 100)
);
array_push($items, $item);
}
$valueDiscountWHMCSFormated = number_format($valueDiscountWHMCS, 2, '.', '');
$valueDiscountWHMCSinCents = preg_replace("/[.,-]/", "", $valueDiscountWHMCSFormated);
$percentageDiscountWHMCS = ((100 * $valueDiscountWHMCS) / $totalItem);
$percentageDiscountWHMCS = number_format($percentageDiscountWHMCS, 2, '.', '');
$percentageDiscountWHMCS = preg_replace("/[.,-]/", "", $percentageDiscountWHMCS);
/* ***************************************** Calcula desconto do boleto e do WHMCS ******************************************* */
$discount = false;
$discountWHMCS = 0;
$invoiceCredit = (int)(number_format((double)$invoiceData['credit'], 2, '.', '') * 100);
$descontoBoleto = number_format((double)$descontoBoleto, 2, '.', '');
if ($tipoDesconto == '1')
$discounGerencianet = ((double)$descontoBoleto / 100) * $totalItem;
else
$discounGerencianet = (double)$descontoBoleto;
$discounGerencianetFormated = number_format($discounGerencianet, 2, '.', '');
$discounGerencianetinCents = (double)$discounGerencianetFormated * 100;
$discountValue = $discounGerencianetinCents + $valueDiscountWHMCSinCents + $invoiceCredit;
$discountInReals = (double)$discounGerencianetFormated + (double)$valueDiscountWHMCSFormated + (double)$invoiceData['credit'];
if ($discountValue > 0)
$discount = array(
'type' => 'currency',
'value' => (int)$discountValue
);
$invoiceTotalInReals = (double)$totalItem - $discountInReals + $totalTaxes;
/* ********************************************* Coleta os dados do cliente ************************************************* */
$clientId = $params['clientdetails']['id'];
$document = preg_replace("/[^0-9]/", "", get_custom_field_value((string)"CPF/CNPJ", $clientId));
$corporateName = $params['clientdetails']['companyname'];
$name = $params['clientdetails']['firstname'] . ' ' . $params['clientdetails']['lastname'];
$phone = preg_replace('/[^0-9]/', '', $params['clientdetails']['phonenumber']);
$email = $params['clientdetails']['email'];
if ($document == null || $document == '')
array_push($errorMessages, DOCUMENT_NULL_ERROR_MESSAGE);
else {
if (strlen($document) <= 11) {
$isJuridica = false;
if (!$validations->_cpf($document))
array_push($errorMessages, CPF_ERROR_MESSAGE);
if (!$validations->_name($name))
array_push($errorMessages, NAME_ERROR_MESSAGE);
} else {
$isJuridica = true;
if (!$validations->_cnpj($document))
array_push($errorMessages, CNPJ_ERROR_MESSAGE);
if ($corporateName == null || $corporateName == '')
array_push($errorMessages, CORPORATE_NULL_ERROR_MESSAGE);
elseif (!$validations->_corporate($corporateName))
array_push($errorMessages, CORPORATE_ERROR_MESSAGE);
}
}
if (!$validations->_phone_number($phone))
array_push($errorMessages, PHONENUMBER_ERROR_MESSAGE);
if (!$validations->_email($email))
array_push($errorMessages, EMAIL_ERROR_MESSAGE);
if ($isJuridica == false) {
if ($sendEmailGN == "on")
$customer = array(
'name' => $name,
'cpf' => (string)$document,
'email' => $email,
'phone_number' => $phone
);
else
$customer = array(
'name' => $name,
'cpf' => (string)$document,
'phone_number' => $phone
);
} else {
$juridical_data = array(
'corporate_name' => (string)$corporateName,
'cnpj' => (string)$document
);
if ($sendEmailGN == "on")
$customer = array(
'email' => $email,
'phone_number' => $phone,
'juridical_person' => $juridical_data
);
else
$customer = array(
'phone_number' => $phone,
'juridical_person' => $juridical_data
);
}
/* *********************************************** Multa, juros e observação no boleto ******************************************** */
$fineValue = preg_replace("/[,]/", ".", $fineValue);
$fineValue = preg_replace("/[%]/", "", $fineValue);
$fineValue = number_format($fineValue, 2, '.', '');
$fineValue = (int)preg_replace("/[.,-]/", "", $fineValue);
$interestValue = preg_replace("/[,]/", ".", $interestValue);
$interestValue = preg_replace("/[%]/", "", $interestValue);
$interestValue = number_format($interestValue, 3, '.', '');
$interestValue = (int)preg_replace("/[.,-]/", "", $interestValue);
/* ******************************************************* Gera a charge e o boleto ************************************************ */
if (empty($errorMessages)) {
$permitionToPay = true;
$resultCheck = array();
if ($existCharge == false) {
$gnApiResult = $gnIntegration->create_charge($items, $invoiceId, $urlCallback);
$resultCheck = json_decode($gnApiResult, true);
if ($resultCheck['code'] != 0) {
$chargeId = $resultCheck['data']['charge_id'];
$addTransactionCommand = "addtransaction";
$addTransactionValues['userid'] = $userId;
$addTransactionValues['invoiceid'] = $invoiceId;
$addTransactionValues['description'] = "Boleto Gerencianet: Cobrança gerada.";
$addTransactionValues['amountin'] = '0.00';
$addTransactionValues['fees'] = '0.00';
$addTransactionValues['paymentmethod'] = 'gerencianetcharge';
$addTransactionValues['transid'] = (string)$chargeId;
$addTransactionValues['date'] = date('d/m/Y');
$addtransresults = localAPI($addTransactionCommand, $addTransactionValues, $adminWHMCS);
$permitionToPay = true;
} else
$permitionToPay = false;
}
if ($permitionToPay == true) {
$resultPayment = $gnIntegration->pay_billet($chargeId, $newDueDate, $customer, $billetMessage, $fineValue, $interestValue, $discount);
$resultPaymentDecoded = json_decode($resultPayment, true);
if ($resultPaymentDecoded['code'] != 0) {
$getTransactionValues['invoiceid'] = $invoiceId;
$transactionData = localAPI("gettransactions", $getTransactionValues, $adminWHMCS);
$lastTransaction = end($transactionData['transactions']['transaction']);
$transactionId = (string)$lastTransaction['id'];
$data = $resultPaymentDecoded['data'];
$chargeId = $data["charge_id"];
$url = (string)$data['pdf']['charge'];
$updateTransactionCommand = "updatetransaction";
$updateTransactionValues['transactionid'] = $transactionId;
$updateTransactionValues['description'] = "Boleto Gerencianet: Cobrança aguardando pagamento.";
$updatetransresults = localAPI($updateTransactionCommand, $updateTransactionValues, $adminWHMCS);
$code = "<meta http-equiv='refresh' content='0;url=" . $resultPaymentDecoded["data"]['pdf']['charge'] . "'>";
return $code;
} else {
array_push($errorMessages, $resultPaymentDecoded['message']);
if ($configDebug == "on")
logTransaction('gerencianetcharge', array('invoiceid' => $invoiceId, 'charge_id' => $chargeId, 'error' => $resultPaymentDecoded['messageAdmin']), 'Erro Gerencianet: Geração do boleto');
return send_errors($errorMessages);
}
} else {
array_push($errorMessages, $resultCheck['message']);
if ($configDebug == "on")
logTransaction('gerencianetcharge', array('invoiceid' => $invoiceId, 'error' => $resultCheck['messageAdmin']), 'Erro Gerencianet: Geração da cobrança');
return send_errors($errorMessages);
}
} else {
$validationErrors = array('invoiceid' => $invoiceId);
foreach ($errorMessages as $error) {
array_push($validationErrors, $error);
}
if ($configDebug == "on")
logTransaction('gerencianetcharge', $validationErrors, 'Erro Gerencianet: Validação');
return send_errors($errorMessages);
}
} else {
return buttonGerencianet(null, null, $descontoBoleto, $tipoDesconto);
}
}