pending commit, finished during MQ/S download ...
[platal.git] / modules / auth / auth.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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
0337d704 22/* cree le champs "auth" renvoye au Groupe X */
23function gpex_make_auth($chlg, $privkey, $datafields) {
575dd9be 24 $fieldarr = explode(",",$datafields);
0337d704 25 $tohash = "1$chlg$privkey";
26
08cce2ff 27 $res = XDB::query("SELECT matricule, matricule_ax, promo,
5d292fd8 28 promo_sortie, flags, deces, nom,
29 prenom, nationalite, section,
30 naissance
31 FROM auth_user_md5 WHERE user_id = {?}",
cab08090 32 S::v('uid'));
9f3acd20 33 $personnal_data = $res->fetchOneAssoc();
5d292fd8 34
35 foreach ($fieldarr as $val) {
36 /* on verifie qu'on n'a pas demandé une variable inexistante ! */
cab08090 37 if (S::has($val)) {
38 $tohash .= S::v($val);
9f3acd20 39 } else if (isset($personnal_data[$val])) {
40 $tohash .= $personnal_data[$val];
0337d704 41 } else if ($val == 'username') {
08cce2ff 42 $res = XDB::query("SELECT alias FROM aliases
5d292fd8 43 WHERE id = {?} AND FIND_IN_SET('bestalias', flags)",
cab08090 44 S::v('uid'));
0337d704 45 $min_username = $res->fetchOneCell();
46 $tohash .= $min_username;
5d292fd8 47 }
0337d704 48 }
49 $tohash .= "1";
50 return md5($tohash);
51}
52
53/* cree les parametres de l'URL de retour avec les champs demandes */
54function gpex_make_params($chlg, $privkey, $datafields) {
0337d704 55 $params = "&auth=".gpex_make_auth($chlg, $privkey, $datafields);
5d292fd8 56
08cce2ff 57 $res = XDB::query("SELECT matricule, matricule_ax, promo,
5d292fd8 58 promo_sortie, flags, deces, nom,
59 prenom, nationalite, section,
60 naissance
61 FROM auth_user_md5 WHERE user_id = {?}",
cab08090 62 S::v('uid'));
9f3acd20 63 $personnal_data = $res->fetchOneAssoc();
5d292fd8 64
575dd9be 65 $fieldarr = explode(",",$datafields);
5d292fd8 66
67 foreach ($fieldarr as $val) {
cab08090 68 if (S::has($val)) {
69 $tohash .= S::v($val);
9f3acd20 70 } else if (isset($personnal_data[$val])) {
71 $params .= "&$val=".$personnal_data[$val];
0337d704 72 } else if ($val == 'username') {
08cce2ff 73 $res = XDB::query("SELECT alias FROM aliases
5d292fd8 74 WHERE id = {?} AND FIND_IN_SET('bestalias', flags)",
cab08090 75 S::v('uid'));
0337d704 76 $min_username = $res->fetchOneCell();
77 $params .= "&$val=".$min_username;
5d292fd8 78 }
0337d704 79 }
80 return $params;
81}
82
0337d704 83?>