Convert source code to UTF-8
[platal.git] / modules / auth / auth.inc.php
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 /* cree le champs "auth" renvoye au Groupe X */
23 function gpex_make_auth($chlg, $privkey, $datafields) {
24 $fieldarr = explode(",",$datafields);
25 $tohash = "1$chlg$privkey";
26
27 $res = XDB::query("SELECT matricule, matricule_ax, promo,
28 promo_sortie, flags, deces, nom,
29 prenom, nationalite, section,
30 naissance
31 FROM auth_user_md5 WHERE user_id = {?}",
32 S::v('uid'));
33 $personnal_data = $res->fetchOneAssoc();
34
35 foreach ($fieldarr as $val) {
36 /* on verifie qu'on n'a pas demandé une variable inexistante ! */
37 if (S::has($val)) {
38 $tohash .= S::v($val);
39 $params .= "&$val=".S::v($val);
40 } else if (isset($personnal_data[$val])) {
41 $tohash .= $personnal_data[$val];
42 $params .= "&$val=".$personnal_data[$val];
43 } else if ($val == 'username') {
44 $res = XDB::query("SELECT alias FROM aliases
45 WHERE id = {?} AND FIND_IN_SET('bestalias', flags)",
46 S::v('uid'));
47 $min_username = $res->fetchOneCell();
48 $tohash .= $min_username;
49 }
50 }
51 $tohash .= "1";
52 return md5($tohash);
53 }
54
55 /* cree les parametres de l'URL de retour avec les champs demandes */
56 function gpex_make_params($chlg, $privkey, $datafields) {
57 $params = "&auth=".gpex_make_auth($chlg, $privkey, $datafields);
58
59 $res = XDB::query("SELECT matricule, matricule_ax, promo,
60 promo_sortie, flags, deces, nom,
61 prenom, nationalite, section,
62 naissance
63 FROM auth_user_md5 WHERE user_id = {?}",
64 S::v('uid'));
65 $personnal_data = $res->fetchOneAssoc();
66
67 $fieldarr = explode(",",$datafields);
68
69 foreach ($fieldarr as $val) {
70 if (S::has($val)) {
71 $tohash .= S::v($val);
72 $params .= "&$val=".S::v($val);
73 } else if (isset($personnal_data[$val])) {
74 $tohash .= $personnal_data[$val];
75 $params .= "&$val=".$personnal_data[$val];
76 } else if ($val == 'username') {
77 $res = XDB::query("SELECT alias FROM aliases
78 WHERE id = {?} AND FIND_IN_SET('bestalias', flags)",
79 S::v('uid'));
80 $min_username = $res->fetchOneCell();
81 $params .= "&$val=".$min_username;
82 }
83 }
84 return $params;
85 }
86
87 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
88 ?>