Displays Corps in profile.
[platal.git] / include / user.func.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 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
22// {{{ function user_clear_all_subs()
23/** kills the inscription of a user.
24 * we still keep his birthdate, adresses, and personnal stuff
25 * kills the entreprises, mentor, emails and lists subscription stuff
26 */
27function user_clear_all_subs($user_id, $really_del=true)
28{
043bbacf 29 // keep datas in : aliases, adresses, tels, profile_education, binets_ins, contacts, groupesx_ins, homonymes, identification_ax, photo
0337d704 30 // delete in : auth_user_md5, auth_user_quick, competences_ins, emails, entreprises, langues_ins, mentor,
31 // mentor_pays, mentor_secteurs, newsletter_ins, perte_pass, requests, user_changes, virtual_redirect, watch_sub
32 // + delete maillists
33
34 global $globals;
35 $uid = intval($user_id);
08cce2ff 36 $res = XDB::query("SELECT alias FROM aliases WHERE type='a_vie' AND id={?}", $uid);
0337d704 37 $alias = $res->fetchOneCell();
38
425f432d 39 $tables_to_clear = array('uid' => array('competences_ins', 'entreprises', 'langues_ins', 'mentor_pays',
40 'mentor_secteurs', 'mentor', 'perte_pass', 'watch_sub'),
41 'user_id' => array('requests', 'user_changes'));
42
0337d704 43 if ($really_del) {
b235d980 44 array_push($tables_to_clear['uid'], 'emails', 'groupex.membres', 'contacts', 'adresses', 'profile_phones',
425f432d 45 'photo', 'perte_pass', 'langues_ins', 'forums.abos', 'forums.profils');
46 array_push($tables_to_clear['user_id'], 'newsletter_ins', 'auth_user_quick', 'binets_ins');
787bb3d7 47 $tables_to_clear['id'] = array('aliases');
425f432d 48 $tables_to_clear['contact'] = array('contacts');
425f432d 49 XDB::execute("UPDATE auth_user_md5
50 SET date_ins = 0, promo_sortie = 0, nom_usage = '', password = '', perms = 'pending',
eeb2ec0f
SJ
51 nationalite = '', nationalite2 = '', nationalite3 = '', cv = '', section = 0,
52 date = 0, smtppass = '', mail_storage = ''
425f432d 53 WHERE user_id = {?}", $uid);
54 XDB::execute("DELETE virtual.* FROM virtual INNER JOIN virtual_redirect AS r USING(vid) WHERE redirect = {?}",
55 $alias.'@'.$globals->mail->domain);
56 XDB::execute("DELETE virtual.* FROM virtual INNER JOIN virtual_redirect AS r USING(vid) WHERE redirect = {?}",
57 $alias.'@'.$globals->mail->domain2);
58 } else {
59 XDB::execute("UPDATE auth_user_md5 SET password='',smtppass='' WHERE user_id={?}", $uid);
60 XDB::execute("UPDATE auth_user_quick SET watch_flags='' WHERE user_id={?}", $uid);
0337d704 61 }
62
08cce2ff 63 XDB::execute("DELETE FROM virtual_redirect WHERE redirect = {?}", $alias.'@'.$globals->mail->domain);
64 XDB::execute("DELETE FROM virtual_redirect WHERE redirect = {?}", $alias.'@'.$globals->mail->domain2);
65
425f432d 66 foreach ($tables_to_clear as $key=>&$tables) {
67 foreach ($tables as $table) {
68 XDB::execute("DELETE FROM $table WHERE $key={?}", $uid);
69 }
70 }
9bb8bf21 71
c53b5964 72 $mmlist = new MMList(S::v('uid'), S::v('password'));
9bb8bf21 73 $mmlist->kill($alias, $really_del);
84270653
VZ
74
75 // Deactivates, when available, the Google Apps account of the user.
76 if ($globals->mailstorage->googleapps_domain) {
77 require_once 'googleapps.inc.php';
14870e88
VZ
78 if (GoogleAppsAccount::account_status($uid)) {
79 $account = new GoogleAppsAccount($uid, $alias);
80 $account->suspend();
81 }
84270653 82 }
0337d704 83}
84
85// }}}
86// {{{ function get_user_login()
87
0baf0741 88// Defaut callback to call when a login is not found
89function _default_user_callback($login)
90{
d7610c35 91 Platal::page()->trigError("Il n'y a pas d'utilisateur avec l'identifiant : $login");
0baf0741 92 return;
93}
94
1cc0afe7 95function _silent_user_callback($login)
96{
97 return;
98}
99
0baf0741 100function get_user_login($data, $get_forlife = false, $callback = '_default_user_callback')
101{
d7610c35 102 global $globals;
0337d704 103
3ab288a6 104 if (is_numeric($data)) {
08cce2ff 105 $res = XDB::query("SELECT alias FROM aliases WHERE type='a_vie' AND id={?}", $data);
0337d704 106 if ($res->numRows()) {
107 return $res->fetchOneCell();
108 } else {
0baf0741 109 call_user_func($callback, $data);
0337d704 110 return false;
111 }
112 }
113
114 $data = trim(strtolower($data));
115
116 if (strstr($data, '@')===false) {
117 $data = $data.'@'.$globals->mail->domain;
118 }
787bb3d7 119
575dd9be 120 list($mbox, $fqdn) = explode('@', $data);
0337d704 121 if ($fqdn == $globals->mail->domain || $fqdn == $globals->mail->domain2) {
122
08cce2ff 123 $res = XDB::query("SELECT a.alias
3ab288a6 124 FROM aliases AS a
125 INNER JOIN aliases AS b ON (a.id = b.id AND b.type IN ('alias', 'a_vie') AND b.alias={?})
126 WHERE a.type = 'a_vie'", $mbox);
0337d704 127 if ($res->numRows()) {
128 return $get_forlife ? $res->fetchOneCell() : $mbox;
0337d704 129 }
130
a14159bf 131 if (preg_match('/^(.*)\.([0-9]{4})$/u', $mbox, $matches)) {
3ab288a6 132 $res = XDB::query("SELECT a.alias
133 FROM aliases AS a
134 INNER JOIN aliases AS b ON (a.id = b.id AND b.type IN ('alias', 'a_vie') AND b.alias={?})
135 INNER JOIN auth_user_md5 AS u ON (a.id = u.user_id AND promo = {?})
136 WHERE a.type = 'a_vie'", $matches[1], $matches[2]);
137 if ($res->numRows() == 1) {
138 return $res->fetchOneCell();
139 }
140 }
0baf0741 141 call_user_func($callback, $data);
3ab288a6 142 return false;
143
0337d704 144 } elseif ($fqdn == $globals->mail->alias_dom || $fqdn == $globals->mail->alias_dom2) {
787bb3d7 145
08cce2ff 146 $res = XDB::query("SELECT redirect
3ab288a6 147 FROM virtual_redirect
148 INNER JOIN virtual USING(vid)
149 WHERE alias={?}", $mbox.'@'.$globals->mail->alias_dom);
0337d704 150 if ($redir = $res->fetchOneCell()) {
575dd9be 151 list($alias) = explode('@', $redir);
0337d704 152 } else {
0baf0741 153 call_user_func($callback, $data);
0337d704 154 $alias = false;
155 }
156 return $alias;
0337d704 157 } else {
158
08cce2ff 159 $res = XDB::query("SELECT alias
0337d704 160 FROM aliases AS a
161 INNER JOIN emails AS e ON e.uid=a.id
162 WHERE e.email={?} AND a.type='a_vie'", $data);
163 switch ($i = $res->numRows()) {
164 case 0:
0baf0741 165 call_user_func($callback, $data);
0337d704 166 return false;
787bb3d7 167
0337d704 168 case 1:
169 return $res->fetchOneCell();
787bb3d7 170
0337d704 171 default:
cab08090 172 if (S::has_perms()) {
0337d704 173 $aliases = $res->fetchColumn();
d7610c35 174 Platal::page()->trigError("Il y a $i utilisateurs avec cette adresse mail : ".join(', ', $aliases));
0337d704 175 } else {
176 $res->free();
177 }
178 }
179 }
787bb3d7 180
0337d704 181 return false;
182}
183
184// }}}
185// {{{ function get_user_forlife()
186
0baf0741 187function get_user_forlife($data, $callback = '_default_user_callback')
188{
189 return get_user_login($data, true, $callback);
0337d704 190}
191
192// }}}
e7545178 193// {{{ function get_users_forlife_list()
194
0baf0741 195function get_users_forlife_list($members, $strict = false, $callback = '_default_user_callback')
e7545178 196{
1cc0afe7 197 if (!is_array($members)) {
198 if (strlen(trim($members)) == 0) {
199 return null;
200 }
108d1d90 201 $members = split("[; ,\r\n\|]+", $members);
e7545178 202 }
e7545178 203 if ($members) {
204 $list = array();
205 foreach ($members as $i => $alias) {
108d1d90
FB
206 $alias = trim($alias);
207 if (empty($alias)) {
208 continue;
209 }
0baf0741 210 if (($login = get_user_forlife($alias, $callback)) !== false) {
e7545178 211 $list[$i] = $login;
1555e55e 212 } else if (!$strict) {
e7545178 213 $list[$i] = $alias;
1555e55e
FB
214 } else {
215 global $globals;
216 if (strpos($alias, '@') !== false) {
217 list($user, $dom) = explode('@', $alias);
218 if ($dom != $globals->mail->domain && $dom != $globals->mail->domain2) {
219 $list[$i] = $alias;
220 }
221 }
e7545178 222 }
223 }
224 return $list;
225 }
226 return null;
227}
228
229// }}}
8b10988d 230// {{{ function has_user_right()
231function has_user_right($pub, $view = 'private') {
232 if ($pub == $view) return true;
787bb3d7 233 // all infos available for private
8b10988d 234 if ($view == 'private') return true;
787bb3d7 235 // public infos available for all
8b10988d 236 if ($pub == 'public') return true;
237 // here we have view = ax or public, and pub = ax or private, and pub != view
787bb3d7 238 return false;
8b10988d 239}
240// }}}
0baf0741 241// {{{ function get_not_registered_user()
242
243function get_not_registered_user($login, $iterator = false)
244{
245 global $globals;
246 @list($login, $domain) = explode('@', $login);
247 if ($domain && $domain != $globals->mail->domain && $domain != $globals->mail->domain2) {
248 return null;
249 }
250 @list($prenom, $nom, $promo) = explode('.', $login);
251 $where = 'REPLACE(REPLACE(REPLACE(nom, " ", ""), "-", ""), "\'", "") LIKE CONCAT("%", {?}, "%")
252 AND REPLACE(REPLACE(REPLACE(prenom, " ", ""), "-", ""), "\'", "") LIKE CONCAT("%", {?}, "%")';
253 if ($promo) {
254 if (preg_match('/^[0-9]{2}$/', $promo)) {
255 $where .= 'AND MOD(promo, 100) = {?}';
256 } elseif (preg_match('/^[0-9]{4}$/', $promo)) {
257 $where .= 'AND promo = {?}';
258 }
259 }
260 $sql = "SELECT user_id, nom, prenom, promo
261 FROM auth_user_md5
1555e55e 262 WHERE $where AND perms = 'pending'
787bb3d7 263 ORDER BY promo, nom, prenom";
0baf0741 264 if ($iterator) {
265 return XDB::iterator($sql, $nom, $prenom, $promo);
266 } else {
267 $res = XDB::query($sql, $nom, $prenom, $promo);
268 return $res->fetchAllAssoc();
269 }
270}
271
272// }}}
9039c94d 273// {{{ function get_user_details_pro()
274
8b10988d 275function get_user_details_pro($uid, $view = 'private')
9039c94d 276{
9039c94d 277 $sql = "SELECT e.entreprise, s.label as secteur , ss.label as sous_secteur , f.fonction_fr as fonction,
dd502514 278 e.poste, e.adr1, e.adr2, e.adr3, e.postcode, e.city, e.entrid,
bde2be3b
GB
279 gp.pays AS countrytxt, gr.name AS region, e.entrid,
280 e.pub, e.adr_pub, e.email, e.email_pub, e.web
9039c94d 281 FROM entreprises AS e
282 LEFT JOIN emploi_secteur AS s ON(e.secteur = s.id)
283 LEFT JOIN emploi_ss_secteur AS ss ON(e.ss_secteur = ss.id AND e.secteur = ss.secteur)
284 LEFT JOIN fonctions_def AS f ON(e.fonction = f.id)
285 LEFT JOIN geoloc_pays AS gp ON (gp.a2 = e.country)
286 LEFT JOIN geoloc_region AS gr ON (gr.a2 = e.country and gr.region = e.region)
287 WHERE e.uid = {?}
288 ORDER BY e.entrid";
08cce2ff 289 $res = XDB::query($sql, $uid);
8b10988d 290 $all_pro = $res->fetchAllAssoc();
291 foreach ($all_pro as $i => $pro) {
292 if (!has_user_right($pro['pub'], $view))
293 unset($all_pro[$i]);
294 else {
295 if (!has_user_right($pro['adr_pub'], $view)) {
dd502514 296 if ($pro['adr1'] == '' &&
297 $pro['adr2'] == '' &&
298 $pro['adr3'] == '' &&
299 $pro['postcode'] == '' &&
300 $pro['city'] == '' &&
301 $pro['countrytxt'] == '' &&
302 $pro['region'] == '') {
303 $all_pro[$i]['adr_pub'] = $view;
304 } else {
305 $all_pro[$i]['adr1'] = '';
306 $all_pro[$i]['adr2'] = '';
307 $all_pro[$i]['adr3'] = '';
308 $all_pro[$i]['postcode'] = '';
309 $all_pro[$i]['city'] = '';
310 $all_pro[$i]['countrytxt'] = '';
311 $all_pro[$i]['region'] = '';
312 }
8b10988d 313 }
bde2be3b
GB
314 $sql = "SELECT pub AS tel_pub, tel_type, display_tel AS tel, comment
315 FROM profile_phones AS t
316 WHERE uid = {?} AND link_type = 'pro' AND link_id = {?}
317 ORDER BY link_id, tel_type DESC, tel_id";
318 $restel = XDB::iterator($sql, $uid, $pro['entrid']);
319 while ($nexttel = $restel->next()) {
320 if (has_user_right($nexttel['tel_pub'], $view)) {
321 if (!isset($all_pro[$i]['tels'])) {
322 $all_pro[$i]['tels'] = array($nexttel);
323 } else {
324 $all_pro[$i]['tels'][] = $nexttel;
325 }
dd502514 326 }
8b10988d 327 }
328 if (!has_user_right($pro['email_pub'], $view)) {
dd502514 329 if ($pro['email'] == '')
330 $all_pro[$i]['email_pub'] = $view;
331 else
332 $all_pro[$i]['email'] = '';
8b10988d 333 }
334 if ($all_pro[$i]['adr1'] == '' &&
335 $all_pro[$i]['adr2'] == '' &&
336 $all_pro[$i]['adr3'] == '' &&
337 $all_pro[$i]['postcode'] == '' &&
338 $all_pro[$i]['city'] == '' &&
339 $all_pro[$i]['countrytxt'] == '' &&
340 $all_pro[$i]['region'] == '' &&
341 $all_pro[$i]['entreprise'] == '' &&
342 $all_pro[$i]['fonction'] == '' &&
343 $all_pro[$i]['secteur'] == '' &&
344 $all_pro[$i]['poste'] == '' &&
bde2be3b 345 (!isset($all_pro[$i]['tels'])) &&
8b10988d 346 $all_pro[$i]['email'] == '')
347 unset($all_pro[$i]);
348 }
349 }
350 if (!count($all_pro)) return false;
351 return $all_pro;
9039c94d 352}
353
354// }}}
433336f3 355// {{{ function get_user_details_adr()
356
8b10988d 357function get_user_details_adr($uid, $view = 'private') {
8b10988d 358 $sql = "SELECT a.adrid, a.adr1,a.adr2,a.adr3,a.postcode,a.city,
359 gp.pays AS countrytxt,a.region, a.regiontxt,
360 FIND_IN_SET('active', a.statut) AS active, a.adrid,
361 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
5d42c993 362 FIND_IN_SET('courrier', a.statut) AS courier,
646a4582 363 a.pub, gp.display, a.comment
8b10988d 364 FROM adresses AS a
365 LEFT JOIN geoloc_pays AS gp ON (gp.a2=a.country)
366 WHERE uid= {?} AND NOT FIND_IN_SET('pro',a.statut)
367 ORDER BY NOT FIND_IN_SET('active',a.statut), FIND_IN_SET('temporaire',a.statut), FIND_IN_SET('res-secondaire',a.statut)";
08cce2ff 368 $res = XDB::query($sql, $uid);
8b10988d 369 $all_adr = $res->fetchAllAssoc();
370 $adrid_index = array();
371 foreach ($all_adr as $i => $adr) {
372 if (!has_user_right($adr['pub'], $view))
373 unset($all_adr[$i]);
374 else
375 $adrid_index[$adr['adrid']] = $i;
376 }
787bb3d7 377
bde2be3b 378 $sql = "SELECT link_id AS adrid, pub AS tel_pub, tel_type, display_tel AS tel, tel_id AS telid, comment
b235d980 379 FROM profile_phones AS t
5e4417a9
GB
380 WHERE uid = {?} AND link_type = 'address'
381 ORDER BY link_id, tel_type DESC, tel_id";
08cce2ff 382 $restel = XDB::iterator($sql, $uid);
8b10988d 383 while ($nexttel = $restel->next()) {
384 if (has_user_right($nexttel['tel_pub'], $view)) {
385 $adrid = $nexttel['adrid'];
386 unset($nexttel['adrid']);
387 if (isset($adrid_index[$adrid])) {
787bb3d7 388 if (!isset($all_adr[$adrid_index[$adrid]]['tels']))
8b10988d 389 $all_adr[$adrid_index[$adrid]]['tels'] = array($nexttel);
390 else
391 $all_adr[$adrid_index[$adrid]]['tels'][] = $nexttel;
392 }
393 }
394 }
395 return $all_adr;
396}
433336f3 397
398// }}}
0337d704 399// {{{ function get_user_details()
400
8b10988d 401function &get_user_details($login, $from_uid = '', $view = 'private')
0337d704 402{
0337d704 403 $reqsql = "SELECT u.user_id, u.promo, u.promo_sortie, u.prenom, u.nom, u.nom_usage, u.date, u.cv,
f6c71069 404 u.perms IN ('admin','user','disabled') AS inscrit, FIND_IN_SET('femme', u.flags) AS sexe, u.deces != 0 AS dcd, u.deces,
bde2be3b
GB
405 q.profile_nick AS nickname, q.profile_from_ax, q.profile_freetext AS freetext,
406 q.profile_freetext_pub AS freetext_pub,
078dc884 407 q.profile_medals_pub AS medals_pub, co.corps_pub AS corps_pub,
eeb2ec0f
SJ
408 IF(gp1.nat='',gp1.pays,gp1.nat) AS nationalite, gp1.a2 AS iso3166_1,
409 IF(gp2.nat='',gp2.pays,gp2.nat) AS nationalite2, gp2.a2 AS iso3166_2,
410 IF(gp3.nat='',gp3.pays,gp3.nat) AS nationalite3, gp3.a2 AS iso3166_3,
0337d704 411 a.alias AS forlife, a2.alias AS bestalias,
412 c.uid IS NOT NULL AS is_contact,
413 s.text AS section, p.x, p.y, p.pub AS photo_pub,
dd502514 414 u.matricule_ax,
d9caac6f 415 m.expertise != '' AS is_referent,
cd5bd7dc
PC
416 (COUNT(e.email) > 0 OR FIND_IN_SET('googleapps', u.mail_storage) > 0) AS actif,
417 nd.display AS name_display, nd.tooltip AS name_tooltip
0337d704 418 FROM auth_user_md5 AS u
eeb2ec0f 419 INNER JOIN auth_user_quick AS q USING(user_id)
078dc884
SJ
420 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type = 'a_vie')
421 INNER JOIN aliases AS a2 ON (u.user_id = a2.id AND FIND_IN_SET('bestalias', a2.flags))
eeb2ec0f 422 LEFT JOIN contacts AS c ON (c.uid = {?} and c.contact = u.user_id)
078dc884 423 LEFT JOIN profile_corps AS co ON (co.uid = u.user_id)
eeb2ec0f
SJ
424 LEFT JOIN geoloc_pays AS gp1 ON (gp1.a2 = u.nationalite)
425 LEFT JOIN geoloc_pays AS gp2 ON (gp2.a2 = u.nationalite2)
426 LEFT JOIN geoloc_pays AS gp3 ON (gp3.a2 = u.nationalite3)
427 INNER JOIN sections AS s ON (s.id = u.section)
428 LEFT JOIN photo AS p ON (p.uid = u.user_id)
429 LEFT JOIN mentor AS m ON (m.uid = u.user_id)
430 LEFT JOIN emails AS e ON (e.uid = u.user_id AND e.flags='active')
cd5bd7dc 431 INNER JOIN profile_names_display AS nd ON (nd.user_id = u.user_id)
d9caac6f 432 WHERE a.alias = {?}
433 GROUP BY u.user_id";
08cce2ff 434 $res = XDB::query($reqsql, $from_uid, $login);
0337d704 435 $user = $res->fetchOneAssoc();
436 $uid = $user['user_id'];
8b10988d 437 // hide orange status, cv, nickname, section
438 if (!has_user_right('private', $view)) {
439 $user['promo_sortie'] = $user['promo'] + 3;
440 $user['cv'] = '';
441 $user['nickname'] = '';
442 $user['section'] = '';
443 }
1052148d 444
8b10988d 445 // hide freetext
dd502514 446 if (!has_user_right($user['freetext_pub'], $view)) {
447 if ($user['freetext'] == '')
448 $user['freetext_pub'] = $view;
449 else
450 $user['freetext'] = '';
451 }
0337d704 452
bde2be3b
GB
453 $sql = "SELECT pub AS tel_pub, tel_type, display_tel AS tel, comment
454 FROM profile_phones AS t
455 WHERE uid = {?} AND link_type = 'user'
456 ORDER BY tel_type DESC, tel_id";
457 $restel = XDB::iterator($sql, $uid);
458 while ($nexttel = $restel->next()) {
459 if (has_user_right($nexttel['tel_pub'], $view)) {
460 if (!isset($user['tels'])) {
461 $user['tels'] = array($nexttel);
462 } else {
463 $user['tels'][] = $nexttel;
464 }
465 }
466 }
467
8b10988d 468 $user['adr_pro'] = get_user_details_pro($uid, $view);
469 $user['adr'] = get_user_details_adr($uid, $view);
0337d704 470
8b10988d 471 if (has_user_right('private', $view)) {
472 $sql = "SELECT text
473 FROM binets_ins
474 LEFT JOIN binets_def ON binets_ins.binet_id = binets_def.id
475 WHERE user_id = {?}";
08cce2ff 476 $res = XDB::query($sql, $uid);
8b10988d 477 $user['binets'] = $res->fetchColumn();
478 $user['binets_join'] = join(', ', $user['binets']);
787bb3d7 479
b37aacd9
FB
480 $res = XDB::iterRow("SELECT a.diminutif, a.nom, a.site
481 FROM groupex.asso AS a
482 LEFT JOIN groupex.membres AS m ON (m.asso_id = a.id)
483 WHERE m.uid = {?} AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
484 AND pub = 'public'", $uid);
8b10988d 485 $user['gpxs'] = Array();
ae2f9e35 486 $user['gpxs_name'] = Array();
b37aacd9
FB
487 while (list($gxd, $gxt, $gxu) = $res->next()) {
488 if (!$gxu) {
489 $gxu = 'http://www.polytechnique.net/' . $gxd;
490 }
491 $user['gpxs'][] = '<span title="' . pl_entities($gxt) . "\"><a href=\"$gxu\">$gxd</a></span>";
ae2f9e35 492 $user['gpxs_name'][] = $gxt;
787bb3d7 493 }
8b10988d 494 $user['gpxs_join'] = join(', ', $user['gpxs']);
79a5acea 495 }
0337d704 496
1504ac45
SJ
497 $res = XDB::iterRow("SELECT en.name AS name, en.url AS url, d.degree AS degree,
498 ed.grad_year AS grad_year, f.field AS field, ed.program AS program
043bbacf
SJ
499 FROM profile_education AS ed
500 INNER JOIN profile_education_enum AS en ON (en.id = ed.eduid)
501 INNER JOIN profile_education_degree_enum AS d ON (d.id = ed.degreeid)
502 INNER JOIN profile_education_field_enum AS f ON (f.id = ed.fieldid)
ae2f9e35 503 WHERE uid={?}
043bbacf
SJ
504 ORDER BY ed.grad_year", $uid);
505
506 $user['education'] = "";
f711b03f 507 require_once('education.func.inc.php');
1504ac45
SJ
508 if (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
509 $user['education'] .= education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
043bbacf 510 }
1504ac45
SJ
511 while (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
512 $user['education'] .= ", " . education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
0337d704 513 }
0337d704 514
078dc884
SJ
515 if (has_user_right($user['corps_pub'], $view)) {
516 $res = XDB::query("SELECT e1.name AS original, e2.name AS current, r.name AS rank
517 FROM profile_corps AS c
518 LEFT JOIN profile_corps_enum AS e1 ON (c.original_corpsid = e1.id)
519 LEFT JOIN profile_corps_enum AS e2 ON (c.current_corpsid = e2.id)
520 LEFT JOIN profile_corps_rank_enum AS r ON (c.rankid = r.id)
521 WHERE c.uid = {?} AND c.original_corpsid != 1", $uid);
522 if ($res = $res->fetchOneRow()) {
523 list($original, $current, $rank) = $res;
524 $user['corps'] = "Corps d'origine : " . $original . ", corps actuel : " . $current . ", grade : " . $rank;
525 }
526 }
527
8b10988d 528 if (has_user_right($user['medals_pub'], $view)) {
5e70bf24 529 $res = XDB::iterator("SELECT m.id, m.text AS medal, m.type, s.gid, g.text AS grade
ae2f9e35 530 FROM profile_medals_sub AS s
531 INNER JOIN profile_medals AS m ON ( s.mid = m.id )
532 LEFT JOIN profile_medals_grades AS g ON ( s.mid = g.mid AND s.gid = g.gid )
533 WHERE s.uid = {?}", $uid);
8b10988d 534 $user['medals'] = Array();
535 while ($tmp = $res->next()) {
536 $user['medals'][] = $tmp;
537 }
0337d704 538 }
539
d1a2252a 540 $user['networking'] = Array();
dc6378df 541 $res = XDB::iterator("SELECT n.address, n.pub, m.network_type AS type, m.name, m.filter, m.link
d1a2252a
GB
542 FROM profile_networking AS n
543 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
544 WHERE n.uid = {?}", $uid);
545 while($network = $res->next())
546 {
547 if (has_user_right($network['pub'], $view)) {
dc6378df 548 $network['link'] = str_replace('%s', $network['address'], $network['link']);
d1a2252a
GB
549 $user['networking'][] = $network;
550 }
551 }
552
0337d704 553 return $user;
554}
dd502514 555// }}}
556// {{{ function add_user_address()
557function add_user_address($uid, $adrid, $adr) {
08cce2ff 558 XDB::execute(
dd502514 559 "INSERT INTO adresses (`uid`, `adrid`, `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `datemaj`, `pub`) (
560 SELECT u.user_id, {?}, {?}, {?}, {?}, {?}, {?}, gp.a2, NOW(), {?}
561 FROM auth_user_md5 AS u
562 LEFT JOIN geoloc_pays AS gp ON (gp.pays LIKE {?} OR gp.country LIKE {?} OR gp.a2 LIKE {?})
563 WHERE u.user_id = {?}
564 LIMIT 1)",
565 $adrid, $adr['adr1'], $adr['adr2'], $adr['adr3'], $adr['postcode'], $adr['city'], $adr['pub'], $adr['countrytxt'], $adr['countrytxt'], $adr['countrytxt'], $uid);
566 if (isset($adr['tels']) && is_array($adr['tels'])) {
567 $telid = 0;
568 foreach ($adr['tels'] as $tel) if ($tel['tel']) {
b235d980 569 add_user_tel($uid, 'address', $adrid, $telid, $tel);
dd502514 570 $telid ++;
571 }
572 }
573}
574// }}}
575// {{{ function update_user_address()
576function update_user_address($uid, $adrid, $adr) {
dd502514 577 // update address
08cce2ff 578 XDB::execute(
787bb3d7 579 "UPDATE adresses AS a LEFT JOIN geoloc_pays AS gp ON (gp.pays = {?})
dd502514 580 SET `adr1` = {?}, `adr2` = {?}, `adr3` = {?},
581 `postcode` = {?}, `city` = {?}, a.`country` = gp.a2, `datemaj` = NOW(), `pub` = {?}
582 WHERE adrid = {?} AND uid = {?}",
583 $adr['country_txt'],
584 $adr['adr1'], $adr['adr2'], $adr['adr3'],
585 $adr['postcode'], $adr['city'], $adr['pub'], $adrid, $uid);
586 if (isset($adr['tels']) && is_array($adr['tels'])) {
b235d980 587 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'address' AND link_id = {?} ORDER BY tel_id", $uid, $adrid);
dd502514 588 $telids = $res->fetchColumn();
589 foreach ($adr['tels'] as $tel) {
590 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
b235d980 591 remove_user_tel($uid, 'address', $adrid, $tel['telid']);
dd502514 592 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
593 } else if (isset($tel['telid'])) {
b235d980 594 update_user_tel($uid, 'address', $adrid, $tel['telid'], $tel);
dd502514 595 } else {
596 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
b235d980 597 add_user_tel($uid, 'address', $adrid, $telid, $tel);
dd502514 598 }
599 }
600 }
601}
602// }}}
603// {{{ function remove_user_address()
604function remove_user_address($uid, $adrid) {
08cce2ff 605 XDB::execute("DELETE FROM adresses WHERE adrid = {?} AND uid = {?}", $adrid, $uid);
b235d980 606 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'address'", $adrid, $uid);
dd502514 607}
608// }}}
609// {{{ function add_user_tel()
b235d980 610function add_user_tel($uid, $link_type, $link_id, $telid, $tel) {
5e4417a9
GB
611 require('profil.func.inc.php');
612 $fmt_phone = format_phone_number($tel['tel']);
613 $disp_phone = format_display_number($fmt_phone, $error);
b235d980
GB
614 XDB::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type, search_tel, display_tel, pub)
615 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})",
616 $uid, $link_type, $link_id, $telid, $tel['tel_type'], $fmt_phone, $disp_phone, $tel['tel_pub']);
dd502514 617}
618// }}}
619// {{{ function update_user_tel()
b235d980 620function update_user_tel($uid, $link_type, $link_id, $telid, $tel) {
5e4417a9
GB
621 require('profil.func.inc.php');
622 $fmt_phone = format_phone_number($tel['tel']);
623 $disp_phone = format_display_number($fmt_phone, $error);
b235d980
GB
624 XDB::execute("UPDATE profile_phones SET search_tel = {?}, display_tel = {?}, tel_type = {?}, pub = {?}
625 WHERE link_type = {?} AND tel_id = {?} AND link_id = {?} AND uid = {?}",
5e4417a9 626 $fmt_phone, $disp_phone, $tel['tel_type'], $tel['tel_pub'],
b235d980 627 $link_type, $telid, $link_id, $uid);
dd502514 628}
629// }}}
630// {{{ function remove_user_tel()
b235d980
GB
631function remove_user_tel($uid, $link_type, $link_id, $telid) {
632 XDB::execute("DELETE FROM profile_phones WHERE tel_id = {?} AND link_id = {?} AND uid = {?} AND link_type = {?}",
633 $telid, $link_id, $uid, $link_type);
dd502514 634}
635// }}}
636// {{{ function add_user_pro()
637function add_user_pro($uid, $entrid, $pro) {
08cce2ff 638 XDB::execute(
dd502514 639 "INSERT INTO entreprises (`uid`, `entrid`, `entreprise`, `poste`, `secteur`, `ss_secteur`, `fonction`,
b235d980 640 `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `region`, `email`, `web`, `pub`, `adr_pub`, `email_pub`)
dd502514 641 SELECT u.user_id, {?}, {?}, {?}, s.id, ss.id, f.id,
642 {?}, {?}, {?}, {?}, {?}, gp.a2, gr.region, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}
643 FROM auth_user_md5 AS u
644 LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
645 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
646 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})
647 LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
648 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})
649 WHERE u.user_id = {?}
650 LIMIT 1",
651 $entrid, $pro['entreprise'], $pro['poste'],
b235d980 652 $pro['adr1'], $pro['adr2'], $pro['adr3'], $pro['postcode'], $pro['city'], $pro['email'], $pro['web'], $pro['pub'], $pro['adr_pub'], $pro['email_pub'],
dd502514 653 $pro['secteur'], $pro['sous_secteur'], $pro['fonction'], $pro['fonction'],
654 $pro['countrytxt'], $pro['countrytxt'], $pro['region'],
655 $uid);
b235d980
GB
656 if (isset($pro['tels']) && is_array($pro['tels'])) {
657 $telid = 0;
658 foreach ($pro['tels'] as $tel) {
659 if ($pro['tel']) {
660 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
661 $telid ++;
662 }
663 }
664 }
dd502514 665}
666// }}}
667// {{{ function update_user_pro()
668function update_user_pro($uid, $entrid, $pro) {
dd502514 669 $join = "";
670 $set = "";
671 $args_join = array();
672 $args_set = array();
787bb3d7 673
dd502514 674 $join .= "LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
675 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
676 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})";
677 $args_join[] = $pro['secteur'];
678 $args_join[] = $pro['sous_secteur'];
679 $args_join[] = $pro['fonction'];
680 $args_join[] = $pro['fonction'];
681 $set .= ", e.`entreprise` = {?}, e.`secteur` = s.id, e.`ss_secteur` = ss.id, e.`fonction` = f.id, e.`poste`= {?}, e.`web` = {?}, e.`pub` = {?}";
682 $args_set[] = $pro['entreprise'];
683 $args_set[] = $pro['poste'];
684 $args_set[] = $pro['web'];
685 $args_set[] = $pro['pub'];
787bb3d7 686
dd502514 687 if (isset($pro['adr1'])) {
688 $join .= "LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
689 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})";
690 $args_join[] = $pro['countrytxt'];
691 $args_join[] = $pro['countrytxt'];
692 $args_join[] = $pro['region'];
693 $set .= ", e.`adr1` = {?}, e.`adr2` = {?}, e.`adr3` = {?}, e.`postcode` = {?}, e.`city` = {?}, e.`country` = gp.a2, e.`region` = gr.region, e.`adr_pub` = {?}";
694 $args_set[] = $pro['adr1'];
695 $args_set[] = $pro['adr2'];
696 $args_set[] = $pro['adr3'];
697 $args_set[] = $pro['postcode'];
698 $args_set[] = $pro['city'];
699 $args_set[] = $pro['adr_pub'];
700 }
787bb3d7 701
dd502514 702 if (isset($pro['email'])) {
703 $set .= ", e.`email` = {?}, e.`email_pub` = {?}";
704 $args_set[] = $pro['email'];
705 $args_set[] = $pro['email_pub'];
787bb3d7 706 }
dd502514 707 $query = "UPDATE entreprises AS e ".$join." SET ".substr($set,1)." WHERE e.uid = {?} AND e.entrid = {?}";
708 $args_where = array($uid, $entrid);
709 $args = array_merge(array($query), $args_join, $args_set, $args_where);
a3a049fc 710 call_user_func_array(array('XDB', 'execute'), $args);
b235d980
GB
711
712
713 if (isset($pro['tels']) && is_array($pro['tels'])) {
714 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'pro' AND link_id = {?} ORDER BY tel_id", $uid, $entrid);
715 $telids = $res->fetchColumn();
716 foreach ($pro['tels'] as $tel) {
717 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
718 remove_user_tel($uid, 'pro', $entrid, $tel['telid']);
719 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
720 } else if (isset($tel['telid'])) {
721 update_user_tel($uid, 'pro', $entrid, $tel['telid'], $tel);
722 } else {
723 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
724 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
725 }
726 }
727 }
dd502514 728}
729// }}}
730// {{{ function remove_user_pro()
731function remove_user_pro($uid, $entrid) {
08cce2ff 732 XDB::execute("DELETE FROM entreprises WHERE entrid = {?} AND uid = {?}", $entrid, $uid);
b235d980 733 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'pro'", $entrid, $uid);
dd502514 734}
735// }}}
b235d980 736// {{{ function set_user_details_addresses()
dd502514 737function set_user_details_addresses($uid, $adrs) {
08cce2ff 738 $res = XDB::query("SELECT adrid FROM adresses WHERE uid = {?} AND adrid >= 1 ORDER BY adrid", $uid);
dd502514 739 $adrids = $res->fetchColumn();
740 foreach ($adrs as $adr) {
741 if (isset($adr['adrid']) && isset($adr['remove']) && $adr['remove']) {
742 remove_user_address($uid, $adr['adrid']);
743 if (isset($adrids[$adr['adrid']])) unset($adrids[$adr['adrid']]);
744 } else if (isset($adr['adrid'])) {
745 update_user_address($uid, $adr['adrid'], $adr);
746 } else {
747 for ($adrid = 1; isset($adrids[$adrid-1]) && ($adrids[$adrid-1] == $adrid); $adrid++);
748 add_user_address($uid, $adrid, $adr);
749 $adrids[$adrid-1] = $adrid;
750 }
751 }
752 require_once 'geoloc.inc.php';
753 localize_addresses($uid);
754}
755// }}}
756// {{{ function set_user_details_pro()
757
758function set_user_details_pro($uid, $pros)
759{
08cce2ff 760 $res = XDB::query("SELECT entrid FROM entreprises WHERE uid = {?} ORDER BY entrid", $uid);
dd502514 761 $entrids = $res->fetchColumn();
762 foreach ($pros as $pro) {
763 if (isset($pro['entrid']) && isset($pro['remove']) && $pro['remove']) {
764 remove_user_pro($uid, $pro['entrid']);
765 if (isset($entrids[$pro['entrid']])) unset($entrids[$pro['entrid']]);
766 } else if (isset($pro['entrid'])) {
767 update_user_pro($uid, $pro['entrid'], $pro);
768 } else {
769 for ($entrid = 0; isset($entrids[$entrid]) && ($entrids[$entrid] == $entrid); $entrid++);
770 add_user_pro($uid, $entrid, $pro);
771 }
772 }
773}
0337d704 774
775// }}}
dd502514 776// {{{ function set_user_details()
777function set_user_details($uid, $details) {
dd502514 778 if (isset($details['nom_usage'])) {
08cce2ff 779 XDB::execute("UPDATE auth_user_md5 SET nom_usage = {?} WHERE user_id = {?}", strtoupper($details['nom_usage']), $uid);
dd502514 780 }
dd502514 781 if (isset($details['nationalite'])) {
08cce2ff 782 XDB::execute(
dd502514 783 "UPDATE auth_user_md5 AS u
784 INNER JOIN geoloc_pays AS gp
785 SET u.nationalite = gp.a2
786 WHERE (gp.a2 = {?} OR gp.nat = {?})
787 AND u.user_id = {?}", $details['nationalite'], $details['nationalite'], $uid);
788 }
789 if (isset($details['adr']) && is_array($details['adr']))
790 set_user_details_addresses($uid, $details['adr']);
791 if (isset($details['adr_pro']) && is_array($details['adr_pro']))
792 set_user_details_pro($uid, $details['adr_pro']);
793 if (isset($details['binets']) && is_array($details['binets'])) {
08cce2ff 794 XDB::execute("DELETE FROM binets_ins WHERE user_id = {?}", $uid);
dd502514 795 foreach ($details['binets'] as $binet)
08cce2ff 796 XDB::execute(
dd502514 797 "INSERT INTO binets_ins (`user_id`, `binet_id`)
798 SELECT {?}, id FROM binets_def WHERE text = {?} LIMIT 1",
787bb3d7 799 $uid, $binet);
dd502514 800 }
801 if (isset($details['gpxs']) && is_array($details['gpxs'])) {
08cce2ff 802 XDB::execute("DELETE FROM groupesx_ins WHERE user_id = {?}", $uid);
dd502514 803 foreach ($details['gpxs'] as $groupex) {
a14159bf 804 if (preg_match('/<a href="[^"]*">([^<]+)</a>/u', $groupex, $a)) $groupex = $a[1];
08cce2ff 805 XDB::execute(
dd502514 806 "INSERT INTO groupesx_ins (`user_id`, `binet_id`)
807 SELECT {?}, id FROM groupesx_def WHERE text = {?} LIMIT 1",
808 $uid, $groupex);
787bb3d7 809 }
dd502514 810 }
b235d980
GB
811 if (isset($details['tels']) && is_array($details['tels'])) {
812 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'user' ORDER BY tel_id", $uid);
813 $telids = $res->fetchColumn();
814 foreach ($details['tels'] as $tel) {
815 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
816 remove_user_tel($uid, 'user', 0, $tel['telid']);
817 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
818 } else if (isset($tel['telid'])) {
819 update_user_tel($uid, 'user', 0, $tel['telid'], $tel);
820 } else {
821 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
822 add_user_tel($uid, 'user', 0, $telid, $tel);
823 }
824 }
825 }
826
f711b03f 827 // education
dd502514 828 // medals
829}
830// }}}
0337d704 831// {{{ function _user_reindex
832
c0c9f772 833function _user_reindex($uid, $keys, $muls, $pubs)
94f6c381 834{
0337d704 835 foreach ($keys as $i => $key) {
836 if ($key == '') {
837 continue;
838 }
839 $toks = preg_split('/[ \'\-]+/', $key);
840 $token = "";
841 $first = 5;
842 while ($toks) {
843 $token = strtolower(replace_accent(array_pop($toks) . $token));
844 $score = ($toks ? 0 : 10 + $first) * $muls[$i];
c0c9f772 845 XDB::execute("REPLACE INTO search_name (token, uid, soundex, score, flags)
846 VALUES ({?}, {?}, {?}, {?}, {?})",
847 $token, $uid, soundex_fr($token), $score, $pubs[$i] ? 'public' : '');
0337d704 848 $first = 0;
849 }
850 }
94f6c381 851 $res = XDB::query("SELECT nom_ini, nom, nom_usage, prenom_ini, prenom, promo, matricule
852 FROM auth_user_md5
853 WHERE user_id = {?}", $uid);
854 if (!$res->numRows()) {
855 unset($res);
856 return;
857 }
858 $array = $res->fetchOneRow();
859 $promo = intval(array_pop($array));
860 $mat = array_shift($array);
861 array_walk($array, 'soundex_fr');
862 XDB::execute("REPLACE INTO recherche_soundex
863 SET matricule = {?}, nom1_soundex = {?}, nom2_soundex= {?}, nom3_soundex = {?},
864 prenom1_soundex = {?}, prenom2_soundex= {?}, promo = {?}",
865 $mat, $array[0], $array[1], $array[2], $array[3], $array[4], $promo);
866 unset($res);
867 unset($array);
0337d704 868}
869
870// }}}
871// {{{ function user_reindex
872
873function user_reindex($uid) {
08cce2ff 874 XDB::execute("DELETE FROM search_name WHERE uid={?}", $uid);
875 $res = XDB::query("SELECT prenom, nom, nom_usage, profile_nick FROM auth_user_md5 INNER JOIN auth_user_quick USING(user_id) WHERE auth_user_md5.user_id = {?}", $uid);
36f58fcf 876 if ($res->numRows()) {
c0c9f772 877 _user_reindex($uid, $res->fetchOneRow(), array(1,1,1,0.2), array(true, true, true, false));
36f58fcf 878 } else { // not in auth_user_quick => still "pending"
879 $res = XDB::query("SELECT prenom, nom, nom_usage FROM auth_user_md5 WHERE auth_user_md5.user_id = {?}", $uid);
880 if ($res->numRows()) {
c0c9f772 881 _user_reindex($uid, $res->fetchOneRow(), array(1,1,1), array(true, true, true));
36f58fcf 882 }
883 }
0337d704 884}
885
886// }}}
433336f3 887// {{{ function set_new_usage()
74c55fd6 888
a11b5424 889function set_new_usage($uid, $usage, $alias=false)
787bb3d7 890{
74c55fd6 891 XDB::execute("UPDATE auth_user_md5 set nom_usage={?} WHERE user_id={?}",$usage ,$uid);
892 XDB::execute("DELETE FROM aliases WHERE FIND_IN_SET('usage',flags) AND id={?}", $uid);
893 if ($alias && $usage) {
894 XDB::execute("UPDATE aliases SET flags=flags & 255-1 WHERE id={?}", $uid);
895 XDB::execute("INSERT INTO aliases VALUES({?}, 'alias', 'usage,bestalias', {?}, null)",
896 $alias, $uid);
897 }
898 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
a11b5424 899 if ($r->numRows() == "") {
74c55fd6 900 XDB::execute("UPDATE aliases SET flags = 1 | flags WHERE id = {?} LIMIT 1", $uid);
a11b5424 901 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
74c55fd6 902 }
74c55fd6 903 user_reindex($uid);
a11b5424 904 return $r->fetchOneCell();
74c55fd6 905}
906
433336f3 907// }}}
908// {{{ function get_X_mat
909function get_X_mat($ourmat)
910{
787bb3d7 911 if (!preg_match('/^[0-9]{8}$/', $ourmat)) {
433336f3 912 // le matricule de notre base doit comporter 8 chiffres
913 return 0;
787bb3d7
FB
914 }
915
433336f3 916 $year = intval(substr($ourmat, 0, 4));
917 $rang = intval(substr($ourmat, 5, 3));
918 if ($year < 1996) {
787bb3d7 919 return;
433336f3 920 } elseif ($year < 2000) {
921 $year = intval(substr(1900 - $year, 1, 3));
922 return sprintf('%02u0%03u', $year, $rang);
923 } else {
924 $year = intval(substr(1900 - $year, 1, 3));
925 return sprintf('%03u%03u', $year, $rang);
926 }
787bb3d7
FB
927}
928
433336f3 929// }}}
930
931
a7de4ef7 932// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 933?>