-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMCIC_Tpe.inc.php
245 lines (195 loc) · 7.33 KB
/
CMCIC_Tpe.inc.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
<?php
/*****************************************************************************
*
* "open source" kit for CMCIC-P@iement(TM)
*
* File "CMCIC_Tpe.inc.php":
*
* Author : Euro-Information/e-Commerce (contact: centrecom@e-i.com)
* Version : 1.04
* Date : 01/01/2009
*
* Copyright: (c) 2009 Euro-Information. All rights reserved.
* License : see attached document "License.txt".
*
*****************************************************************************/
define("CMCIC_CTLHMAC","V1.04.sha1.php--[CtlHmac%s%s]-%s");
define("CMCIC_CTLHMACSTR", "CtlHmac%s%s");
define("CMCIC_CGI2_RECEIPT","version=2\ncdr=%s");
define("CMCIC_CGI2_MACOK","0");
define("CMCIC_CGI2_MACNOTOK","1\n");
define("CMCIC_CGI2_FIELDS", "%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*");
define("CMCIC_CGI1_FIELDS", "%s*%s*%s%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s*%s");
define("CMCIC_URLPAIEMENT", "paiement.cgi");
/*****************************************************************************
*
* Classe / Class : CMCIC_Tpe
*
*****************************************************************************/
class CMCIC_Tpe {
var $sVersion; // Version du TPE - TPE Version (Ex : 3.0)
var $sNumero; // Numero du TPE - TPE Number (Ex : 1234567)
var $sCodeSociete; // Code Societe - Company code (Ex : companyname)
var $sLangue; // Langue - Language (Ex : FR, DE, EN, ..)
var $sUrlOK; // Url de retour OK - Return URL OK
var $sUrlKO; // Url de retour KO - Return URL KO
var $sUrlPaiement; // Url du serveur de paiement - Payment Server URL (Ex : https://paiement.creditmutuel.fr/paiement.cgi)
var $_sCle; // La clé - The Key
// ----------------------------------------------------------------------------
//
// Constructeur / Constructor
//
// ----------------------------------------------------------------------------
function CMCIC_Tpe($sLangue = "FR") {
// contrôle de l'existence des constantes de paramétrages.
$aRequiredConstants = array('CMCIC_CLE', 'CMCIC_VERSION', 'CMCIC_TPE', 'CMCIC_CODESOCIETE');
$this->_checkTpeParams($aRequiredConstants);
$this->sVersion = CMCIC_VERSION;
$this->_sCle = CMCIC_CLE;
$this->sNumero = CMCIC_TPE;
$this->sUrlPaiement = CMCIC_SERVEUR . CMCIC_URLPAIEMENT;
$this->sCodeSociete = CMCIC_CODESOCIETE;
$this->sLangue = $sLangue;
$this->sUrlOK = CMCIC_URLOK;
$this->sUrlKO = CMCIC_URLKO;
}
// ----------------------------------------------------------------------------
//
// Fonction / Function : getCle
//
// Renvoie la clé du TPE / return the TPE Key
//
// ----------------------------------------------------------------------------
function getCle() {
return $this->_sCle;
}
// ----------------------------------------------------------------------------
//
// Fonction / Function : _checkTpeParams
//
// Contrôle l'existence des constantes d'initialisation du TPE
// Check for the initialising constants of the TPE
//
// ----------------------------------------------------------------------------
function _checkTpeParams($aConstants) {
for ($i = 0; $i < count($aConstants); $i++)
if (!defined($aConstants[$i]))
die ("Erreur paramètre " . $aConstants[$i] . " indéfini");
}
}
/*****************************************************************************
*
* Classe / Class : CMCIC_Hmac
*
*****************************************************************************/
class CMCIC_Hmac {
var $_sUsableKey; // La clé du TPE en format opérationnel / The usable TPE key
// ----------------------------------------------------------------------------
//
// Constructeur / Constructor
//
// ----------------------------------------------------------------------------
function CMCIC_Hmac($oTpe) {
$this->_sUsableKey = $this->_getUsableKey($oTpe);
}
// ----------------------------------------------------------------------------
//
// Fonction / Function : _getUsableKey
//
// Renvoie la clé dans un format utilisable par la certification hmac
// Return the key to be used in the hmac function
//
// ----------------------------------------------------------------------------
function _getUsableKey($oTpe){
$hexStrKey = substr($oTpe->getCle(), 0, 38);
$hexFinal = "" . substr($oTpe->getCle(), 38, 2) . "00";
$cca0=ord($hexFinal);
if ($cca0>70 && $cca0<97)
$hexStrKey .= chr($cca0-23) . substr($hexFinal, 1, 1);
else {
if (substr($hexFinal, 1, 1)=="M")
$hexStrKey .= substr($hexFinal, 0, 1) . "0";
else
$hexStrKey .= substr($hexFinal, 0, 2);
}
return pack("H*", $hexStrKey);
}
// ----------------------------------------------------------------------------
//
// Fonction / Function : computeHmac
//
// Renvoie le sceau HMAC d'une chaine de données
// Return the HMAC for a data string
//
// ----------------------------------------------------------------------------
function computeHmac($sData) {
return strtolower($this->hmac_sha1($this->_sUsableKey, $sData));
}
// ----------------------------------------------------------------------------
//
// Fonction / Function : hmac_sha1
//
// RFC 2104 HMAC implementation for PHP >= 4.3.0 - Creates a SHA1 HMAC.
// Eliminates the need to install mhash to compute a HMAC
// Adjusted from the md5 version by Lance Rushing .
//
// Implémentation RFC 2104 HMAC pour PHP >= 4.3.0 - Création d'un SHA1 HMAC.
// Elimine l'installation de mhash pour le calcul d'un HMAC
// Adaptée de la version MD5 de Lance Rushing.
//
// ----------------------------------------------------------------------------
function hmac_sha1 ($key, $data) {
$length = 64; // block length for SHA1
if (strlen($key) > $length) { $key = pack("H*",sha1($key)); }
$key = str_pad($key, $length, chr(0x00));
$ipad = str_pad('', $length, chr(0x36));
$opad = str_pad('', $length, chr(0x5c));
$k_ipad = $key ^ $ipad ;
$k_opad = $key ^ $opad;
return sha1($k_opad . pack("H*",sha1($k_ipad . $data)));
}
}
// ----------------------------------------------------------------------------
// function getMethode
//
// IN:
// OUT: Données soumises par GET ou POST / Data sent by GET or POST
// description: Renvoie le tableau des données / Send back the data array
// ----------------------------------------------------------------------------
function getMethode()
{
if ($_SERVER["REQUEST_METHOD"] == "GET")
return $_GET;
if ($_SERVER["REQUEST_METHOD"] == "POST")
return $_POST;
die ('Invalid REQUEST_METHOD (not GET, not POST).');
}
// ----------------------------------------------------------------------------
// function HtmlEncode
//
// IN: chaine a encoder / String to encode
// OUT: Chaine encodée / Encoded string
//
// Description: Encode special characters under HTML format
// ********************
// Encodage des caractères spéciaux au format HTML
// ----------------------------------------------------------------------------
function HtmlEncode ($data)
{
$SAFE_OUT_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890._-";
$encoded_data = "";
$result = "";
for ($i=0; $i<strlen($data); $i++)
{
if (strchr($SAFE_OUT_CHARS, $data{$i})) {
$result .= $data{$i};
}
else if (($var = bin2hex(substr($data,$i,1))) <= "7F"){
$result .= "&#x" . $var . ";";
}
else
$result .= $data{$i};
}
return $result;
}
?>