Closes #529: Disabled state is private
[platal.git] / include / user.func.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 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 // {{{ 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 */
27 function user_clear_all_subs($user_id, $really_del=true)
28 {
29 // keep datas in : aliases, adresses, tels, applis_ins, binets_ins, contacts, groupesx_ins, homonymes, identification_ax, photo
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);
36 $res = XDB::query("SELECT alias FROM aliases WHERE type='a_vie' AND id={?}", $uid);
37 $alias = $res->fetchOneCell();
38
39 if ($really_del) {
40 XDB::execute("DELETE FROM emails WHERE uid={?}", $uid);
41 XDB::execute("DELETE FROM newsletter_ins WHERE user_id={?}", $uid);
42 }
43
44 XDB::execute("DELETE FROM virtual_redirect WHERE redirect = {?}", $alias.'@'.$globals->mail->domain);
45 XDB::execute("DELETE FROM virtual_redirect WHERE redirect = {?}", $alias.'@'.$globals->mail->domain2);
46
47 XDB::execute("UPDATE auth_user_md5 SET password='',smtppass='' WHERE user_id={?}", $uid);
48 XDB::execute("UPDATE auth_user_quick SET watch_flags='' WHERE user_id={?}", $uid);
49
50 XDB::execute("DELETE FROM competences_ins WHERE uid={?}", $uid);
51 XDB::execute("DELETE FROM entreprises WHERE uid={?}", $uid);
52 XDB::execute("DELETE FROM langues_ins WHERE uid={?}", $uid);
53 XDB::execute("DELETE FROM mentor_pays WHERE uid={?}", $uid);
54 XDB::execute("DELETE FROM mentor_secteur WHERE uid={?}", $uid);
55 XDB::execute("DELETE FROM mentor WHERE uid={?}", $uid);
56 XDB::execute("DELETE FROM perte_pass WHERE uid={?}", $uid);
57 XDB::execute("DELETE FROM requests WHERE user_id={?}", $uid);
58 XDB::execute("DELETE FROM user_changes WHERE user_id={?}", $uid);
59 XDB::execute("DELETE FROM watch_sub WHERE uid={?}", $uid);
60
61 $mmlist = new MMList(S::v('id'), S::v('password'));
62 $mmlist->kill($alias, $really_del);
63 }
64
65 // }}}
66 // {{{ function get_user_login()
67
68 function get_user_login($data, $get_forlife = false) {
69 global $globals, $page;
70
71 if (preg_match(',^[0-9]*$,', $data)) {
72 $res = XDB::query("SELECT alias FROM aliases WHERE type='a_vie' AND id={?}", $data);
73 if ($res->numRows()) {
74 return $res->fetchOneCell();
75 } else {
76 $page->trig("il n'y a pas d'utilisateur avec cet id");
77 return false;
78 }
79 }
80
81 $data = trim(strtolower($data));
82
83 if (strstr($data, '@')===false) {
84 $data = $data.'@'.$globals->mail->domain;
85 }
86
87 list($mbox, $fqdn) = explode('@', $data);
88 if ($fqdn == $globals->mail->domain || $fqdn == $globals->mail->domain2) {
89
90 $res = XDB::query("SELECT a.alias
91 FROM aliases AS a
92 INNER JOIN aliases AS b ON (a.id = b.id AND b.type IN ('alias', 'a_vie') AND b.alias={?})
93 WHERE a.type = 'a_vie'", $mbox);
94 if ($res->numRows()) {
95 return $get_forlife ? $res->fetchOneCell() : $mbox;
96 } else {
97 $page->trig("il n'y a pas d'utilisateur avec ce login");
98 return false;
99 }
100
101 } elseif ($fqdn == $globals->mail->alias_dom || $fqdn == $globals->mail->alias_dom2) {
102
103 $res = XDB::query("SELECT redirect
104 FROM virtual_redirect
105 INNER JOIN virtual USING(vid)
106 WHERE alias={?}", $mbox.'@'.$globals->mail->alias_dom);
107 if ($redir = $res->fetchOneCell()) {
108 list($alias) = explode('@', $redir);
109 } else {
110 $page->trig("il n'y a pas d'utilisateur avec cet alias");
111 $alias = false;
112 }
113 return $alias;
114
115 } else {
116
117 $res = XDB::query("SELECT alias
118 FROM aliases AS a
119 INNER JOIN emails AS e ON e.uid=a.id
120 WHERE e.email={?} AND a.type='a_vie'", $data);
121 switch ($i = $res->numRows()) {
122 case 0:
123 $page->trig("il n'y a pas d'utilisateur avec cette addresse mail");
124 return false;
125
126 case 1:
127 return $res->fetchOneCell();
128
129 default:
130 if (S::has_perms()) {
131 $aliases = $res->fetchColumn();
132 $page->trig("Il y a $i utilisateurs avec cette adresse mail : ".join(', ', $aliases));
133 } else {
134 $res->free();
135 }
136 }
137 }
138
139 return false;
140 }
141
142 // }}}
143 // {{{ function get_user_forlife()
144
145 function get_user_forlife($data) {
146 return get_user_login($data, true);
147 }
148
149 // }}}
150 // {{{ function get_users_forlife_list()
151
152 function get_users_forlife_list($members, $strict = false)
153 {
154 if (strlen(trim($members)) == 0) {
155 return null;
156 }
157 $members = explode(' ', $members);
158 if ($members) {
159 $list = array();
160 foreach ($members as $i => $alias) {
161 if (($login = get_user_forlife($alias)) !== false) {
162 $list[$i] = $login;
163 } else if(!$strict) {
164 $list[$i] = $alias;
165 }
166 }
167 return $list;
168 }
169 return null;
170 }
171
172 // }}}
173 // {{{ function has_user_right()
174 function has_user_right($pub, $view = 'private') {
175 if ($pub == $view) return true;
176 // all infos available for private
177 if ($view == 'private') return true;
178 // public infos available for all
179 if ($pub == 'public') return true;
180 // here we have view = ax or public, and pub = ax or private, and pub != view
181 return false;
182 }
183 // }}}
184 // {{{ function get_user_details_pro()
185
186 function get_user_details_pro($uid, $view = 'private')
187 {
188 $sql = "SELECT e.entreprise, s.label as secteur , ss.label as sous_secteur , f.fonction_fr as fonction,
189 e.poste, e.adr1, e.adr2, e.adr3, e.postcode, e.city, e.entrid,
190 gp.pays AS countrytxt, gr.name AS region, e.tel, e.fax, e.mobile, e.entrid,
191 e.pub, e.adr_pub, e.tel_pub, e.email, e.email_pub, e.web
192 FROM entreprises AS e
193 LEFT JOIN emploi_secteur AS s ON(e.secteur = s.id)
194 LEFT JOIN emploi_ss_secteur AS ss ON(e.ss_secteur = ss.id AND e.secteur = ss.secteur)
195 LEFT JOIN fonctions_def AS f ON(e.fonction = f.id)
196 LEFT JOIN geoloc_pays AS gp ON (gp.a2 = e.country)
197 LEFT JOIN geoloc_region AS gr ON (gr.a2 = e.country and gr.region = e.region)
198 WHERE e.uid = {?}
199 ORDER BY e.entrid";
200 $res = XDB::query($sql, $uid);
201 $all_pro = $res->fetchAllAssoc();
202 foreach ($all_pro as $i => $pro) {
203 if (!has_user_right($pro['pub'], $view))
204 unset($all_pro[$i]);
205 else {
206 if (!has_user_right($pro['adr_pub'], $view)) {
207 if ($pro['adr1'] == '' &&
208 $pro['adr2'] == '' &&
209 $pro['adr3'] == '' &&
210 $pro['postcode'] == '' &&
211 $pro['city'] == '' &&
212 $pro['countrytxt'] == '' &&
213 $pro['region'] == '') {
214 $all_pro[$i]['adr_pub'] = $view;
215 } else {
216 $all_pro[$i]['adr1'] = '';
217 $all_pro[$i]['adr2'] = '';
218 $all_pro[$i]['adr3'] = '';
219 $all_pro[$i]['postcode'] = '';
220 $all_pro[$i]['city'] = '';
221 $all_pro[$i]['countrytxt'] = '';
222 $all_pro[$i]['region'] = '';
223 }
224 }
225 if (!has_user_right($pro['tel_pub'], $view)) {
226 // if no tel was defined, then the viewer will be able to write it
227 if ($pro['tel'] == '' &&
228 $pro['fax'] == '' &&
229 $pro['mobile'] == '') {
230 $all_pro[$i]['tel_pub'] = $view;
231 } else {
232 $all_pro[$i]['tel'] = '';
233 $all_pro[$i]['fax'] = '';
234 $all_pro[$i]['mobile'] = '';
235 }
236 }
237 if (!has_user_right($pro['email_pub'], $view)) {
238 if ($pro['email'] == '')
239 $all_pro[$i]['email_pub'] = $view;
240 else
241 $all_pro[$i]['email'] = '';
242 }
243 if ($all_pro[$i]['adr1'] == '' &&
244 $all_pro[$i]['adr2'] == '' &&
245 $all_pro[$i]['adr3'] == '' &&
246 $all_pro[$i]['postcode'] == '' &&
247 $all_pro[$i]['city'] == '' &&
248 $all_pro[$i]['countrytxt'] == '' &&
249 $all_pro[$i]['region'] == '' &&
250 $all_pro[$i]['entreprise'] == '' &&
251 $all_pro[$i]['fonction'] == '' &&
252 $all_pro[$i]['secteur'] == '' &&
253 $all_pro[$i]['poste'] == '' &&
254 $all_pro[$i]['tel'] == '' &&
255 $all_pro[$i]['fax'] == '' &&
256 $all_pro[$i]['mobile'] == '' &&
257 $all_pro[$i]['email'] == '')
258 unset($all_pro[$i]);
259 }
260 }
261 if (!count($all_pro)) return false;
262 return $all_pro;
263 }
264
265 // }}}
266 function get_user_details_adr($uid, $view = 'private') {
267 $sql = "SELECT a.adrid, a.adr1,a.adr2,a.adr3,a.postcode,a.city,
268 gp.pays AS countrytxt,a.region, a.regiontxt,
269 FIND_IN_SET('active', a.statut) AS active, a.adrid,
270 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
271 a.pub, gp.display
272 FROM adresses AS a
273 LEFT JOIN geoloc_pays AS gp ON (gp.a2=a.country)
274 WHERE uid= {?} AND NOT FIND_IN_SET('pro',a.statut)
275 ORDER BY NOT FIND_IN_SET('active',a.statut), FIND_IN_SET('temporaire',a.statut), FIND_IN_SET('res-secondaire',a.statut)";
276 $res = XDB::query($sql, $uid);
277 $all_adr = $res->fetchAllAssoc();
278 $adrid_index = array();
279 foreach ($all_adr as $i => $adr) {
280 if (!has_user_right($adr['pub'], $view))
281 unset($all_adr[$i]);
282 else
283 $adrid_index[$adr['adrid']] = $i;
284 }
285
286 $sql = "SELECT t.adrid, t.tel_pub, t.tel_type, t.tel, t.telid
287 FROM tels AS t
288 INNER JOIN adresses AS a ON (a.uid = t.uid) AND (a.adrid = t.adrid)
289 WHERE t.uid = {?} AND NOT FIND_IN_SET('pro',a.statut)
290 ORDER BY t.adrid, t.tel_type DESC, t.telid";
291 $restel = XDB::iterator($sql, $uid);
292 while ($nexttel = $restel->next()) {
293 if (has_user_right($nexttel['tel_pub'], $view)) {
294 $adrid = $nexttel['adrid'];
295 unset($nexttel['adrid']);
296 if (isset($adrid_index[$adrid])) {
297 if (!isset($all_adr[$adrid_index[$adrid]]['tels']))
298 $all_adr[$adrid_index[$adrid]]['tels'] = array($nexttel);
299 else
300 $all_adr[$adrid_index[$adrid]]['tels'][] = $nexttel;
301 }
302 }
303 }
304 return $all_adr;
305 }
306 // {{{ function get_user_details()
307
308 function &get_user_details($login, $from_uid = '', $view = 'private')
309 {
310 $reqsql = "SELECT u.user_id, u.promo, u.promo_sortie, u.prenom, u.nom, u.nom_usage, u.date, u.cv,
311 u.perms IN ('admin','user') AS inscrit, FIND_IN_SET('femme', u.flags) AS sexe, u.deces != 0 AS dcd, u.deces,
312 q.profile_nick AS nickname, q.profile_from_ax, q.profile_mobile AS mobile, q.profile_web AS web, q.profile_freetext AS freetext,
313 q.profile_mobile_pub AS mobile_pub, q.profile_web_pub AS web_pub, q.profile_freetext_pub AS freetext_pub,
314 q.profile_medals_pub AS medals_pub,
315 IF(gp.nat='',gp.pays,gp.nat) AS nationalite, gp.a2 AS iso3166,
316 a.alias AS forlife, a2.alias AS bestalias,
317 c.uid IS NOT NULL AS is_contact,
318 s.text AS section, p.x, p.y, p.pub AS photo_pub,
319 u.matricule_ax,
320 m.expertise != '' AS is_referent,
321 COUNT(e.email) > 0 AS actif
322 FROM auth_user_md5 AS u
323 INNER JOIN auth_user_quick AS q USING(user_id)
324 INNER JOIN aliases AS a ON (u.user_id=a.id AND a.type='a_vie')
325 INNER JOIN aliases AS a2 ON (u.user_id=a2.id AND FIND_IN_SET('bestalias',a2.flags))
326 LEFT JOIN contacts AS c ON (c.uid = {?} and c.contact = u.user_id)
327 LEFT JOIN geoloc_pays AS gp ON (gp.a2 = u.nationalite)
328 INNER JOIN sections AS s ON (s.id = u.section)
329 LEFT JOIN photo AS p ON (p.uid = u.user_id)
330 LEFT JOIN mentor AS m ON (m.uid = u.user_id)
331 LEFT JOIN emails AS e ON (e.uid = u.user_id AND e.flags='active')
332 WHERE a.alias = {?}
333 GROUP BY u.user_id";
334 $res = XDB::query($reqsql, $from_uid, $login);
335 $user = $res->fetchOneAssoc();
336 $uid = $user['user_id'];
337 // hide orange status, cv, nickname, section
338 if (!has_user_right('private', $view)) {
339 $user['promo_sortie'] = $user['promo'] + 3;
340 $user['cv'] = '';
341 $user['nickname'] = '';
342 $user['section'] = '';
343 }
344 // hide mobile
345 if (!has_user_right($user['mobile_pub'], $view)) {
346 if ($user['mobile'] == '')
347 $user['mobile_pub'] = $view;
348 else
349 $user['mobile'] = '';
350 }
351 // hide web
352 if (!has_user_right($user['web_pub'], $view)) {
353 if ($user['web'] == '')
354 $user['web_pub'] = $view;
355 else
356 $user['web'] = '';
357 }
358 // hide freetext
359 if (!has_user_right($user['freetext_pub'], $view)) {
360 if ($user['freetext'] == '')
361 $user['freetext_pub'] = $view;
362 else
363 $user['freetext'] = '';
364 }
365
366 $user['adr_pro'] = get_user_details_pro($uid, $view);
367 $user['adr'] = get_user_details_adr($uid, $view);
368
369 if (has_user_right('private', $view)) {
370 $sql = "SELECT text
371 FROM binets_ins
372 LEFT JOIN binets_def ON binets_ins.binet_id = binets_def.id
373 WHERE user_id = {?}";
374 $res = XDB::query($sql, $uid);
375 $user['binets'] = $res->fetchColumn();
376 $user['binets_join'] = join(', ', $user['binets']);
377
378 $res = XDB::iterRow("SELECT text, url
379 FROM groupesx_ins
380 LEFT JOIN groupesx_def ON groupesx_ins.gid = groupesx_def.id
381 WHERE guid = {?}", $uid);
382 $user['gpxs'] = Array();
383 while (list($gxt, $gxu) = $res->next()) {
384 $user['gpxs'][] = $gxu ? "<a href=\"$gxu\">$gxt</a>" : $gxt;
385 }
386 $user['gpxs_join'] = join(', ', $user['gpxs']);
387 }
388
389 $res = XDB::iterRow("SELECT applis_def.text, applis_def.url, applis_ins.type
390 FROM applis_ins
391 INNER JOIN applis_def ON applis_def.id = applis_ins.aid
392 WHERE uid={?}
393 ORDER BY ordre", $uid);
394
395 $user['applis_fmt'] = Array();
396 $user['formation'] = Array();
397 while (list($txt, $url, $type) = $res->next()) {
398 $user['formation'][] = $txt." ".$type;
399 require_once('applis.func.inc.php');
400 $user['applis_fmt'][] = applis_fmt($type, $txt, $url);
401 }
402 $user['applis_join'] = join(', ', $user['applis_fmt']);
403
404 if (has_user_right($user['medals_pub'], $view)) {
405 $res = XDB::iterator("SELECT m.id, m.text AS medal, m.type, m.img, s.gid, g.text AS grade
406 FROM profile_medals_sub AS s
407 INNER JOIN profile_medals AS m ON ( s.mid = m.id )
408 LEFT JOIN profile_medals_grades AS g ON ( s.mid = g.mid AND s.gid = g.gid )
409 WHERE s.uid = {?}", $uid);
410 $user['medals'] = Array();
411 while ($tmp = $res->next()) {
412 $user['medals'][] = $tmp;
413 }
414 }
415
416 return $user;
417 }
418 // }}}
419 // {{{ function add_user_address()
420 function add_user_address($uid, $adrid, $adr) {
421 XDB::execute(
422 "INSERT INTO adresses (`uid`, `adrid`, `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `datemaj`, `pub`) (
423 SELECT u.user_id, {?}, {?}, {?}, {?}, {?}, {?}, gp.a2, NOW(), {?}
424 FROM auth_user_md5 AS u
425 LEFT JOIN geoloc_pays AS gp ON (gp.pays LIKE {?} OR gp.country LIKE {?} OR gp.a2 LIKE {?})
426 WHERE u.user_id = {?}
427 LIMIT 1)",
428 $adrid, $adr['adr1'], $adr['adr2'], $adr['adr3'], $adr['postcode'], $adr['city'], $adr['pub'], $adr['countrytxt'], $adr['countrytxt'], $adr['countrytxt'], $uid);
429 if (isset($adr['tels']) && is_array($adr['tels'])) {
430 $telid = 0;
431 foreach ($adr['tels'] as $tel) if ($tel['tel']) {
432 add_user_tel($uid, $adrid, $telid, $tel);
433 $telid ++;
434 }
435 }
436 }
437 // }}}
438 // {{{ function update_user_address()
439 function update_user_address($uid, $adrid, $adr) {
440 // update address
441 XDB::execute(
442 "UPDATE adresses AS a LEFT JOIN geoloc_pays AS gp ON (gp.pays = {?})
443 SET `adr1` = {?}, `adr2` = {?}, `adr3` = {?},
444 `postcode` = {?}, `city` = {?}, a.`country` = gp.a2, `datemaj` = NOW(), `pub` = {?}
445 WHERE adrid = {?} AND uid = {?}",
446 $adr['country_txt'],
447 $adr['adr1'], $adr['adr2'], $adr['adr3'],
448 $adr['postcode'], $adr['city'], $adr['pub'], $adrid, $uid);
449 if (isset($adr['tels']) && is_array($adr['tels'])) {
450 $res = XDB::query("SELECT telid FROM tels WHERE uid = {?} AND adrid = {?} ORDER BY telid", $uid, $adrid);
451 $telids = $res->fetchColumn();
452 foreach ($adr['tels'] as $tel) {
453 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
454 remove_user_tel($uid, $adrid, $tel['telid']);
455 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
456 } else if (isset($tel['telid'])) {
457 update_user_tel($uid, $adrid, $tel['telid'], $tel);
458 } else {
459 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
460 add_user_tel($uid, $adrid, $telid, $tel);
461 }
462 }
463 }
464 }
465 // }}}
466 // {{{ function remove_user_address()
467 function remove_user_address($uid, $adrid) {
468 XDB::execute("DELETE FROM adresses WHERE adrid = {?} AND uid = {?}", $adrid, $uid);
469 XDB::execute("DELETE FROM tels WHERE adrid = {?} AND uid = {?}", $adrid, $uid);
470 }
471 // }}}
472 // {{{ function add_user_tel()
473 function add_user_tel($uid, $adrid, $telid, $tel) {
474 XDB::execute(
475 "INSERT INTO tels SET uid = {?}, adrid = {?}, telid = {?}, tel = {?}, tel_type = {?}, tel_pub = {?}",
476 $uid, $adrid, $telid, $tel['tel'], $tel['tel_type'], $tel['tel_pub']);
477 }
478 // }}}
479 // {{{ function update_user_tel()
480 function update_user_tel($uid, $adrid, $telid, $tel) {
481 XDB::execute(
482 "UPDATE tels SET tel = {?}, tel_type = {?}, tel_pub = {?}
483 WHERE telid = {?} AND adrid = {?} AND uid = {?}",
484 $tel['tel'], $tel['tel_type'], $tel['tel_pub'],
485 $telid, $adrid, $uid);
486 }
487 // }}}
488 // {{{ function remove_user_tel()
489 function remove_user_tel($uid, $adrid, $telid) {
490 XDB::execute("DELETE FROM tels WHERE telid = {?} AND adrid = {?} AND uid = {?}",
491 $telid, $adrid, $uid);
492 }
493 // }}}
494 // {{{ function add_user_pro()
495 function add_user_pro($uid, $entrid, $pro) {
496 XDB::execute(
497 "INSERT INTO entreprises (`uid`, `entrid`, `entreprise`, `poste`, `secteur`, `ss_secteur`, `fonction`,
498 `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `region`, `tel`, `fax`, `mobile`, `email`, `web`, `pub`, `adr_pub`, `tel_pub`, `email_pub`)
499 SELECT u.user_id, {?}, {?}, {?}, s.id, ss.id, f.id,
500 {?}, {?}, {?}, {?}, {?}, gp.a2, gr.region, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}
501 FROM auth_user_md5 AS u
502 LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
503 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
504 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})
505 LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
506 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})
507 WHERE u.user_id = {?}
508 LIMIT 1",
509 $entrid, $pro['entreprise'], $pro['poste'],
510 $pro['adr1'], $pro['adr2'], $pro['adr3'], $pro['postcode'], $pro['city'], $pro['tel'], $pro['fax'], $pro['mobile'], $pro['email'], $pro['web'], $pro['pub'], $pro['adr_pub'], $pro['tel_pub'], $pro['email_pub'],
511 $pro['secteur'], $pro['sous_secteur'], $pro['fonction'], $pro['fonction'],
512 $pro['countrytxt'], $pro['countrytxt'], $pro['region'],
513 $uid);
514 }
515 // }}}
516 // {{{ function update_user_pro()
517 function update_user_pro($uid, $entrid, $pro) {
518 $join = "";
519 $set = "";
520 $args_join = array();
521 $args_set = array();
522
523 $join .= "LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
524 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
525 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})";
526 $args_join[] = $pro['secteur'];
527 $args_join[] = $pro['sous_secteur'];
528 $args_join[] = $pro['fonction'];
529 $args_join[] = $pro['fonction'];
530 $set .= ", e.`entreprise` = {?}, e.`secteur` = s.id, e.`ss_secteur` = ss.id, e.`fonction` = f.id, e.`poste`= {?}, e.`web` = {?}, e.`pub` = {?}";
531 $args_set[] = $pro['entreprise'];
532 $args_set[] = $pro['poste'];
533 $args_set[] = $pro['web'];
534 $args_set[] = $pro['pub'];
535
536 if (isset($pro['adr1'])) {
537 $join .= "LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
538 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})";
539 $args_join[] = $pro['countrytxt'];
540 $args_join[] = $pro['countrytxt'];
541 $args_join[] = $pro['region'];
542 $set .= ", e.`adr1` = {?}, e.`adr2` = {?}, e.`adr3` = {?}, e.`postcode` = {?}, e.`city` = {?}, e.`country` = gp.a2, e.`region` = gr.region, e.`adr_pub` = {?}";
543 $args_set[] = $pro['adr1'];
544 $args_set[] = $pro['adr2'];
545 $args_set[] = $pro['adr3'];
546 $args_set[] = $pro['postcode'];
547 $args_set[] = $pro['city'];
548 $args_set[] = $pro['adr_pub'];
549 }
550
551 if (isset($pro['tel'])) {
552 $set .= ", e.`tel` = {?}, e.`fax` = {?}, e.`mobile` = {?}, e.tel_pub = {?}";
553 $args_set[] = $pro['tel'];
554 $args_set[] = $pro['fax'];
555 $args_set[] = $pro['mobile'];
556 $args_set[] = $pro['tel_pub'];
557 }
558 if (isset($pro['email'])) {
559 $set .= ", e.`email` = {?}, e.`email_pub` = {?}";
560 $args_set[] = $pro['email'];
561 $args_set[] = $pro['email_pub'];
562 }
563 $query = "UPDATE entreprises AS e ".$join." SET ".substr($set,1)." WHERE e.uid = {?} AND e.entrid = {?}";
564 $args_where = array($uid, $entrid);
565 $args = array_merge(array($query), $args_join, $args_set, $args_where);
566 call_user_func_array(array('XDB', 'execute'), $args);
567 }
568 // }}}
569 // {{{ function remove_user_pro()
570 function remove_user_pro($uid, $entrid) {
571 XDB::execute("DELETE FROM entreprises WHERE entrid = {?} AND uid = {?}", $entrid, $uid);
572 }
573 // }}}
574 // {{{ function set_user_details()
575 function set_user_details_addresses($uid, $adrs) {
576 $res = XDB::query("SELECT adrid FROM adresses WHERE uid = {?} AND adrid >= 1 ORDER BY adrid", $uid);
577 $adrids = $res->fetchColumn();
578 foreach ($adrs as $adr) {
579 if (isset($adr['adrid']) && isset($adr['remove']) && $adr['remove']) {
580 remove_user_address($uid, $adr['adrid']);
581 if (isset($adrids[$adr['adrid']])) unset($adrids[$adr['adrid']]);
582 } else if (isset($adr['adrid'])) {
583 update_user_address($uid, $adr['adrid'], $adr);
584 } else {
585 for ($adrid = 1; isset($adrids[$adrid-1]) && ($adrids[$adrid-1] == $adrid); $adrid++);
586 add_user_address($uid, $adrid, $adr);
587 $adrids[$adrid-1] = $adrid;
588 }
589 }
590 require_once 'geoloc.inc.php';
591 localize_addresses($uid);
592 }
593 // }}}
594 // {{{ function set_user_details_pro()
595
596 function set_user_details_pro($uid, $pros)
597 {
598 $res = XDB::query("SELECT entrid FROM entreprises WHERE uid = {?} ORDER BY entrid", $uid);
599 $entrids = $res->fetchColumn();
600 foreach ($pros as $pro) {
601 if (isset($pro['entrid']) && isset($pro['remove']) && $pro['remove']) {
602 remove_user_pro($uid, $pro['entrid']);
603 if (isset($entrids[$pro['entrid']])) unset($entrids[$pro['entrid']]);
604 } else if (isset($pro['entrid'])) {
605 update_user_pro($uid, $pro['entrid'], $pro);
606 } else {
607 for ($entrid = 0; isset($entrids[$entrid]) && ($entrids[$entrid] == $entrid); $entrid++);
608 add_user_pro($uid, $entrid, $pro);
609 }
610 }
611 }
612
613 // }}}
614 // {{{ function set_user_details()
615 function set_user_details($uid, $details) {
616 if (isset($details['nom_usage'])) {
617 XDB::execute("UPDATE auth_user_md5 SET nom_usage = {?} WHERE user_id = {?}", strtoupper($details['nom_usage']), $uid);
618 }
619 if (isset($details['mobile'])) {
620 XDB::execute("UPDATE auth_user_quick SET profile_mobile = {?} WHERE user_id = {?}", $details['mobile'], $uid);
621 }
622 if (isset($details['nationalite'])) {
623 XDB::execute(
624 "UPDATE auth_user_md5 AS u
625 INNER JOIN geoloc_pays AS gp
626 SET u.nationalite = gp.a2
627 WHERE (gp.a2 = {?} OR gp.nat = {?})
628 AND u.user_id = {?}", $details['nationalite'], $details['nationalite'], $uid);
629 }
630 if (isset($details['adr']) && is_array($details['adr']))
631 set_user_details_addresses($uid, $details['adr']);
632 if (isset($details['adr_pro']) && is_array($details['adr_pro']))
633 set_user_details_pro($uid, $details['adr_pro']);
634 if (isset($details['binets']) && is_array($details['binets'])) {
635 XDB::execute("DELETE FROM binets_ins WHERE user_id = {?}", $uid);
636 foreach ($details['binets'] as $binet)
637 XDB::execute(
638 "INSERT INTO binets_ins (`user_id`, `binet_id`)
639 SELECT {?}, id FROM binets_def WHERE text = {?} LIMIT 1",
640 $uid, $binet);
641 }
642 if (isset($details['gpxs']) && is_array($details['gpxs'])) {
643 XDB::execute("DELETE FROM groupesx_ins WHERE user_id = {?}", $uid);
644 foreach ($details['gpxs'] as $groupex) {
645 if (preg_match('/<a href="[^"]*">([^<]+)</a>/', $groupex, $a)) $groupex = $a[1];
646 XDB::execute(
647 "INSERT INTO groupesx_ins (`user_id`, `binet_id`)
648 SELECT {?}, id FROM groupesx_def WHERE text = {?} LIMIT 1",
649 $uid, $groupex);
650 }
651 }
652 // applis
653 // medals
654 }
655 // }}}
656 // {{{ function _user_reindex
657
658 function _user_reindex($uid, $keys, $muls) {
659 foreach ($keys as $i => $key) {
660 if ($key == '') {
661 continue;
662 }
663 $toks = preg_split('/[ \'\-]+/', $key);
664 $token = "";
665 $first = 5;
666 while ($toks) {
667 $token = strtolower(replace_accent(array_pop($toks) . $token));
668 $score = ($toks ? 0 : 10 + $first) * $muls[$i];
669 mysql_query("REPLACE INTO search_name (token, uid, score) VALUES('$token',$uid,$score)");
670 $first = 0;
671 }
672 }
673 }
674
675 // }}}
676 // {{{ function user_reindex
677
678 function user_reindex($uid) {
679 XDB::execute("DELETE FROM search_name WHERE uid={?}", $uid);
680 $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);
681 _user_reindex($uid, $res->fetchOneRow(), array(1,1,1,0.2));
682 }
683
684 // }}}
685
686 function set_new_usage($uid, $usage, $alias=false) {
687 XDB::execute("UPDATE auth_user_md5 set nom_usage={?} WHERE user_id={?}",$usage ,$uid);
688 XDB::execute("DELETE FROM aliases WHERE FIND_IN_SET('usage',flags) AND id={?}", $uid);
689 if ($alias && $usage) {
690 XDB::execute("UPDATE aliases SET flags=flags & 255-1 WHERE id={?}", $uid);
691 XDB::execute("INSERT INTO aliases VALUES({?}, 'alias', 'usage,bestalias', {?}, null)",
692 $alias, $uid);
693 }
694 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
695 if ($r->fetchOneCell() == "") {
696 XDB::execute("UPDATE aliases SET flags = 1 | flags WHERE id = {?} LIMIT 1", $uid);
697 }
698 require_once 'user.func.inc.php';
699 user_reindex($uid);
700 }
701
702 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
703 ?>