3b18c7b18630b5872eac4e658433fd611189ba50
[platal.git] / include / user.func.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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, profile_education, 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 $user = User::getSilent($uid);
37 list($alias) = explode('@', $user->forlifeEmail());
38
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
43 if ($really_del) {
44 array_push($tables_to_clear['uid'], 'emails', 'groupex.membres', 'contacts', 'adresses', 'profile_phones',
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');
47 $tables_to_clear['id'] = array('aliases');
48 $tables_to_clear['contact'] = array('contacts');
49 XDB::execute("UPDATE auth_user_md5
50 SET date_ins = 0, promo_sortie = 0, nom_usage = '', password = '', perms = 'pending',
51 nationalite = '', nationalite2 = '', nationalite3 = '', cv = '', section = 0,
52 date = 0, smtppass = '', mail_storage = ''
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);
61 }
62
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
66 foreach ($tables_to_clear as $key=>&$tables) {
67 foreach ($tables as $table) {
68 XDB::execute("DELETE FROM $table WHERE $key={?}", $uid);
69 }
70 }
71
72 $mmlist = new MMList(S::v('uid'), S::v('password'));
73 $mmlist->kill($alias, $really_del);
74
75 // Deactivates, when available, the Google Apps account of the user.
76 if ($globals->mailstorage->googleapps_domain) {
77 require_once 'googleapps.inc.php';
78 if (GoogleAppsAccount::account_status($uid)) {
79 $account = new GoogleAppsAccount($user);
80 $account->suspend();
81 }
82 }
83 }
84
85 // }}}
86 // {{{ function has_user_right()
87 function has_user_right($pub, $view = 'private') {
88 if ($pub == $view) return true;
89 // all infos available for private
90 if ($view == 'private') return true;
91 // public infos available for all
92 if ($pub == 'public') return true;
93 // here we have view = ax or public, and pub = ax or private, and pub != view
94 return false;
95 }
96 // }}}
97 // {{{ function get_not_registered_user()
98
99 function get_not_registered_user($login, $iterator = false)
100 {
101 global $globals;
102 @list($login, $domain) = explode('@', $login);
103 if ($domain && $domain != $globals->mail->domain && $domain != $globals->mail->domain2) {
104 return null;
105 }
106 @list($prenom, $nom, $promo) = explode('.', $login);
107 $where = 'REPLACE(REPLACE(REPLACE(nom, " ", ""), "-", ""), "\'", "") LIKE CONCAT("%", {?}, "%")
108 AND REPLACE(REPLACE(REPLACE(prenom, " ", ""), "-", ""), "\'", "") LIKE CONCAT("%", {?}, "%")';
109 if ($promo) {
110 if (preg_match('/^[0-9]{2}$/', $promo)) {
111 $where .= 'AND MOD(promo, 100) = {?}';
112 } elseif (preg_match('/^[0-9]{4}$/', $promo)) {
113 $where .= 'AND promo = {?}';
114 }
115 }
116 $sql = "SELECT user_id, nom, prenom, promo
117 FROM auth_user_md5
118 WHERE $where AND perms = 'pending'
119 ORDER BY promo, nom, prenom";
120 if ($iterator) {
121 return XDB::iterator($sql, $nom, $prenom, $promo);
122 } else {
123 $res = XDB::query($sql, $nom, $prenom, $promo);
124 return $res->fetchAllAssoc();
125 }
126 }
127
128 // }}}
129 // {{{ function get_user_details_pro()
130
131 function get_user_details_pro($uid, $view = 'private')
132 {
133 $sql = "SELECT e.entreprise, s.label as secteur , ss.label as sous_secteur , f.fonction_fr as fonction,
134 e.poste, e.adr1, e.adr2, e.adr3, e.postcode, e.city, e.entrid,
135 gp.pays AS countrytxt, gr.name AS region, e.entrid,
136 e.pub, e.adr_pub, e.email, e.email_pub, e.web
137 FROM entreprises AS e
138 LEFT JOIN emploi_secteur AS s ON(e.secteur = s.id)
139 LEFT JOIN emploi_ss_secteur AS ss ON(e.ss_secteur = ss.id AND e.secteur = ss.secteur)
140 LEFT JOIN fonctions_def AS f ON(e.fonction = f.id)
141 LEFT JOIN geoloc_pays AS gp ON (gp.a2 = e.country)
142 LEFT JOIN geoloc_region AS gr ON (gr.a2 = e.country and gr.region = e.region)
143 WHERE e.uid = {?}
144 ORDER BY e.entrid";
145 $res = XDB::query($sql, $uid);
146 $all_pro = $res->fetchAllAssoc();
147 foreach ($all_pro as $i => $pro) {
148 if (!has_user_right($pro['pub'], $view))
149 unset($all_pro[$i]);
150 else {
151 if (!has_user_right($pro['adr_pub'], $view)) {
152 if ($pro['adr1'] == '' &&
153 $pro['adr2'] == '' &&
154 $pro['adr3'] == '' &&
155 $pro['postcode'] == '' &&
156 $pro['city'] == '' &&
157 $pro['countrytxt'] == '' &&
158 $pro['region'] == '') {
159 $all_pro[$i]['adr_pub'] = $view;
160 } else {
161 $all_pro[$i]['adr1'] = '';
162 $all_pro[$i]['adr2'] = '';
163 $all_pro[$i]['adr3'] = '';
164 $all_pro[$i]['postcode'] = '';
165 $all_pro[$i]['city'] = '';
166 $all_pro[$i]['countrytxt'] = '';
167 $all_pro[$i]['region'] = '';
168 }
169 }
170 $sql = "SELECT pub AS tel_pub, tel_type, display_tel AS tel, comment
171 FROM profile_phones AS t
172 WHERE uid = {?} AND link_type = 'pro' AND link_id = {?}
173 ORDER BY link_id, tel_type DESC, tel_id";
174 $restel = XDB::iterator($sql, $uid, $pro['entrid']);
175 while ($nexttel = $restel->next()) {
176 if (has_user_right($nexttel['tel_pub'], $view)) {
177 if (!isset($all_pro[$i]['tels'])) {
178 $all_pro[$i]['tels'] = array($nexttel);
179 } else {
180 $all_pro[$i]['tels'][] = $nexttel;
181 }
182 }
183 }
184 if (!has_user_right($pro['email_pub'], $view)) {
185 if ($pro['email'] == '')
186 $all_pro[$i]['email_pub'] = $view;
187 else
188 $all_pro[$i]['email'] = '';
189 }
190 if ($all_pro[$i]['adr1'] == '' &&
191 $all_pro[$i]['adr2'] == '' &&
192 $all_pro[$i]['adr3'] == '' &&
193 $all_pro[$i]['postcode'] == '' &&
194 $all_pro[$i]['city'] == '' &&
195 $all_pro[$i]['countrytxt'] == '' &&
196 $all_pro[$i]['region'] == '' &&
197 $all_pro[$i]['entreprise'] == '' &&
198 $all_pro[$i]['fonction'] == '' &&
199 $all_pro[$i]['secteur'] == '' &&
200 $all_pro[$i]['poste'] == '' &&
201 (!isset($all_pro[$i]['tels'])) &&
202 $all_pro[$i]['email'] == '')
203 unset($all_pro[$i]);
204 }
205 }
206 if (!count($all_pro)) return false;
207 return $all_pro;
208 }
209
210 // }}}
211 // {{{ function get_user_details_adr()
212
213 function get_user_details_adr($uid, $view = 'private') {
214 $sql = "SELECT a.adrid, a.adr1,a.adr2,a.adr3,a.postcode,a.city,
215 gp.pays AS countrytxt,a.region, a.regiontxt,
216 FIND_IN_SET('active', a.statut) AS active, a.adrid,
217 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
218 FIND_IN_SET('courrier', a.statut) AS courier,
219 a.pub, gp.display, a.comment
220 FROM adresses AS a
221 LEFT JOIN geoloc_pays AS gp ON (gp.a2=a.country)
222 WHERE uid= {?} AND NOT FIND_IN_SET('pro',a.statut)
223 ORDER BY NOT FIND_IN_SET('active',a.statut), FIND_IN_SET('temporaire',a.statut), FIND_IN_SET('res-secondaire',a.statut)";
224 $res = XDB::query($sql, $uid);
225 $all_adr = $res->fetchAllAssoc();
226 $adrid_index = array();
227 foreach ($all_adr as $i => $adr) {
228 if (!has_user_right($adr['pub'], $view))
229 unset($all_adr[$i]);
230 else
231 $adrid_index[$adr['adrid']] = $i;
232 }
233
234 $sql = "SELECT link_id AS adrid, pub AS tel_pub, tel_type, display_tel AS tel, tel_id AS telid, comment
235 FROM profile_phones AS t
236 WHERE uid = {?} AND link_type = 'address'
237 ORDER BY link_id, tel_type DESC, tel_id";
238 $restel = XDB::iterator($sql, $uid);
239 while ($nexttel = $restel->next()) {
240 if (has_user_right($nexttel['tel_pub'], $view)) {
241 $adrid = $nexttel['adrid'];
242 unset($nexttel['adrid']);
243 if (isset($adrid_index[$adrid])) {
244 if (!isset($all_adr[$adrid_index[$adrid]]['tels']))
245 $all_adr[$adrid_index[$adrid]]['tels'] = array($nexttel);
246 else
247 $all_adr[$adrid_index[$adrid]]['tels'][] = $nexttel;
248 }
249 }
250 }
251 return $all_adr;
252 }
253
254 // }}}
255 // {{{ function get_user_details()
256
257 function &get_user_details($login, $from_uid = '', $view = 'private')
258 {
259 $reqsql = "SELECT u.user_id, u.promo, u.promo_sortie, u.prenom, u.nom, u.nom_usage, u.date, u.cv,
260 u.perms IN ('admin','user','disabled') AS inscrit, FIND_IN_SET('femme', u.flags) AS sexe, u.deces != 0 AS dcd, u.deces,
261 q.profile_nick AS nickname, q.profile_from_ax, q.profile_freetext AS freetext,
262 q.profile_freetext_pub AS freetext_pub,
263 q.profile_medals_pub AS medals_pub, co.corps_pub AS corps_pub,
264 IF(gp1.nat='',gp1.pays,gp1.nat) AS nationalite, gp1.a2 AS iso3166_1,
265 IF(gp2.nat='',gp2.pays,gp2.nat) AS nationalite2, gp2.a2 AS iso3166_2,
266 IF(gp3.nat='',gp3.pays,gp3.nat) AS nationalite3, gp3.a2 AS iso3166_3,
267 a.alias AS forlife, a2.alias AS bestalias,
268 c.uid IS NOT NULL AS is_contact,
269 s.text AS section, p.x, p.y, p.pub AS photo_pub,
270 u.matricule_ax,
271 m.expertise != '' AS is_referent,
272 (COUNT(e.email) > 0 OR FIND_IN_SET('googleapps', u.mail_storage) > 0) AS actif,
273 nd.display AS name_display, nd.tooltip AS name_tooltip
274 FROM auth_user_md5 AS u
275 INNER JOIN auth_user_quick AS q USING(user_id)
276 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type = 'a_vie')
277 INNER JOIN aliases AS a2 ON (u.user_id = a2.id AND FIND_IN_SET('bestalias', a2.flags))
278 LEFT JOIN contacts AS c ON (c.uid = {?} and c.contact = u.user_id)
279 LEFT JOIN profile_corps AS co ON (co.uid = u.user_id)
280 LEFT JOIN geoloc_pays AS gp1 ON (gp1.a2 = u.nationalite)
281 LEFT JOIN geoloc_pays AS gp2 ON (gp2.a2 = u.nationalite2)
282 LEFT JOIN geoloc_pays AS gp3 ON (gp3.a2 = u.nationalite3)
283 INNER JOIN sections AS s ON (s.id = u.section)
284 LEFT JOIN photo AS p ON (p.uid = u.user_id)
285 LEFT JOIN mentor AS m ON (m.uid = u.user_id)
286 LEFT JOIN emails AS e ON (e.uid = u.user_id AND e.flags='active')
287 INNER JOIN profile_names_display AS nd ON (nd.user_id = u.user_id)
288 WHERE a.alias = {?}
289 GROUP BY u.user_id";
290 $res = XDB::query($reqsql, $from_uid, $login);
291 $user = $res->fetchOneAssoc();
292 $uid = $user['user_id'];
293 // hide orange status, cv, nickname, section
294 if (!has_user_right('private', $view)) {
295 $user['promo_sortie'] = $user['promo'] + 3;
296 $user['cv'] = '';
297 $user['nickname'] = '';
298 $user['section'] = '';
299 }
300
301 // hide freetext
302 if (!has_user_right($user['freetext_pub'], $view)) {
303 if ($user['freetext'] == '')
304 $user['freetext_pub'] = $view;
305 else
306 $user['freetext'] = '';
307 }
308
309 $sql = "SELECT pub AS tel_pub, tel_type, display_tel AS tel, comment
310 FROM profile_phones AS t
311 WHERE uid = {?} AND link_type = 'user'
312 ORDER BY tel_type DESC, tel_id";
313 $restel = XDB::iterator($sql, $uid);
314 while ($nexttel = $restel->next()) {
315 if (has_user_right($nexttel['tel_pub'], $view)) {
316 if (!isset($user['tels'])) {
317 $user['tels'] = array($nexttel);
318 } else {
319 $user['tels'][] = $nexttel;
320 }
321 }
322 }
323
324 $user['adr_pro'] = get_user_details_pro($uid, $view);
325 $user['adr'] = get_user_details_adr($uid, $view);
326
327 if (has_user_right('private', $view)) {
328 $sql = "SELECT text
329 FROM binets_ins
330 LEFT JOIN binets_def ON binets_ins.binet_id = binets_def.id
331 WHERE user_id = {?}";
332 $res = XDB::query($sql, $uid);
333 $user['binets'] = $res->fetchColumn();
334 $user['binets_join'] = join(', ', $user['binets']);
335
336 $res = XDB::iterRow("SELECT a.diminutif, a.nom, a.site
337 FROM groupex.asso AS a
338 LEFT JOIN groupex.membres AS m ON (m.asso_id = a.id)
339 WHERE m.uid = {?} AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
340 AND pub = 'public'", $uid);
341 $user['gpxs'] = Array();
342 $user['gpxs_name'] = Array();
343 while (list($gxd, $gxt, $gxu) = $res->next()) {
344 if (!$gxu) {
345 $gxu = 'http://www.polytechnique.net/' . $gxd;
346 }
347 $user['gpxs'][] = '<span title="' . pl_entities($gxt) . "\"><a href=\"$gxu\">$gxd</a></span>";
348 $user['gpxs_name'][] = $gxt;
349 }
350 $user['gpxs_join'] = join(', ', $user['gpxs']);
351 }
352
353 $res = XDB::iterRow("SELECT en.name AS name, en.url AS url, d.degree AS degree,
354 ed.grad_year AS grad_year, f.field AS field, ed.program AS program
355 FROM profile_education AS ed
356 INNER JOIN profile_education_enum AS en ON (en.id = ed.eduid)
357 INNER JOIN profile_education_degree_enum AS d ON (d.id = ed.degreeid)
358 INNER JOIN profile_education_field_enum AS f ON (f.id = ed.fieldid)
359 WHERE uid={?}
360 ORDER BY ed.grad_year", $uid);
361
362 $user['education'] = "";
363 require_once('education.func.inc.php');
364 if (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
365 $user['education'] .= education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
366 }
367 while (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
368 $user['education'] .= ", " . education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
369 }
370
371 if (has_user_right($user['corps_pub'], $view)) {
372 $res = XDB::query("SELECT e1.name AS original, e2.name AS current, r.name AS rank
373 FROM profile_corps AS c
374 LEFT JOIN profile_corps_enum AS e1 ON (c.original_corpsid = e1.id)
375 LEFT JOIN profile_corps_enum AS e2 ON (c.current_corpsid = e2.id)
376 LEFT JOIN profile_corps_rank_enum AS r ON (c.rankid = r.id)
377 WHERE c.uid = {?} AND c.original_corpsid != 1", $uid);
378 if ($res = $res->fetchOneRow()) {
379 list($original, $current, $rank) = $res;
380 $user['corps'] = "Corps d'origine : " . $original . ", corps actuel : " . $current . ", grade : " . $rank;
381 }
382 }
383
384 if (has_user_right($user['medals_pub'], $view)) {
385 $res = XDB::iterator("SELECT m.id, m.text AS medal, m.type, s.gid, g.text AS grade
386 FROM profile_medals_sub AS s
387 INNER JOIN profile_medals AS m ON ( s.mid = m.id )
388 LEFT JOIN profile_medals_grades AS g ON ( s.mid = g.mid AND s.gid = g.gid )
389 WHERE s.uid = {?}", $uid);
390 $user['medals'] = Array();
391 while ($tmp = $res->next()) {
392 $user['medals'][] = $tmp;
393 }
394 }
395
396 $user['networking'] = Array();
397 $res = XDB::iterator("SELECT n.address, n.pub, m.network_type AS type, m.name, m.filter, m.link
398 FROM profile_networking AS n
399 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
400 WHERE n.uid = {?}", $uid);
401 while($network = $res->next())
402 {
403 if (has_user_right($network['pub'], $view)) {
404 $network['link'] = str_replace('%s', $network['address'], $network['link']);
405 $user['networking'][] = $network;
406 }
407 }
408
409 return $user;
410 }
411 // }}}
412 // {{{ function add_user_address()
413 function add_user_address($uid, $adrid, $adr) {
414 XDB::execute(
415 "INSERT INTO adresses (`uid`, `adrid`, `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `datemaj`, `pub`) (
416 SELECT u.user_id, {?}, {?}, {?}, {?}, {?}, {?}, gp.a2, NOW(), {?}
417 FROM auth_user_md5 AS u
418 LEFT JOIN geoloc_pays AS gp ON (gp.pays LIKE {?} OR gp.country LIKE {?} OR gp.a2 LIKE {?})
419 WHERE u.user_id = {?}
420 LIMIT 1)",
421 $adrid, $adr['adr1'], $adr['adr2'], $adr['adr3'], $adr['postcode'], $adr['city'], $adr['pub'], $adr['countrytxt'], $adr['countrytxt'], $adr['countrytxt'], $uid);
422 if (isset($adr['tels']) && is_array($adr['tels'])) {
423 $telid = 0;
424 foreach ($adr['tels'] as $tel) if ($tel['tel']) {
425 add_user_tel($uid, 'address', $adrid, $telid, $tel);
426 $telid ++;
427 }
428 }
429 }
430 // }}}
431 // {{{ function update_user_address()
432 function update_user_address($uid, $adrid, $adr) {
433 // update address
434 XDB::execute(
435 "UPDATE adresses AS a LEFT JOIN geoloc_pays AS gp ON (gp.pays = {?})
436 SET `adr1` = {?}, `adr2` = {?}, `adr3` = {?},
437 `postcode` = {?}, `city` = {?}, a.`country` = gp.a2, `datemaj` = NOW(), `pub` = {?}
438 WHERE adrid = {?} AND uid = {?}",
439 $adr['country_txt'],
440 $adr['adr1'], $adr['adr2'], $adr['adr3'],
441 $adr['postcode'], $adr['city'], $adr['pub'], $adrid, $uid);
442 if (isset($adr['tels']) && is_array($adr['tels'])) {
443 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'address' AND link_id = {?} ORDER BY tel_id", $uid, $adrid);
444 $telids = $res->fetchColumn();
445 foreach ($adr['tels'] as $tel) {
446 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
447 remove_user_tel($uid, 'address', $adrid, $tel['telid']);
448 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
449 } else if (isset($tel['telid'])) {
450 update_user_tel($uid, 'address', $adrid, $tel['telid'], $tel);
451 } else {
452 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
453 add_user_tel($uid, 'address', $adrid, $telid, $tel);
454 }
455 }
456 }
457 }
458 // }}}
459 // {{{ function remove_user_address()
460 function remove_user_address($uid, $adrid) {
461 XDB::execute("DELETE FROM adresses WHERE adrid = {?} AND uid = {?}", $adrid, $uid);
462 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'address'", $adrid, $uid);
463 }
464 // }}}
465 // {{{ function add_user_tel()
466 function add_user_tel($uid, $link_type, $link_id, $telid, $tel) {
467 require('profil.func.inc.php');
468 $fmt_phone = format_phone_number($tel['tel']);
469 $disp_phone = format_display_number($fmt_phone, $error);
470 XDB::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type, search_tel, display_tel, pub)
471 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})",
472 $uid, $link_type, $link_id, $telid, $tel['tel_type'], $fmt_phone, $disp_phone, $tel['tel_pub']);
473 }
474 // }}}
475 // {{{ function update_user_tel()
476 function update_user_tel($uid, $link_type, $link_id, $telid, $tel) {
477 require('profil.func.inc.php');
478 $fmt_phone = format_phone_number($tel['tel']);
479 $disp_phone = format_display_number($fmt_phone, $error);
480 XDB::execute("UPDATE profile_phones SET search_tel = {?}, display_tel = {?}, tel_type = {?}, pub = {?}
481 WHERE link_type = {?} AND tel_id = {?} AND link_id = {?} AND uid = {?}",
482 $fmt_phone, $disp_phone, $tel['tel_type'], $tel['tel_pub'],
483 $link_type, $telid, $link_id, $uid);
484 }
485 // }}}
486 // {{{ function remove_user_tel()
487 function remove_user_tel($uid, $link_type, $link_id, $telid) {
488 XDB::execute("DELETE FROM profile_phones WHERE tel_id = {?} AND link_id = {?} AND uid = {?} AND link_type = {?}",
489 $telid, $link_id, $uid, $link_type);
490 }
491 // }}}
492 // {{{ function add_user_pro()
493 function add_user_pro($uid, $entrid, $pro) {
494 XDB::execute(
495 "INSERT INTO entreprises (`uid`, `entrid`, `entreprise`, `poste`, `secteur`, `ss_secteur`, `fonction`,
496 `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `region`, `email`, `web`, `pub`, `adr_pub`, `email_pub`)
497 SELECT u.user_id, {?}, {?}, {?}, s.id, ss.id, f.id,
498 {?}, {?}, {?}, {?}, {?}, gp.a2, gr.region, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}
499 FROM auth_user_md5 AS u
500 LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
501 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
502 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})
503 LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
504 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})
505 WHERE u.user_id = {?}
506 LIMIT 1",
507 $entrid, $pro['entreprise'], $pro['poste'],
508 $pro['adr1'], $pro['adr2'], $pro['adr3'], $pro['postcode'], $pro['city'], $pro['email'], $pro['web'], $pro['pub'], $pro['adr_pub'], $pro['email_pub'],
509 $pro['secteur'], $pro['sous_secteur'], $pro['fonction'], $pro['fonction'],
510 $pro['countrytxt'], $pro['countrytxt'], $pro['region'],
511 $uid);
512 if (isset($pro['tels']) && is_array($pro['tels'])) {
513 $telid = 0;
514 foreach ($pro['tels'] as $tel) {
515 if ($pro['tel']) {
516 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
517 $telid ++;
518 }
519 }
520 }
521 }
522 // }}}
523 // {{{ function update_user_pro()
524 function update_user_pro($uid, $entrid, $pro) {
525 $join = "";
526 $set = "";
527 $args_join = array();
528 $args_set = array();
529
530 $join .= "LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
531 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
532 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})";
533 $args_join[] = $pro['secteur'];
534 $args_join[] = $pro['sous_secteur'];
535 $args_join[] = $pro['fonction'];
536 $args_join[] = $pro['fonction'];
537 $set .= ", e.`entreprise` = {?}, e.`secteur` = s.id, e.`ss_secteur` = ss.id, e.`fonction` = f.id, e.`poste`= {?}, e.`web` = {?}, e.`pub` = {?}";
538 $args_set[] = $pro['entreprise'];
539 $args_set[] = $pro['poste'];
540 $args_set[] = $pro['web'];
541 $args_set[] = $pro['pub'];
542
543 if (isset($pro['adr1'])) {
544 $join .= "LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
545 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})";
546 $args_join[] = $pro['countrytxt'];
547 $args_join[] = $pro['countrytxt'];
548 $args_join[] = $pro['region'];
549 $set .= ", e.`adr1` = {?}, e.`adr2` = {?}, e.`adr3` = {?}, e.`postcode` = {?}, e.`city` = {?}, e.`country` = gp.a2, e.`region` = gr.region, e.`adr_pub` = {?}";
550 $args_set[] = $pro['adr1'];
551 $args_set[] = $pro['adr2'];
552 $args_set[] = $pro['adr3'];
553 $args_set[] = $pro['postcode'];
554 $args_set[] = $pro['city'];
555 $args_set[] = $pro['adr_pub'];
556 }
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 if (isset($pro['tels']) && is_array($pro['tels'])) {
570 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'pro' AND link_id = {?} ORDER BY tel_id", $uid, $entrid);
571 $telids = $res->fetchColumn();
572 foreach ($pro['tels'] as $tel) {
573 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
574 remove_user_tel($uid, 'pro', $entrid, $tel['telid']);
575 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
576 } else if (isset($tel['telid'])) {
577 update_user_tel($uid, 'pro', $entrid, $tel['telid'], $tel);
578 } else {
579 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
580 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
581 }
582 }
583 }
584 }
585 // }}}
586 // {{{ function remove_user_pro()
587 function remove_user_pro($uid, $entrid) {
588 XDB::execute("DELETE FROM entreprises WHERE entrid = {?} AND uid = {?}", $entrid, $uid);
589 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'pro'", $entrid, $uid);
590 }
591 // }}}
592 // {{{ function set_user_details_addresses()
593 function set_user_details_addresses($uid, $adrs) {
594 $res = XDB::query("SELECT adrid FROM adresses WHERE uid = {?} AND adrid >= 1 ORDER BY adrid", $uid);
595 $adrids = $res->fetchColumn();
596 foreach ($adrs as $adr) {
597 if (isset($adr['adrid']) && isset($adr['remove']) && $adr['remove']) {
598 remove_user_address($uid, $adr['adrid']);
599 if (isset($adrids[$adr['adrid']])) unset($adrids[$adr['adrid']]);
600 } else if (isset($adr['adrid'])) {
601 update_user_address($uid, $adr['adrid'], $adr);
602 } else {
603 for ($adrid = 1; isset($adrids[$adrid-1]) && ($adrids[$adrid-1] == $adrid); $adrid++);
604 add_user_address($uid, $adrid, $adr);
605 $adrids[$adrid-1] = $adrid;
606 }
607 }
608 require_once 'geoloc.inc.php';
609 localize_addresses($uid);
610 }
611 // }}}
612 // {{{ function set_user_details_pro()
613
614 function set_user_details_pro($uid, $pros)
615 {
616 $res = XDB::query("SELECT entrid FROM entreprises WHERE uid = {?} ORDER BY entrid", $uid);
617 $entrids = $res->fetchColumn();
618 foreach ($pros as $pro) {
619 if (isset($pro['entrid']) && isset($pro['remove']) && $pro['remove']) {
620 remove_user_pro($uid, $pro['entrid']);
621 if (isset($entrids[$pro['entrid']])) unset($entrids[$pro['entrid']]);
622 } else if (isset($pro['entrid'])) {
623 update_user_pro($uid, $pro['entrid'], $pro);
624 } else {
625 for ($entrid = 0; isset($entrids[$entrid]) && ($entrids[$entrid] == $entrid); $entrid++);
626 add_user_pro($uid, $entrid, $pro);
627 }
628 }
629 }
630
631 // }}}
632 // {{{ function set_user_details()
633 function set_user_details($uid, $details) {
634 if (isset($details['nom_usage'])) {
635 XDB::execute("UPDATE auth_user_md5 SET nom_usage = {?} WHERE user_id = {?}", strtoupper($details['nom_usage']), $uid);
636 }
637 if (isset($details['nationalite'])) {
638 XDB::execute(
639 "UPDATE auth_user_md5 AS u
640 INNER JOIN geoloc_pays AS gp
641 SET u.nationalite = gp.a2
642 WHERE (gp.a2 = {?} OR gp.nat = {?})
643 AND u.user_id = {?}", $details['nationalite'], $details['nationalite'], $uid);
644 }
645 if (isset($details['adr']) && is_array($details['adr']))
646 set_user_details_addresses($uid, $details['adr']);
647 if (isset($details['adr_pro']) && is_array($details['adr_pro']))
648 set_user_details_pro($uid, $details['adr_pro']);
649 if (isset($details['binets']) && is_array($details['binets'])) {
650 XDB::execute("DELETE FROM binets_ins WHERE user_id = {?}", $uid);
651 foreach ($details['binets'] as $binet)
652 XDB::execute(
653 "INSERT INTO binets_ins (`user_id`, `binet_id`)
654 SELECT {?}, id FROM binets_def WHERE text = {?} LIMIT 1",
655 $uid, $binet);
656 }
657 if (isset($details['gpxs']) && is_array($details['gpxs'])) {
658 XDB::execute("DELETE FROM groupesx_ins WHERE user_id = {?}", $uid);
659 foreach ($details['gpxs'] as $groupex) {
660 if (preg_match('/<a href="[^"]*">([^<]+)</a>/u', $groupex, $a)) $groupex = $a[1];
661 XDB::execute(
662 "INSERT INTO groupesx_ins (`user_id`, `binet_id`)
663 SELECT {?}, id FROM groupesx_def WHERE text = {?} LIMIT 1",
664 $uid, $groupex);
665 }
666 }
667 if (isset($details['tels']) && is_array($details['tels'])) {
668 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'user' ORDER BY tel_id", $uid);
669 $telids = $res->fetchColumn();
670 foreach ($details['tels'] as $tel) {
671 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
672 remove_user_tel($uid, 'user', 0, $tel['telid']);
673 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
674 } else if (isset($tel['telid'])) {
675 update_user_tel($uid, 'user', 0, $tel['telid'], $tel);
676 } else {
677 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
678 add_user_tel($uid, 'user', 0, $telid, $tel);
679 }
680 }
681 }
682
683 // education
684 // medals
685 }
686 // }}}
687 // {{{ function _user_reindex
688
689 function _user_reindex($uid, $keys, $muls, $pubs)
690 {
691 foreach ($keys as $i => $key) {
692 if ($key == '') {
693 continue;
694 }
695 $toks = preg_split('/[ \'\-]+/', $key);
696 $token = "";
697 $first = 5;
698 while ($toks) {
699 $token = strtolower(replace_accent(array_pop($toks) . $token));
700 $score = ($toks ? 0 : 10 + $first) * $muls[$i];
701 XDB::execute("REPLACE INTO search_name (token, uid, soundex, score, flags)
702 VALUES ({?}, {?}, {?}, {?}, {?})",
703 $token, $uid, soundex_fr($token), $score, $pubs[$i] ? 'public' : '');
704 $first = 0;
705 }
706 }
707 $res = XDB::query("SELECT nom_ini, nom, nom_usage, prenom_ini, prenom, promo, matricule
708 FROM auth_user_md5
709 WHERE user_id = {?}", $uid);
710 if (!$res->numRows()) {
711 unset($res);
712 return;
713 }
714 $array = $res->fetchOneRow();
715 $promo = intval(array_pop($array));
716 $mat = array_shift($array);
717 array_walk($array, 'soundex_fr');
718 XDB::execute("REPLACE INTO recherche_soundex
719 SET matricule = {?}, nom1_soundex = {?}, nom2_soundex= {?}, nom3_soundex = {?},
720 prenom1_soundex = {?}, prenom2_soundex= {?}, promo = {?}",
721 $mat, $array[0], $array[1], $array[2], $array[3], $array[4], $promo);
722 unset($res);
723 unset($array);
724 }
725
726 // }}}
727 // {{{ function user_reindex
728
729 function user_reindex($uid) {
730 XDB::execute("DELETE FROM search_name WHERE uid={?}", $uid);
731 $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);
732 if ($res->numRows()) {
733 _user_reindex($uid, $res->fetchOneRow(), array(1,1,1,0.2), array(true, true, true, false));
734 } else { // not in auth_user_quick => still "pending"
735 $res = XDB::query("SELECT prenom, nom, nom_usage FROM auth_user_md5 WHERE auth_user_md5.user_id = {?}", $uid);
736 if ($res->numRows()) {
737 _user_reindex($uid, $res->fetchOneRow(), array(1,1,1), array(true, true, true));
738 }
739 }
740 }
741
742 // }}}
743 // {{{ function set_new_usage()
744
745 function set_new_usage($uid, $usage, $alias=false)
746 {
747 XDB::execute("UPDATE auth_user_md5 set nom_usage={?} WHERE user_id={?}",$usage ,$uid);
748 XDB::execute("DELETE FROM aliases WHERE FIND_IN_SET('usage',flags) AND id={?}", $uid);
749 if ($alias && $usage) {
750 XDB::execute("UPDATE aliases SET flags=flags & 255-1 WHERE id={?}", $uid);
751 XDB::execute("INSERT INTO aliases VALUES({?}, 'alias', 'usage,bestalias', {?}, null)",
752 $alias, $uid);
753 }
754 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
755 if ($r->numRows() == "") {
756 XDB::execute("UPDATE aliases SET flags = 1 | flags WHERE id = {?} LIMIT 1", $uid);
757 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
758 }
759 user_reindex($uid);
760 return $r->fetchOneCell();
761 }
762
763 // }}}
764 // {{{ function get_X_mat
765 function get_X_mat($ourmat)
766 {
767 if (!preg_match('/^[0-9]{8}$/', $ourmat)) {
768 // le matricule de notre base doit comporter 8 chiffres
769 return 0;
770 }
771
772 $year = intval(substr($ourmat, 0, 4));
773 $rang = intval(substr($ourmat, 5, 3));
774 if ($year < 1996) {
775 return;
776 } elseif ($year < 2000) {
777 $year = intval(substr(1900 - $year, 1, 3));
778 return sprintf('%02u0%03u', $year, $rang);
779 } else {
780 $year = intval(substr(1900 - $year, 1, 3));
781 return sprintf('%03u%03u', $year, $rang);
782 }
783 }
784
785 // }}}
786
787
788 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
789 ?>