| 1 | <?php |
| 2 | /*************************************************************************** |
| 3 | * Copyright (C) 2003-2007 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 | $req = XDB::query("SELECT IF(nom_usage!='', nom_usage, nom) AS nom |
| 56 | FROM auth_user_md5 |
| 57 | WHERE user_id = {?}",S::v('uid')); |
| 58 | $name = $req->fetchOneCell(); |
| 59 | |
| 60 | $roboturl = str_replace("https://","http://",$globals->baseurl) |
| 61 | . '/' . $platal->ns . "payment/paypal_return/".S::v('uid')."?comment=".urlencode(Env::v('comment')); |
| 62 | |
| 63 | $this->infos = Array(); |
| 64 | |
| 65 | $this->infos['commercant'] = Array( |
| 66 | 'business' => $globals->money->paypal_compte, |
| 67 | 'rm' => 2, |
| 68 | 'return' => $roboturl, |
| 69 | 'cn' => 'Commentaires', |
| 70 | 'no_shipping' => 1, |
| 71 | 'cbt' => empty($GLOBALS['IS_XNET_SITE']) ? |
| 72 | 'Revenir sur polytechnique.org' : |
| 73 | 'Revenir sur polytechnique.net'); |
| 74 | |
| 75 | $info_client = Array( |
| 76 | 'first_name' => S::v('prenom'), |
| 77 | 'last_name' => $name, |
| 78 | 'email' => S::v('bestalias').'@' . $globals->mail->domain); |
| 79 | |
| 80 | $res = XDB::query( |
| 81 | "SELECT a.adr1 AS address1, a.adr2 AS address2, |
| 82 | a.city, a.postcode AS zip, a.country, |
| 83 | IF(t.tel, t.tel, q.profile_mobile) AS night_phone_b |
| 84 | FROM auth_user_quick AS q |
| 85 | LEFT JOIN adresses AS a ON (q.user_id = a.uid AND FIND_IN_SET('active', a.statut)) |
| 86 | LEFT JOIN tels AS t ON (t.uid = a.uid AND t.adrid = a.adrid) |
| 87 | WHERE q.user_id = {?} |
| 88 | LIMIT 1", S::v('uid')); |
| 89 | $this->infos['client'] = array_merge($info_client, $res->fetchOneAssoc()); |
| 90 | |
| 91 | // on constuit la reference de la transaction |
| 92 | require_once 'xorg.misc.inc.php'; |
| 93 | $prefix = ($pay->flags->hasflag('unique')) ? str_pad("",15,"0") : rand_url_id(); |
| 94 | $fullref = substr("$prefix-xorg-{$pay->id}",-15); |
| 95 | |
| 96 | $this->infos['commande'] = Array( |
| 97 | 'item_name' => $pay->text, |
| 98 | 'amount' => $this->val_number, |
| 99 | 'currency_code' => 'EUR', |
| 100 | 'custom' => $fullref); |
| 101 | |
| 102 | $this->infos['divers'] = Array('cmd' => '_xclick'); |
| 103 | } |
| 104 | |
| 105 | // }}} |
| 106 | } |
| 107 | |
| 108 | $api = 'PayPal'; |
| 109 | |
| 110 | // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: |
| 111 | ?> |