Adapts the profile_update to the new geocoding.
[platal.git] / modules / payment.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 /* sort en affichant une erreur */
23 function cb_erreur($text) {
24 global $globals;
25 $mymail = new PlMailer();
26 $mymail->addTo($globals->money->email);
27 $mymail->setFrom("webmaster@" . $globals->mail->domain);
28 $mymail->setSubject("erreur lors d'un télépaiement (CyberPaiement)");
29 $mymail->setTxtBody("\n\n".var_export($_REQUEST,true));
30 $mymail->send();
31 exit;
32 }
33
34 /* sort en affichant une erreur */
35 function paypal_erreur($text, $send=true)
36 {
37 global $erreur, $globals;
38 if ($erreur) return;
39 $erreur = $text;
40 if (!$send) return;
41
42 $mymail = new PlMailer();
43 $mymail->addTo($globals->money->email);
44 $mymail->setFrom("webmaster@" . $globals->mail->domain);
45 $mymail->setSubject("erreur lors d'un télépaiement (PayPal)");
46 $mymail->setTxtBody("\n\n".var_export($_REQUEST,true));
47 $mymail->send();
48
49 Platal::page()->trigError($text);
50 }
51
52 /* http://fr.wikipedia.org/wiki/Formule_de_Luhn */
53 function luhn($nombre) {
54 $s = strrev($nombre);
55 $sum = 0;
56 for ($i = 0; $i < strlen($s); $i++) {
57 $dgt = $s{$i};
58 $sum += ($i % 2) ? (2*$dgt) % 9 : $dgt;
59 }
60 return $sum % 10;
61 }
62
63 /* calcule la clé d'acceptation a partir de 5 champs */
64 function cle_accept($d1,$d2,$d3,$d4,$d5)
65 {
66 $m1 = luhn($d1.$d5);
67 $m2 = luhn($d2.$d5);
68 $m3 = luhn($d3.$d5);
69 $m4 = luhn($d4.$d5);
70 $n = $m1 + $m2 + $m3 + $m4;
71 $alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
72 return $alpha{$n-1}.$m1.$m2.$m3.$m4;
73 }
74
75 /* decode the comment */
76 function comment_decode($comment) {
77 $comment = urldecode($comment);
78 if (is_utf8($comment)) {
79 return $comment;
80 } else {
81 return utf8_encode($comment);
82 }
83 }
84
85
86 class PaymentModule extends PLModule
87 {
88 function handlers()
89 {
90 return array(
91 'payment' => $this->make_hook('payment', AUTH_MDP),
92 'payment/cyber_return' => $this->make_hook('cyber_return', AUTH_PUBLIC, 'user', NO_HTTPS),
93 'payment/paypal_return' => $this->make_hook('paypal_return', AUTH_PUBLIC, 'user', NO_HTTPS),
94 '%grp/paiement' => $this->make_hook('xnet_payment', AUTH_MDP),
95 '%grp/payment' => $this->make_hook('xnet_payment', AUTH_MDP),
96 '%grp/payment/cyber_return' => $this->make_hook('cyber_return', AUTH_PUBLIC, 'user', NO_HTTPS),
97 '%grp/payment/paypal_return' => $this->make_hook('paypal_return', AUTH_PUBLIC, 'user', NO_HTTPS),
98 'admin/payments' => $this->make_hook('admin', AUTH_MDP, 'admin'),
99
100 );
101 }
102
103 function handler_payment(&$page, $ref = -1)
104 {
105 global $globals;
106
107 require_once 'profil.func.inc.php' ;
108 $this->load('money.inc.php');
109
110 if (!empty($GLOBALS['IS_XNET_SITE'])) {
111 if (!$globals->asso('id')) {
112 return PL_NOT_FOUND;
113 }
114 $res = XDB::query("SELECT asso_id
115 FROM paiement.paiements
116 WHERE asso_id = {?} AND id = {?}",
117 $globals->asso('id'), $ref);
118 if (!$res->numRows()) {
119 return PL_FORBIDDEN;
120 }
121 }
122 $page->changeTpl('payment/index.tpl');
123 $page->setTitle('Télépaiements');
124
125 // initialisation
126 $op = Env::v('op', 'select');
127 $meth = new PayMethod(Env::i('methode', -1));
128 $pay = new Payment($ref);
129
130 if($pay->flags->hasflag('old')){
131 $page->trigError("La transaction selectionnée est périmée.");
132 $pay = new Payment();
133 }
134 $val = Env::v('montant') != 0 ? Env::v('montant') : $pay->montant_def;
135
136 if (($e = $pay->check($val)) !== true) {
137 $page->trigError($e);
138 }
139
140 if ($op=='submit') {
141 $pay->init($val, $meth);
142 $pay->prepareform($pay);
143 } else {
144 $res = XDB::iterator("SELECT timestamp, montant
145 FROM paiement.transactions
146 WHERE uid = {?} AND ref = {?}
147 ORDER BY timestamp DESC",
148 S::v('uid', -1), $ref);
149
150 if ($res->total()) $page->assign('transactions', $res);
151 }
152
153 $val = floor($val).".".substr(floor(($val - floor($val))*100+100),1);
154 $page->assign('montant',$val);
155 $page->assign('comment',Env::v('comment'));
156
157 $page->assign('meth', $meth);
158 $page->assign('pay', $pay);
159 $page->assign('evtlink', $pay->event());
160
161 $page->assign('prefix', $globals->money->mpay_tprefix);
162 }
163
164 function handler_cyber_return(&$page, $uid = null)
165 {
166 /* reference banque (numero de transaction) */
167 $champ901 = Env::s('CHAMP901');
168 /* cle d'acceptation */
169 $champ905 = Env::s('CHAMP905');
170 /* code retour */
171 $champ906 = Env::s('CHAMP906');
172 /* email renvoye par la banque */
173 $champ104 = Env::s('CHAMP104');
174 /* reference complete de la commande */
175 $champ200 = Env::s('CHAMP200');
176 /* montant de la transaction */
177 $champ201 = Env::s('CHAMP201');
178 /* devise */
179 $champ202 = Env::s('CHAMP202');
180 $montant = "$champ201 $champ202";
181
182 /* on extrait les informations sur l'utilisateur */
183 $res = XDB::query("
184 SELECT a.prenom,a.nom,a.promo,l.alias,FIND_IN_SET('femme', a.flags)
185 FROM auth_user_md5 AS a
186 INNER JOIN aliases AS l ON (a.user_id=l.id AND type!='homonyme')
187 WHERE a.user_id={?}", $uid);
188 if (!list($prenom,$nom,$promo,$forlife,$femme) = $res->fetchOneRow()) {
189 cb_erreur("uid invalide");
190 }
191
192
193 /* on extrait la reference de la commande */
194 if (!ereg('-xorg-([0-9]+)$',$champ200,$matches)) {
195 cb_erreur("référence de commande invalide");
196 }
197
198 echo ($ref = $matches[1]);
199 $res = XDB::query("SELECT mail,text,confirmation
200 FROM paiement.paiements
201 WHERE id={?}", $ref);
202 if (!list($conf_mail,$conf_title,$conf_text) = $res->fetchOneRow()) {
203 cb_erreur("référence de commande inconnue");
204 }
205
206 /* on extrait le code de retour */
207 if ($champ906 != "0000") {
208 $res = XDB::query("SELECT rcb.text,c.id,c.text
209 FROM paiement.codeRCB AS rcb
210 LEFT JOIN paiement.codeC AS c ON rcb.codeC=c.id
211 WHERE rcb.id={?}", $champ906);
212 if (list($rcb_text, $c_id, $c_text) = $res->fetchOneRow()) {
213 cb_erreur("erreur lors du paiement : $c_text ($c_id)");
214 } else{
215 cb_erreur("erreur inconnue lors du paiement");
216 }
217 }
218
219 /* on fait l'insertion en base de donnees */
220 XDB::execute("INSERT INTO paiement.transactions (id,uid,ref,fullref,montant,cle,comment)
221 VALUES ({?},{?},{?},{?},{?},{?},{?})",
222 $champ901, $uid, $ref, $champ200, $montant, $champ905,Env::v('comment'));
223
224 /* on genere le mail de confirmation */
225 $conf_text = str_replace("<prenom>",$prenom,$conf_text);
226 $conf_text = str_replace("<nom>",$nom,$conf_text);
227 $conf_text = str_replace("<promo>",$promo,$conf_text);
228 $conf_text = str_replace("<montant>",$montant,$conf_text);
229 $conf_text = str_replace("<comment>", Env::v('comment'), $conf_text);
230 $conf_text = str_replace("<salutation>",$femme ? "Chère" : "Cher",$conf_text);
231 $conf_text = str_replace("<cher>",$femme ? "Chère" : "Cher",$conf_text);
232
233 global $globals;
234 $mymail = new PlMailer();
235 $mymail->setFrom($conf_mail);
236 $mymail->addTo("\"$prenom $nom\" <$forlife@" . $globals->mail->domain . '>');
237 $mymail->addCc($conf_mail);
238 $mymail->setSubject($conf_title);
239 $mymail->setWikiBody($conf_text);
240 $mymail->send(S::v('mail_fmt') == 'html');
241
242 /* on envoie les details de la transaction à telepaiement@ */
243 $mymail = new PlMailer();
244 $mymail->setFrom("webmaster@" . $globals->mail->domain);
245 $mymail->addTo($globals->money->email);
246 $mymail->setSubject($conf_title);
247 $msg = "utilisateur : $prenom $nom ($uid)\n".
248 "mail : $forlife@polytechnique.org\n\n".
249 "paiement : $conf_title ($conf_mail)\n".
250 "reference : $champ200\n".
251 "montant : $montant\n\n".
252 "dump de REQUEST:\n".
253 var_export($_REQUEST,true);
254 $mymail->setTxtBody($msg);
255 $mymail->send();
256 exit;
257 }
258
259 function handler_paypal_return(&$page, $uid = null)
260 {
261 $page->changeTpl('payment/retour_paypal.tpl');
262
263 /* reference banque (numero de transaction) */
264 $no_transaction = Env::s('tx');
265 /* token a renvoyer pour avoir plus d'information */
266 $clef = Env::s('sig');
267 /* code retour */
268 $status = Env::s('st');
269 /* raison */
270 $reason = ($status == 'Pending')? Env::s('pending_reason'): Env::s('reason_code');
271 /* reference complete de la commande */
272 $fullref = Env::s('cm');
273 /* montant de la transaction */
274 $montant_nb = Env::s('amt');
275 /* devise */
276 $montant_dev = Env::s('cc');
277 $montant = "$montant_nb $montant_dev";
278
279 /* on extrait le code de retour */
280 if ($status != "Completed") {
281 if ($status)
282 paypal_erreur("erreur lors du paiement : $status - $reason");
283 else
284 paypal_erreur("Paiement annulé", false);
285 }
286
287 /* on extrait les informations sur l'utilisateur */
288 $res = XDB::query("
289 SELECT a.prenom,a.nom,a.promo,l.alias,FIND_IN_SET('femme', a.flags)
290 FROM auth_user_md5 AS a
291 INNER JOIN aliases AS l ON (a.user_id=l.id AND type!='homonyme')
292 WHERE a.user_id={?}", $uid);
293 if (!list($prenom,$nom,$promo,$forlife,$femme) = $res->fetchOneRow()) {
294 paypal_erreur("uid invalide");
295 }
296
297 /* on extrait la reference de la commande */
298 if (!ereg('-xorg-([0-9]+)$',$fullref,$matches)) {
299 paypal_erreur("référence de commande invalide");
300 }
301
302 $ref = $matches[1];
303 $res = XDB::query("SELECT mail,text,confirmation
304 FROM paiement.paiements
305 WHERE id={?}", $ref);
306 if (!list($conf_mail,$conf_title,$conf_text) = $res->fetchOneRow()) {
307 paypal_erreur("référence de commande inconnue");
308 }
309
310 /* on fait l'insertion en base de donnees */
311 XDB::execute("INSERT INTO paiement.transactions (id,uid,ref,fullref,montant,cle,comment)
312 VALUES ({?},{?},{?},{?},{?},{?},{?})",
313 $no_transaction, $uid, $ref, $fullref, $montant, $clef, Env::v('comment'));
314
315 /* on genere le mail de confirmation */
316 $conf_text = str_replace("<prenom>",$prenom,$conf_text);
317 $conf_text = str_replace("<nom>",$nom,$conf_text);
318 $conf_text = str_replace("<promo>",$promo,$conf_text);
319 $conf_text = str_replace("<montant>",$montant,$conf_text);
320 $conf_text = str_replace("<salutation>",$femme ? "Chère" : "Cher",$conf_text);
321 $conf_text = str_replace("<cher>",$femme ? "Chère" : "Cher",$conf_text);
322
323 global $globals;
324 $mymail = new PlMailer();
325 $mymail->setFrom($conf_mail);
326 $mymail->addTo("\"$prenom $nom\" <$forlife@" . $globals->mail->domain . '>');
327 $mymail->addCc($conf_mail);
328 $mymail->setSubject($conf_title);
329 $mymail->setWikiBody($conf_text);
330 $mymail->send(S::v('mail_fmt') == 'html');
331
332 /* on envoie les details de la transaction à telepaiement@ */
333 $mymail = new PlMailer();
334 $mymail->setFrom("webmaster@" . $globals->mail->domain);
335 $mymail->addTo($globals->money->email);
336 $mymail->setSubject($conf_title);
337 $msg = "utilisateur : $prenom $nom ($uid)\n".
338 "mail : $forlife@polytechnique.org\n\n".
339 "paiement : $conf_title ($conf_mail)\n".
340 "reference : $no_transaction\n".
341 "montant : $montant\n\n".
342 "dump de REQUEST:\n".
343 var_export($_REQUEST,true);
344 $mymail->setTxtBody($msg);
345 $mymail->send();
346
347 $page->assign('texte', $conf_text);
348 $page->assign('erreur', $erreur);
349 }
350
351 function handler_xnet_payment(&$page, $pid = null)
352 {
353 global $globals;
354
355 $perms = S::v('perms');
356 if (!$perms->hasFlag('groupmember')) {
357 if (is_null($pid)) {
358 return PL_FORBIDDEN;
359 }
360 $res = XDB::query("SELECT 1
361 FROM groupex.evenements AS e
362 INNER JOIN groupex.evenements_participants AS ep ON (ep.eid = e.eid AND uid = {?})
363 WHERE e.paiement_id = {?} AND e.asso_id = {?}",
364 S::i('uid'), $pid, $globals->asso('id'));
365 if ($res->numRows() == 0) {
366 return PL_FORBIDDEN;
367 }
368 }
369
370 if (!is_null($pid)) {
371 return $this->handler_payment($page, $pid);
372 }
373 $page->changeTpl('payment/xnet.tpl');
374
375 $res = XDB::query(
376 "SELECT id, text, url
377 FROM {$globals->money->mpay_tprefix}paiements
378 WHERE asso_id = {?} AND NOT FIND_IN_SET('old', flags)
379 ORDER BY id DESC", $globals->asso('id'));
380 $tit = $res->fetchAllAssoc();
381 $page->assign('titres', $tit);
382
383 $order = Env::v('order', 'timestamp');
384 $orders = array('timestamp', 'nom', 'promo', 'montant', 'comment');
385 if (!in_array($order, $orders)) {
386 $order = 'timestamp';
387 } elseif ($order == 'comment') {
388 $order = 't.comment';
389 }
390 $inv_order = Env::v('order_inv', 0);
391 $page->assign('order', $order);
392 $page->assign('order_inv', !$inv_order);
393
394 if ($order == 'timestamp') {
395 $inv_order = !$inv_order;
396 }
397
398 if ($inv_order) {
399 $inv_order = ' DESC';
400 } else {
401 $inv_order = '';
402 }
403 if ($order == 'montant') {
404 $order = 'LENGTH(montant) '.$inv_order.', montant';
405 }
406
407 $orderby = 'ORDER BY '.$order.$inv_order;
408 if ($order != 'nom') {
409 $orderby .= ', nom'; $inv_order = '';
410 }
411 $orderby .= ', prenom'.$inv_order;
412 if ($order != 'timestamp') {
413 $orderby .= ', timestamp DESC';
414 }
415
416 $trans = array();
417 $event = array();
418 foreach($tit as $foo) {
419 $pid = $foo['id'];
420 if (may_update()) {
421 $res = XDB::query("SELECT IF(u.nom_usage<>'', u.nom_usage, u.nom) AS nom,
422 u.prenom, u.promo, a.alias, timestamp AS `date`, t.comment, montant
423 FROM {$globals->money->mpay_tprefix}transactions AS t
424 INNER JOIN auth_user_md5 AS u ON ( t.uid = u.user_id )
425 INNER JOIN aliases AS a ON ( t.uid = a.id AND a.type='a_vie' )
426 WHERE ref = {?} ".$orderby, $pid);
427 $trans[$pid] = $res->fetchAllAssoc();
428 $sum = 0;
429 foreach ($trans[$pid] as $i => $t) {
430 $sum += strtr(substr($t['montant'], 0, strpos($t['montant'], 'EUR')), ',', '.');
431 $trans[$pid][$i]['montant'] = str_replace('EUR', '€', $t['montant']);
432 }
433 $trans[$pid][] = array('nom' => 'somme totale',
434 'montant' => strtr($sum, '.', ',').' €');
435 }
436 $res = XDB::iterRow("SELECT e.eid, e.short_name, e.intitule, ep.nb, ei.montant, ep.paid
437 FROM groupex.evenements AS e
438 LEFT JOIN groupex.evenements_participants AS ep ON (ep.eid = e.eid AND uid = {?})
439 INNER JOIN groupex.evenements_items AS ei ON (ep.eid = ei.eid AND ep.item_id = ei.item_id)
440 WHERE e.paiement_id = {?}",
441 S::v('uid'), $pid);
442 $event[$pid] = array();
443 $event[$pid]['paid'] = 0;
444 if ($res->total()) {
445 $event[$pid]['topay'] = 0;
446 while(list($eid, $shortname, $title, $nb, $montant, $paid) = $res->next()) {
447 $event[$pid]['topay'] += ($nb * $montant);
448 $event[$pid]['eid'] = $eid;
449 $event[$pid]['shortname'] = $shortname;
450 $event[$pid]['title'] = $title;
451 $event[$pid]['ins'] = !is_null($nb);
452 $event[$pid]['paid'] = $paid;
453 }
454 }
455 $res = XDB::query("SELECT montant
456 FROM {$globals->money->mpay_tprefix}transactions AS t
457 WHERE ref = {?} AND uid = {?}", $pid, S::v('uid'));
458 $montants = $res->fetchColumn();
459
460 foreach ($montants as $m) {
461 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
462 $event[$pid]['paid'] += trim($p);
463 }
464 }
465 $page->register_modifier('decode_comment', 'decode_comment');
466 $page->assign('trans', $trans);
467 $page->assign('event', $event);
468 }
469
470 function handler_admin(&$page, $action = 'list', $id = null) {
471 $page->setTitle('Administration - Paiements');
472 $page->assign('title', 'Gestion des télépaiements');
473 $table_editor = new PLTableEditor('admin/payments','paiement.paiements','id');
474 $table_editor->add_join_table('paiement.transactions','ref',true);
475 $table_editor->add_sort_field('flags');
476 $table_editor->add_sort_field('id', true, true);
477 $table_editor->on_delete("UPDATE paiement.paiements SET flags = 'old' WHERE id = {?}", "Le paiement a été archivé");
478 $table_editor->describe('text','intitulé',true);
479 $table_editor->describe('url','site web',false);
480 $table_editor->describe('montant_def','montant par défaut',false);
481 $table_editor->describe('montant_min','montant minimum',false);
482 $table_editor->describe('montant_max','montant maximum',false);
483 $table_editor->describe('mail','email contact',true);
484 $table_editor->describe('confirmation','message confirmation',false);
485 $table_editor->apply($page, $action, $id);
486 }
487 }
488
489 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
490 ?>