Fix queries of payment, fix typo in xnetgrp, fix make check return value.
[platal.git] / modules / payment / money / paypal.inc.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 class PayPal
23 {
24 // {{{ properties
25
26 var $val_number;
27 var $urlform;
28 var $nomsite = "PayPal";
29 var $text;
30
31 var $infos;
32
33 // }}}
34 // {{{ constructor
35
36 function PayPal($val)
37 {
38 $this->val_number = $val;
39 }
40
41 // }}}
42 // {{{ function form()
43
44 function prepareform(&$pay)
45 {
46 // toute la doc sur :
47 // https://www.paypal.com/fr_FR/pdf/integration_guide.pdf
48 // attention : le renvoi automatique ne fonctionne que si
49 // on oblige les gens à créer un compte paypal
50 // nous ne l'utilisons pas ; il faut donc que l'utilisateur
51 // revienne sur le site
52 global $globals, $platal;
53
54 $this->urlform = 'https://'.$globals->money->paypal_site.'/cgi-bin/webscr';
55 $user = S::user();
56 $name = $user->lastName();
57
58 $roboturl = str_replace("https://","http://",$globals->baseurl)
59 . '/' . $platal->ns . "payment/paypal_return/".S::v('uid')."?comment=".urlencode(Env::v('comment'));
60
61 $this->infos = Array();
62
63 $this->infos['commercant'] = Array(
64 'business' => $globals->money->paypal_compte,
65 'rm' => 2,
66 'return' => $roboturl,
67 'cn' => 'Commentaires',
68 'no_shipping' => 1,
69 'cbt' => empty($GLOBALS['IS_XNET_SITE']) ?
70 'Revenir sur polytechnique.org' :
71 'Revenir sur polytechnique.net');
72
73 $info_client = Array(
74 'first_name' => S::v('prenom'),
75 'last_name' => $name,
76 'email' => S::user()->bestEmail());
77
78 // XXX: waiting for port of adresses.
79 $res = XDB::query(
80 "SELECT a.adr1 AS address1, a.adr2 AS address2,
81 a.city, a.postcode AS zip, a.country,
82 IF(t1.display_tel != '', t1.display_tel, t2.display_tel) AS night_phone_b
83 FROM auth_user_quick AS q
84 LEFT JOIN adresses AS a ON (q.user_id = a.uid AND FIND_IN_SET('active', a.statut))
85 LEFT JOIN profile_phones AS t1 ON (t1.uid = a.uid AND t1.link_type = 'address' AND t1.link_id = a.adrid)
86 LEFT JOIN profile_phones AS t2 ON (t2.uid = a.uid AND t2.link_type = 'user' AND t2.link_id = 0)
87 WHERE q.user_id = {?}
88 LIMIT 1", S::v('uid'));
89 $this->infos['client'] = array_map('replace_accent', array_merge($info_client, $res->fetchOneAssoc()));
90
91 // on constuit la reference de la transaction
92 $prefix = ($pay->flags->hasflag('unique')) ? str_pad("",15,"0") : rand_url_id();
93 $fullref = substr("$prefix-xorg-{$pay->id}",-15);
94
95 $this->infos['commande'] = Array(
96 'item_name' => replace_accent($pay->text),
97 'amount' => $this->val_number,
98 'currency_code' => 'EUR',
99 'custom' => $fullref);
100
101 $this->infos['divers'] = Array('cmd' => '_xclick');
102 }
103
104 // }}}
105 }
106
107 $api = 'PayPal';
108
109 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
110 ?>