-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassipress-multibanco-gateway.php
219 lines (177 loc) · 8.56 KB
/
classipress-multibanco-gateway.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
<?php
class MB_Gateway extends APP_Gateway {
protected $options;
public function __construct()
{
parent::__construct( 'multibanco', array(
'admin' => 'Multibanco',
'dropdown' => 'Multibanco'
) );
add_action('parse_request', array($this,'multibanco_callback'));
}
public function create_form( $order, $options ){ }
public function form() {
$fields = array(
array(
'name' => 'mbentidade',
'title' => 'Entidade',
'type' => 'text',
'desc' => 'Entidade fornecida pela IfthenPay aquando da assinatura do contrato. (Ex.: 10559, 11202, 11473, 11604)'
),
array(
'name' => 'mbsubentidade',
'title' => 'Sub-entidade',
'type' => 'text',
'desc' => 'Subentidade fornecida pela IfthenPay aquando da assinatura do contrato. (Ex.: 999)'
),
array(
'name' => 'mbchave',
'title' => 'Chave Antiphishing',
'type' => 'text',
'default' => sha1(date('m/d/Y h:i:s a')),
'desc' => 'Para garantir a segurança do callback, gerada pelo sistema e que tem de ser fornecida à IfthenPay no pedido de activação do callback.'
),
array(
'name' => 'urlCallback',
'title' => 'URL de Callback',
'type' => 'hidden',
'desc' => get_site_url()."/MultibancoPaymentValidation?chave=[CHAVE_ANTI_PHISHING]&entidade=[ENTIDADE]&referencia=[REFERENCIA]&val=[VALOR]<br/><br/>Deverá comunicar este endereço à IfthenPay juntamente com a Chave Anti-phishing que foi gerada."
)
);
$arr = array(
array(
'title' => "Configurações Multibanco (Gateway IfthenPay)",
'fields' => $fields
)
);
return $arr;
}
public function process( $order, $options ){
$ent_id = $options["mbentidade"];
$subent_id = $options["mbsubentidade"];
$chk_val = 0;
$order_id = "0000".$order->get_id();
if (strlen($ent_id) < 5) {
echo "Lamentamos mas tem de indicar uma entidade válida";
return;
} else if (strlen($ent_id) > 5) {
echo "Lamentamos mas tem de indicar uma entidade válida";
return;
}
if (strlen($subent_id) == 0) {
echo "Lamentamos mas tem de indicar uma subentidade válida";
return;
}
$order_value = sprintf("%01.2f", $order->get_total());
$order_value = format_number($order_value);
if ($order_value < 1) {
echo "Lamentamos mas é impossível gerar uma referência MB para valores inferiores a 1 Euro";
return;
}
if ($order_value >= 1000000) {
echo "<b>AVISO:</b> Pagamento fraccionado por exceder o valor limite para pagamentos no sistema Multibanco<br>";
}
if (strlen($subent_id) == 1) {
//Apenas sao considerados os 6 caracteres mais a direita do order_id
$order_id = substr($order_id, (strlen($order_id) - 6), strlen($order_id));
$chk_str = sprintf('%05u%01u%06u%08u', $ent_id, $subent_id, $order_id, round($order_value * 100));
} else if (strlen($subent_id) == 2) {
//Apenas sao considerados os 5 caracteres mais a direita do order_id
$order_id = substr($order_id, (strlen($order_id) - 5), strlen($order_id));
$chk_str = sprintf('%05u%02u%05u%08u', $ent_id, $subent_id, $order_id, round($order_value * 100));
} else {
//Apenas sao considerados os 4 caracteres mais a direita do order_id
$order_id = substr($order_id, (strlen($order_id) - 4), strlen($order_id));
$chk_str = sprintf('%05u%03u%04u%08u', $ent_id, $subent_id, $order_id, round($order_value * 100));
}
//cálculo dos check digits
$chk_array = array(3, 30, 9, 90, 27, 76, 81, 34, 49, 5, 50, 15, 53, 45, 62, 38, 89, 17, 73, 51);
for ($i = 0; $i < 20; $i++) {
$chk_int = substr($chk_str, 19 - $i, 1);
$chk_val += ($chk_int % 10) * $chk_array[$i];
}
$chk_val %= 97;
$chk_digits = sprintf('%02u', 98 - $chk_val);
echo "<table cellpadding=\"0\" cellspacing=\"0\">
<tbody>
<tr>
<th colspan=\"2\" style=\"border-bottom:1px solid #000; text-align: center; font-weight: bold;\">Instruções de pagamento
<br/><img src=\"https://raw.githubusercontent.com/ifthenpay/omnipay-ifthenpay/master/mb.png\" alt=\"Multibanco\">
</th>
</tr>
<tr>
<td>Entidade:</td>
<td style=\"font-weight: bold;\">".$ent_id."</td>
</tr>
<tr>
<td>Referência:</td>
<td style=\"font-weight: bold;\">".substr($chk_str, 5, 3)." ".substr($chk_str, 8, 3)." ".substr($chk_str, 11, 1).$chk_digits."</td>
</tr>
<tr>
<td>Valor:</td>
<td style=\"font-weight: bold;\">".number_format($order_value, 2, ',', ' ')."€</td>
</tr>
<tr>
<td style=\"border-top:1px solid #000;\" colspan=\"2\" style=\"font-size: small;\">O recibo emitido pelo terminal Multibanco é prova de pagamento. Guarde-o.</td>
</tr>
</tbody>
</table>";
$order->pending();
return true;
}
function multibanco_callback ()
{
if(strpos($_SERVER["REQUEST_URI"], 'MultibancoPaymentValidation') !== false) {
$opts = get_option("cp_options");
if($_GET["chave"] == $opts["gateways"]["multibanco"]["mbchave"])
{
$orderID = substr($_GET["referencia"],3,4);
$order = appthemes_get_order($orderID);
$order->complete();
}
//return true;
exit();
}
}
//INICIO TRATAMENTO DEFINIÇÕES REGIONAIS
function format_number($number) {
$verifySepDecimal = number_format(99, 2);
$valorTmp = $number;
$sepDecimal = substr($verifySepDecimal, 2, 1);
$hasSepDecimal = True;
$i = (strlen($valorTmp) - 1);
for ($i; $i != 0; $i -= 1) {
if (substr($valorTmp, $i, 1) == "." || substr($valorTmp, $i, 1) == ",") {
$hasSepDecimal = True;
$valorTmp = trim(substr($valorTmp, 0, $i)).
"@".trim(substr($valorTmp, 1 + $i));
break;
}
}
if ($hasSepDecimal != True) {
$valorTmp = number_format($valorTmp, 2);
$i = (strlen($valorTmp) - 1);
for ($i; $i != 1; $i--) {
if (substr($valorTmp, $i, 1) == "." || substr($valorTmp, $i, 1) == ",") {
$hasSepDecimal = True;
$valorTmp = trim(substr($valorTmp, 0, $i)).
"@".trim(substr($valorTmp, 1 + $i));
break;
}
}
}
for ($i = 1; $i != (strlen($valorTmp) - 1); $i++) {
if (substr($valorTmp, $i, 1) == "." || substr($valorTmp, $i, 1) == "," || substr($valorTmp, $i, 1) == " ") {
$valorTmp = trim(substr($valorTmp, 0, $i)).trim(substr($valorTmp, 1 + $i));
break;
}
}
if (strlen(strstr($valorTmp, '@')) > 0) {
$valorTmp = trim(substr($valorTmp, 0, strpos($valorTmp, '@'))).trim($sepDecimal).trim(substr($valorTmp, strpos($valorTmp, '@') + 1));
}
return $valorTmp;
}
//FIM TRATAMENTO DEFINIÇÕES REGIONAIS
}
appthemes_register_gateway( 'MB_Gateway' );
?>