merge with master
[platal.git] / modules / payment / money / paypal.inc.php
index edc5924..be68922 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2006 Polytechnique.org                              *
+ *  Copyright (C) 2003-2008 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -27,15 +27,15 @@ class PayPal
     var $urlform;
     var $nomsite = "PayPal";
     var $text;
-    
+
     var $infos;
 
     // }}}
     // {{{ constructor
-    
+
     function PayPal($val)
     {
-       $this->val_number = $val;
+        $this->val_number = $val;
     }
 
     // }}}
@@ -43,59 +43,63 @@ class PayPal
 
     function prepareform(&$pay)
     {
-       // toute la doc sur :
-       // https://www.paypal.com/fr_FR/pdf/integration_guide.pdf
-       // attention : le renvoi automatique ne fonctionne que si
-       // on oblige les gens à créer un compte paypal
-       // nous ne l'utilisons pas ; il faut donc que l'utilisateur
-       // revienne sur le site
-        global $globals;
-
-       $this->urlform = 'https://'.$globals->money->paypal_site.'/cgi-bin/webscr';
-       $req = XDB::query("SELECT IF(nom_usage!='', nom_usage, nom) AS nom FROM auth_user_md5 WHERE user_id = {?}",S::v('uid'));
-       $name = $req->fetchOneCell();
+        // toute la doc sur :
+        // https://www.paypal.com/fr_FR/pdf/integration_guide.pdf
+        // attention : le renvoi automatique ne fonctionne que si
+        // on oblige les gens à créer un compte paypal
+        // nous ne l'utilisons pas ; il faut donc que l'utilisateur
+        // revienne sur le site
+        global $globals, $platal;
+
+        $this->urlform = 'https://'.$globals->money->paypal_site.'/cgi-bin/webscr';
+        $req = XDB::query("SELECT  IF(nom_usage!='', nom_usage, nom) AS nom
+                             FROM  auth_user_md5
+                            WHERE  user_id = {?}",S::v('uid'));
+        $name = $req->fetchOneCell();
 
         $roboturl = str_replace("https://","http://",$globals->baseurl)
-            ."/payment/paypal_return/".S::v('uid')."?comment=".urlencode(Env::v('comment'));
-
-       $this->infos = Array();
-       
-       $this->infos['commercant'] = Array(
-               'business'    => $globals->money->paypal_compte,
-               'rm'          => 2,
-               'return'      => $roboturl,
-               'cn'          => 'Commentaires',
-               'no_shipping' => 1,
-               'cbt'         => 'Revenir sur polytechnique.org');
-       
-       $info_client = Array(
-               'first_name' => S::v('prenom'),
-               'last_name'  => $name,
-               'email'      => S::v('bestalias').'@polytechnique.org');
-               
-       $res = XDB::query(
-               "SELECT a.adr1 AS address1, a.adr2 AS address2,
-                       a.city, a.postcode AS zip, a.country,
-                       IF(t.tel, t.tel, q.profile_mobile) AS night_phone_b
-                  FROM auth_user_quick AS q
-             LEFT JOIN adresses        AS a ON (q.user_id = a.uid AND FIND_IN_SET('active', a.statut))
-             LEFT JOIN tels        AS t ON (t.uid = a.uid AND t.adrid = a.adrid)
-                 WHERE q.user_id = {?}
-                 LIMIT 1", S::v('uid'));
-       $this->infos['client']=array_merge($info_client, $res->fetchOneAssoc());
+            . '/' . $platal->ns . "payment/paypal_return/".S::v('uid')."?comment=".urlencode(Env::v('comment'));
+
+        $this->infos = Array();
+
+        $this->infos['commercant'] = Array(
+            'business'    => $globals->money->paypal_compte,
+            'rm'        => 2,
+            'return'      => $roboturl,
+            'cn'        => 'Commentaires',
+            'no_shipping' => 1,
+            'cbt'         => empty($GLOBALS['IS_XNET_SITE']) ?
+            'Revenir sur polytechnique.org' :
+            'Revenir sur polytechnique.net');
+
+        $info_client = Array(
+            'first_name' => S::v('prenom'),
+            'last_name'  => $name,
+            'email'      => S::v('bestalias').'@' . $globals->mail->domain);
+
+        $res = XDB::query(
+            "SELECT a.adr1 AS address1, a.adr2 AS address2,
+                    a.city, a.postcode AS zip, a.country,
+                    IF(t1.display_tel != '', t1.display_tel, t2.display_tel) AS night_phone_b
+               FROM auth_user_quick AS q
+          LEFT JOIN adresses  AS a ON (q.user_id = a.uid AND FIND_IN_SET('active', a.statut))
+          LEFT JOIN profile_phones AS t1 ON (t1.uid = a.uid AND t1.link_type = 'address' AND t1.link_id = a.adrid)
+          LEFT JOIN profile_phones AS t2 ON (t2.uid = a.uid AND t2.link_type = 'user' AND t2.link_id = 0)
+              WHERE q.user_id = {?}
+              LIMIT 1", S::v('uid'));
+        $this->infos['client'] = array_map('replace_accent', array_merge($info_client, $res->fetchOneAssoc()));
 
         // on constuit la reference de la transaction
         $prefix = ($pay->flags->hasflag('unique')) ? str_pad("",15,"0") : rand_url_id();
         $fullref = substr("$prefix-xorg-{$pay->id}",-15);
 
-       $this->infos['commande'] = Array(
-               'item_name'     => $pay->text,
-               'amount'        => $this->val_number,
-               'currency_code' => 'EUR',
-               'custom'        => $fullref);
-
-       $this->infos['divers'] = Array('cmd' => '_xclick');
+        $this->infos['commande'] = Array(
+            'item_name' => replace_accent($pay->text),
+            'amount'  => $this->val_number,
+            'currency_code' => 'EUR',
+            'custom'  => $fullref);
 
+        $this->infos['divers'] = Array('cmd' => '_xclick');
     }
 
     // }}}
@@ -103,4 +107,5 @@ class PayPal
 
 $api = 'PayPal';
 
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>