Adapts search to the new name management.
[platal.git] / include / user.func.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 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', 'profile_job', 'langues_ins', 'profile_mentor_country',
40 'profile_mentor_sector', 'profile_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 en.name AS entreprise, s.name as secteur, f.fonction_fr as fonction,
134 j.description AS poste, gp.pays AS countrytxt, gr.name AS region,
135 j.id AS entrid, j.pub, j.email, j.email_pub, j.url AS w_web, en.url AS web,
136 e.adr1, e.adr2, e.adr3, e.postcode, e.city, e.adr_pub
137 FROM profile_job AS j
138 LEFT JOIN entreprises AS e ON (e.entrid = j.id AND e.uid = j.uid)
139 LEFT JOIN profile_job_enum AS en ON (j.jobid = en.id)
140 LEFT JOIN profile_job_subsubsector_enum AS s ON (j.subsubsectorid = s.id)
141 LEFT JOIN fonctions_def AS f ON (j.functionid = f.id)
142 LEFT JOIN geoloc_pays AS gp ON (gp.a2 = e.country)
143 LEFT JOIN geoloc_region AS gr ON (gr.a2 = e.country AND gr.region = e.region)
144 WHERE j.uid = {?}
145 ORDER BY j.id";
146 $res = XDB::query($sql, $uid);
147 $all_pro = $res->fetchAllAssoc();
148 foreach ($all_pro as $i => $pro) {
149 if (!has_user_right($pro['pub'], $view))
150 unset($all_pro[$i]);
151 else {
152 if (!has_user_right($pro['adr_pub'], $view)) {
153 if ($pro['adr1'] == '' &&
154 $pro['adr2'] == '' &&
155 $pro['adr3'] == '' &&
156 $pro['postcode'] == '' &&
157 $pro['city'] == '' &&
158 $pro['countrytxt'] == '' &&
159 $pro['region'] == '') {
160 $all_pro[$i]['adr_pub'] = $view;
161 } else {
162 $all_pro[$i]['adr1'] = '';
163 $all_pro[$i]['adr2'] = '';
164 $all_pro[$i]['adr3'] = '';
165 $all_pro[$i]['postcode'] = '';
166 $all_pro[$i]['city'] = '';
167 $all_pro[$i]['countrytxt'] = '';
168 $all_pro[$i]['region'] = '';
169 }
170 }
171 $sql = "SELECT pub AS tel_pub, tel_type, display_tel AS tel, comment
172 FROM profile_phones AS t
173 WHERE uid = {?} AND link_type = 'pro' AND link_id = {?}
174 ORDER BY link_id, tel_type DESC, tel_id";
175 $restel = XDB::iterator($sql, $uid, $pro['entrid']);
176 while ($nexttel = $restel->next()) {
177 if (has_user_right($nexttel['tel_pub'], $view)) {
178 if (!isset($all_pro[$i]['tels'])) {
179 $all_pro[$i]['tels'] = array($nexttel);
180 } else {
181 $all_pro[$i]['tels'][] = $nexttel;
182 }
183 }
184 }
185 if (!has_user_right($pro['email_pub'], $view)) {
186 if ($pro['email'] == '')
187 $all_pro[$i]['email_pub'] = $view;
188 else
189 $all_pro[$i]['email'] = '';
190 }
191 if ($all_pro[$i]['adr1'] == '' &&
192 $all_pro[$i]['adr2'] == '' &&
193 $all_pro[$i]['adr3'] == '' &&
194 $all_pro[$i]['postcode'] == '' &&
195 $all_pro[$i]['city'] == '' &&
196 $all_pro[$i]['countrytxt'] == '' &&
197 $all_pro[$i]['region'] == '' &&
198 $all_pro[$i]['entreprise'] == '' &&
199 $all_pro[$i]['fonction'] == '' &&
200 $all_pro[$i]['secteur'] == '' &&
201 $all_pro[$i]['poste'] == '' &&
202 (!isset($all_pro[$i]['tels'])) &&
203 $all_pro[$i]['email'] == '')
204 unset($all_pro[$i]);
205 }
206 }
207 if (!count($all_pro)) return false;
208 return $all_pro;
209 }
210
211 // }}}
212 // {{{ function get_user_details_adr()
213
214 function get_user_details_adr($uid, $view = 'private') {
215 $sql = "SELECT a.adrid, a.adr1,a.adr2,a.adr3,a.postcode,a.city,
216 gp.pays AS countrytxt,a.region, a.regiontxt,
217 FIND_IN_SET('active', a.statut) AS active, a.adrid,
218 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
219 FIND_IN_SET('courrier', a.statut) AS courier,
220 a.pub, gp.display, a.comment
221 FROM adresses AS a
222 LEFT JOIN geoloc_pays AS gp ON (gp.a2=a.country)
223 WHERE uid= {?} AND NOT FIND_IN_SET('pro',a.statut)
224 ORDER BY NOT FIND_IN_SET('active',a.statut), FIND_IN_SET('temporaire',a.statut), FIND_IN_SET('res-secondaire',a.statut)";
225 $res = XDB::query($sql, $uid);
226 $all_adr = $res->fetchAllAssoc();
227 $adrid_index = array();
228 foreach ($all_adr as $i => $adr) {
229 if (!has_user_right($adr['pub'], $view))
230 unset($all_adr[$i]);
231 else
232 $adrid_index[$adr['adrid']] = $i;
233 }
234
235 $sql = "SELECT link_id AS adrid, pub AS tel_pub, tel_type, display_tel AS tel, tel_id AS telid, comment
236 FROM profile_phones AS t
237 WHERE uid = {?} AND link_type = 'address'
238 ORDER BY link_id, tel_type DESC, tel_id";
239 $restel = XDB::iterator($sql, $uid);
240 while ($nexttel = $restel->next()) {
241 if (has_user_right($nexttel['tel_pub'], $view)) {
242 $adrid = $nexttel['adrid'];
243 unset($nexttel['adrid']);
244 if (isset($adrid_index[$adrid])) {
245 if (!isset($all_adr[$adrid_index[$adrid]]['tels']))
246 $all_adr[$adrid_index[$adrid]]['tels'] = array($nexttel);
247 else
248 $all_adr[$adrid_index[$adrid]]['tels'][] = $nexttel;
249 }
250 }
251 }
252 return $all_adr;
253 }
254
255 // }}}
256 // {{{ function get_user_details()
257
258 function &get_user_details($login, $from_uid = '', $view = 'private')
259 {
260 $reqsql = "SELECT u.user_id, d.promo, u.prenom, u.nom, u.nom_usage, u.date, u.cv,
261 u.perms IN ('admin','user','disabled') AS inscrit, FIND_IN_SET('femme', u.flags) AS sexe, u.deces != 0 AS dcd, u.deces,
262 q.profile_nick AS nickname, q.profile_from_ax, q.profile_freetext AS freetext,
263 q.profile_freetext_pub AS freetext_pub,
264 q.profile_medals_pub AS medals_pub, co.corps_pub AS corps_pub,
265 IF(gp1.nat='',gp1.pays,gp1.nat) AS nationalite, gp1.a2 AS iso3166_1,
266 IF(gp2.nat='',gp2.pays,gp2.nat) AS nationalite2, gp2.a2 AS iso3166_2,
267 IF(gp3.nat='',gp3.pays,gp3.nat) AS nationalite3, gp3.a2 AS iso3166_3,
268 a.alias AS forlife, a2.alias AS bestalias,
269 c.uid IS NOT NULL AS is_contact,
270 s.text AS section, p.x, p.y, p.pub AS photo_pub,
271 u.matricule_ax,
272 m.expertise != '' AS is_referent,
273 (COUNT(e.email) > 0 OR FIND_IN_SET('googleapps', u.mail_storage) > 0) AS actif,
274 d.public_name, d.private_name
275 FROM auth_user_md5 AS u
276 INNER JOIN auth_user_quick AS q USING(user_id)
277 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type = 'a_vie')
278 INNER JOIN aliases AS a2 ON (u.user_id = a2.id AND FIND_IN_SET('bestalias', a2.flags))
279 LEFT JOIN contacts AS c ON (c.uid = {?} and c.contact = u.user_id)
280 LEFT JOIN profile_corps AS co ON (co.uid = u.user_id)
281 LEFT JOIN geoloc_pays AS gp1 ON (gp1.a2 = u.nationalite)
282 LEFT JOIN geoloc_pays AS gp2 ON (gp2.a2 = u.nationalite2)
283 LEFT JOIN geoloc_pays AS gp3 ON (gp3.a2 = u.nationalite3)
284 INNER JOIN sections AS s ON (s.id = u.section)
285 LEFT JOIN photo AS p ON (p.uid = u.user_id)
286 LEFT JOIN profile_mentor AS m ON (m.uid = u.user_id)
287 LEFT JOIN emails AS e ON (e.uid = u.user_id AND e.flags='active')
288 INNER JOIN profile_display AS d ON (d.pid = u.user_id)
289 WHERE a.alias = {?}
290 GROUP BY u.user_id";
291 $res = XDB::query($reqsql, $from_uid, $login);
292 $user = $res->fetchOneAssoc();
293 $uid = $user['user_id'];
294 // hide orange status, cv, nickname, section
295 if (!has_user_right('private', $view)) {
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 LEFT JOIN profile_education_enum AS en ON (en.id = ed.eduid)
357 LEFT JOIN profile_education_degree_enum AS d ON (d.id = ed.degreeid)
358 LEFT JOIN profile_education_field_enum AS f ON (f.id = ed.fieldid)
359 WHERE uid = {?} AND NOT FIND_IN_SET('primary', flags)
360 ORDER BY ed.grad_year", $uid);
361
362 if (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
363 require_once('education.func.inc.php');
364 $user['education'][] = education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
365 }
366 while (list($name, $url, $degree, $grad_year, $field, $program) = $res->next()) {
367 $user['education'][] = education_fmt($name, $url, $degree, $grad_year, $field, $program, $user['sexe'], true);
368 }
369
370 if (has_user_right($user['corps_pub'], $view)) {
371 $res = XDB::query("SELECT e1.name AS original, e2.name AS current, r.name AS rank
372 FROM profile_corps AS c
373 LEFT JOIN profile_corps_enum AS e1 ON (c.original_corpsid = e1.id)
374 LEFT JOIN profile_corps_enum AS e2 ON (c.current_corpsid = e2.id)
375 LEFT JOIN profile_corps_rank_enum AS r ON (c.rankid = r.id)
376 WHERE c.uid = {?} AND c.original_corpsid != 1", $uid);
377 if ($res = $res->fetchOneRow()) {
378 list($original, $current, $rank) = $res;
379 $user['corps'] = "Corps d'origine : " . $original . ", corps actuel : " . $current . ", grade : " . $rank;
380 }
381 }
382
383 if (has_user_right($user['medals_pub'], $view)) {
384 $res = XDB::iterator("SELECT m.id, m.text AS medal, m.type, s.gid, g.text AS grade
385 FROM profile_medals_sub AS s
386 INNER JOIN profile_medals AS m ON ( s.mid = m.id )
387 LEFT JOIN profile_medals_grades AS g ON ( s.mid = g.mid AND s.gid = g.gid )
388 WHERE s.uid = {?}", $uid);
389 $user['medals'] = Array();
390 while ($tmp = $res->next()) {
391 $user['medals'][] = $tmp;
392 }
393 }
394
395 $user['networking'] = Array();
396 $res = XDB::iterator("SELECT n.address, n.pub, m.network_type AS type, m.name, m.filter, m.link
397 FROM profile_networking AS n
398 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
399 WHERE n.uid = {?}", $uid);
400 while($network = $res->next())
401 {
402 if (has_user_right($network['pub'], $view)) {
403 $network['link'] = str_replace('%s', $network['address'], $network['link']);
404 $user['networking'][] = $network;
405 }
406 }
407
408 return $user;
409 }
410 // }}}
411 // {{{ function add_user_address()
412 function add_user_address($uid, $adrid, $adr) {
413 XDB::execute(
414 "INSERT INTO adresses (`uid`, `adrid`, `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `datemaj`, `pub`) (
415 SELECT u.user_id, {?}, {?}, {?}, {?}, {?}, {?}, gp.a2, NOW(), {?}
416 FROM auth_user_md5 AS u
417 LEFT JOIN geoloc_pays AS gp ON (gp.pays LIKE {?} OR gp.country LIKE {?} OR gp.a2 LIKE {?})
418 WHERE u.user_id = {?}
419 LIMIT 1)",
420 $adrid, $adr['adr1'], $adr['adr2'], $adr['adr3'], $adr['postcode'], $adr['city'], $adr['pub'], $adr['countrytxt'], $adr['countrytxt'], $adr['countrytxt'], $uid);
421 if (isset($adr['tels']) && is_array($adr['tels'])) {
422 $telid = 0;
423 foreach ($adr['tels'] as $tel) if ($tel['tel']) {
424 add_user_tel($uid, 'address', $adrid, $telid, $tel);
425 $telid ++;
426 }
427 }
428 }
429 // }}}
430 // {{{ function update_user_address()
431 function update_user_address($uid, $adrid, $adr) {
432 // update address
433 XDB::execute(
434 "UPDATE adresses AS a LEFT JOIN geoloc_pays AS gp ON (gp.pays = {?})
435 SET `adr1` = {?}, `adr2` = {?}, `adr3` = {?},
436 `postcode` = {?}, `city` = {?}, a.`country` = gp.a2, `datemaj` = NOW(), `pub` = {?}
437 WHERE adrid = {?} AND uid = {?}",
438 $adr['country_txt'],
439 $adr['adr1'], $adr['adr2'], $adr['adr3'],
440 $adr['postcode'], $adr['city'], $adr['pub'], $adrid, $uid);
441 if (isset($adr['tels']) && is_array($adr['tels'])) {
442 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'address' AND link_id = {?} ORDER BY tel_id", $uid, $adrid);
443 $telids = $res->fetchColumn();
444 foreach ($adr['tels'] as $tel) {
445 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
446 remove_user_tel($uid, 'address', $adrid, $tel['telid']);
447 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
448 } else if (isset($tel['telid'])) {
449 update_user_tel($uid, 'address', $adrid, $tel['telid'], $tel);
450 } else {
451 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
452 add_user_tel($uid, 'address', $adrid, $telid, $tel);
453 }
454 }
455 }
456 }
457 // }}}
458 // {{{ function remove_user_address()
459 function remove_user_address($uid, $adrid) {
460 XDB::execute("DELETE FROM adresses WHERE adrid = {?} AND uid = {?}", $adrid, $uid);
461 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'address'", $adrid, $uid);
462 }
463 // }}}
464 // {{{ function add_user_tel()
465 function add_user_tel($uid, $link_type, $link_id, $telid, $tel) {
466 require('profil.func.inc.php');
467 $fmt_phone = format_phone_number($tel['tel']);
468 $disp_phone = format_display_number($fmt_phone, $error);
469 XDB::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type, search_tel, display_tel, pub)
470 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})",
471 $uid, $link_type, $link_id, $telid, $tel['tel_type'], $fmt_phone, $disp_phone, $tel['tel_pub']);
472 }
473 // }}}
474 // {{{ function update_user_tel()
475 function update_user_tel($uid, $link_type, $link_id, $telid, $tel) {
476 require('profil.func.inc.php');
477 $fmt_phone = format_phone_number($tel['tel']);
478 $disp_phone = format_display_number($fmt_phone, $error);
479 XDB::execute("UPDATE profile_phones SET search_tel = {?}, display_tel = {?}, tel_type = {?}, pub = {?}
480 WHERE link_type = {?} AND tel_id = {?} AND link_id = {?} AND uid = {?}",
481 $fmt_phone, $disp_phone, $tel['tel_type'], $tel['tel_pub'],
482 $link_type, $telid, $link_id, $uid);
483 }
484 // }}}
485 // {{{ function remove_user_tel()
486 function remove_user_tel($uid, $link_type, $link_id, $telid) {
487 XDB::execute("DELETE FROM profile_phones WHERE tel_id = {?} AND link_id = {?} AND uid = {?} AND link_type = {?}",
488 $telid, $link_id, $uid, $link_type);
489 }
490 // }}}
491 // {{{ function add_user_pro()
492 function add_user_pro($uid, $entrid, $pro) {
493 XDB::execute(
494 "INSERT INTO entreprises (`uid`, `entrid`, `entreprise`, `poste`, `secteur`, `ss_secteur`, `fonction`,
495 `adr1`, `adr2`, `adr3`, `postcode`, `city`, `country`, `region`, `email`, `web`, `pub`, `adr_pub`, `email_pub`)
496 SELECT u.user_id, {?}, {?}, {?}, s.id, ss.id, f.id,
497 {?}, {?}, {?}, {?}, {?}, gp.a2, gr.region, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}
498 FROM auth_user_md5 AS u
499 LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
500 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
501 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})
502 LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
503 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})
504 WHERE u.user_id = {?}
505 LIMIT 1",
506 $entrid, $pro['entreprise'], $pro['poste'],
507 $pro['adr1'], $pro['adr2'], $pro['adr3'], $pro['postcode'], $pro['city'], $pro['email'], $pro['web'], $pro['pub'], $pro['adr_pub'], $pro['email_pub'],
508 $pro['secteur'], $pro['sous_secteur'], $pro['fonction'], $pro['fonction'],
509 $pro['countrytxt'], $pro['countrytxt'], $pro['region'],
510 $uid);
511 if (isset($pro['tels']) && is_array($pro['tels'])) {
512 $telid = 0;
513 foreach ($pro['tels'] as $tel) {
514 if ($pro['tel']) {
515 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
516 $telid ++;
517 }
518 }
519 }
520 }
521 // }}}
522 // {{{ function update_user_pro()
523 function update_user_pro($uid, $entrid, $pro) {
524 $join = "";
525 $set = "";
526 $args_join = array();
527 $args_set = array();
528
529 $join .= "LEFT JOIN emploi_secteur AS s ON(s.label LIKE {?})
530 LEFT JOIN emploi_ss_secteur AS ss ON(s.id = ss.secteur AND ss.label LIKE {?})
531 LEFT JOIN fonctions_def AS f ON(f.fonction_fr LIKE {?} OR f.fonction_en LIKE {?})";
532 $args_join[] = $pro['secteur'];
533 $args_join[] = $pro['sous_secteur'];
534 $args_join[] = $pro['fonction'];
535 $args_join[] = $pro['fonction'];
536 $set .= ", e.`entreprise` = {?}, e.`secteur` = s.id, e.`ss_secteur` = ss.id, e.`fonction` = f.id, e.`poste`= {?}, e.`web` = {?}, e.`pub` = {?}";
537 $args_set[] = $pro['entreprise'];
538 $args_set[] = $pro['poste'];
539 $args_set[] = $pro['web'];
540 $args_set[] = $pro['pub'];
541
542 if (isset($pro['adr1'])) {
543 $join .= "LEFT JOIN geoloc_pays AS gp ON (gp.country LIKE {?} OR gp.pays LIKE {?})
544 LEFT JOIN geoloc_region AS gr ON (gr.a2 = gp.a2 AND gr.name LIKE {?})";
545 $args_join[] = $pro['countrytxt'];
546 $args_join[] = $pro['countrytxt'];
547 $args_join[] = $pro['region'];
548 $set .= ", e.`adr1` = {?}, e.`adr2` = {?}, e.`adr3` = {?}, e.`postcode` = {?}, e.`city` = {?}, e.`country` = gp.a2, e.`region` = gr.region, e.`adr_pub` = {?}";
549 $args_set[] = $pro['adr1'];
550 $args_set[] = $pro['adr2'];
551 $args_set[] = $pro['adr3'];
552 $args_set[] = $pro['postcode'];
553 $args_set[] = $pro['city'];
554 $args_set[] = $pro['adr_pub'];
555 }
556
557 if (isset($pro['email'])) {
558 $set .= ", e.`email` = {?}, e.`email_pub` = {?}";
559 $args_set[] = $pro['email'];
560 $args_set[] = $pro['email_pub'];
561 }
562 $query = "UPDATE entreprises AS e ".$join." SET ".substr($set,1)." WHERE e.uid = {?} AND e.entrid = {?}";
563 $args_where = array($uid, $entrid);
564 $args = array_merge(array($query), $args_join, $args_set, $args_where);
565 call_user_func_array(array('XDB', 'execute'), $args);
566
567
568 if (isset($pro['tels']) && is_array($pro['tels'])) {
569 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'pro' AND link_id = {?} ORDER BY tel_id", $uid, $entrid);
570 $telids = $res->fetchColumn();
571 foreach ($pro['tels'] as $tel) {
572 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
573 remove_user_tel($uid, 'pro', $entrid, $tel['telid']);
574 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
575 } else if (isset($tel['telid'])) {
576 update_user_tel($uid, 'pro', $entrid, $tel['telid'], $tel);
577 } else {
578 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
579 add_user_tel($uid, 'pro', $entrid, $telid, $tel);
580 }
581 }
582 }
583 }
584 // }}}
585 // {{{ function remove_user_pro()
586 function remove_user_pro($uid, $entrid) {
587 XDB::execute("DELETE FROM entreprises WHERE entrid = {?} AND uid = {?}", $entrid, $uid);
588 XDB::execute("DELETE FROM profile_phones WHERE link_id = {?} AND uid = {?} AND link_type = 'pro'", $entrid, $uid);
589 }
590 // }}}
591 // {{{ function set_user_details_addresses()
592 function set_user_details_addresses($uid, $adrs) {
593 $req = XDB::query('SELECT MAX(adrid) + 1
594 FROM adresses
595 WHERE uid = {?}', $uid);
596 $adrid = $req->fetchOneCell();
597 if (is_null($adrid)) {
598 $adrid = 0;
599 }
600 foreach ($adrs as $adr) {
601 if (!@$adr['remove']) {
602 add_user_address($uid, $adrid, $adr);
603 ++$adrid;
604 }
605 }
606 require_once 'geoloc.inc.php';
607 localize_addresses($uid);
608 }
609 // }}}
610 // {{{ function set_user_details_pro()
611
612 function set_user_details_pro($uid, $pros)
613 {
614 $req = XDB::query('SELECT MAX(entrid) + 1
615 FROM entreprises
616 WHERE uid = {?}', $uid);
617 $entrid = $req->fetchOneCell();
618 if (is_null($entrid)) {
619 $entrid = 0;
620 }
621 foreach ($pros as $pro) {
622 if (!@$pro['remove']) {
623 add_user_pro($uid, $entrid, $pro);
624 ++$entrid;
625 }
626 }
627 }
628
629 // }}}
630 // {{{ function set_user_details()
631 function set_user_details($uid, $details) {
632 if (isset($details['nom_usage'])) {
633 XDB::execute("UPDATE auth_user_md5 SET nom_usage = {?} WHERE user_id = {?}", strtoupper($details['nom_usage']), $uid);
634 }
635 if (isset($details['nationalite'])) {
636 XDB::execute(
637 "UPDATE auth_user_md5 AS u
638 INNER JOIN geoloc_pays AS gp
639 SET u.nationalite = gp.a2
640 WHERE (gp.a2 = {?} OR gp.nat = {?})
641 AND u.user_id = {?}", $details['nationalite'], $details['nationalite'], $uid);
642 }
643 if (isset($details['adr']) && is_array($details['adr']))
644 set_user_details_addresses($uid, $details['adr']);
645 if (isset($details['adr_pro']) && is_array($details['adr_pro']))
646 set_user_details_pro($uid, $details['adr_pro']);
647 if (isset($details['binets']) && is_array($details['binets'])) {
648 XDB::execute("DELETE FROM binets_ins WHERE user_id = {?}", $uid);
649 foreach ($details['binets'] as $binet)
650 XDB::execute(
651 "INSERT INTO binets_ins (`user_id`, `binet_id`)
652 SELECT {?}, id FROM binets_def WHERE text = {?} LIMIT 1",
653 $uid, $binet);
654 }
655 if (isset($details['gpxs']) && is_array($details['gpxs'])) {
656 XDB::execute("DELETE FROM groupesx_ins WHERE user_id = {?}", $uid);
657 foreach ($details['gpxs'] as $groupex) {
658 if (preg_match('/<a href="[^"]*">([^<]+)</a>/u', $groupex, $a)) $groupex = $a[1];
659 XDB::execute(
660 "INSERT INTO groupesx_ins (`user_id`, `binet_id`)
661 SELECT {?}, id FROM groupesx_def WHERE text = {?} LIMIT 1",
662 $uid, $groupex);
663 }
664 }
665 if (isset($details['tels']) && is_array($details['tels'])) {
666 $res = XDB::query("SELECT tel_id FROM profile_phones WHERE uid = {?} AND link_type = 'user' ORDER BY tel_id", $uid);
667 $telids = $res->fetchColumn();
668 foreach ($details['tels'] as $tel) {
669 if (isset($tel['telid']) && isset($tel['remove']) && $tel['remove']) {
670 remove_user_tel($uid, 'user', 0, $tel['telid']);
671 if (isset($telids[$tel['telid']])) unset($telids[$tel['telid']]);
672 } else if (isset($tel['telid'])) {
673 update_user_tel($uid, 'user', 0, $tel['telid'], $tel);
674 } else {
675 for ($telid = 0; isset($telids[$telid]) && ($telids[$telid] == $telid); $telid++);
676 add_user_tel($uid, 'user', 0, $telid, $tel);
677 }
678 }
679 }
680
681 // education
682 // medals
683 }
684 // }}}
685 // {{{ function _user_reindex
686
687 function _user_reindex($uid, $keys)
688 {
689 foreach ($keys as $i => $key) {
690 if ($key['name'] == '') {
691 continue;
692 }
693 $toks = preg_split('/[ \'\-]+/', $key['name']);
694 $token = "";
695 $first = 5;
696 while ($toks) {
697 $token = strtolower(replace_accent(array_pop($toks) . $token));
698 $score = ($toks ? 0 : 10 + $first) * ($key['score'] / 10);
699 XDB::execute("REPLACE INTO search_name (token, uid, soundex, score, flags)
700 VALUES ({?}, {?}, {?}, {?}, {?})",
701 $token, $uid, soundex_fr($token), $score, $key['public']);
702 $first = 0;
703 }
704 }
705 }
706
707 // }}}
708 // {{{ function user_reindex
709
710 function user_reindex($uid) {
711 XDB::execute("DELETE FROM search_name
712 WHERE uid = {?}",
713 $uid);
714 $res = XDB::iterator("SELECT CONCAT(n.particle, n.name) AS name, e.score,
715 FIND_IN_SET('public', e.flags) AS public
716 FROM profile_name AS n
717 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
718 WHERE n.pid = {?}",
719 $uid);
720 _user_reindex($uid, $res);
721 }
722
723 // }}}
724 // {{{ function set_new_usage()
725
726 function set_new_usage($uid, $usage, $alias=false)
727 {
728 XDB::execute("UPDATE auth_user_md5 set nom_usage={?} WHERE user_id={?}",$usage ,$uid);
729 XDB::execute("DELETE FROM aliases WHERE FIND_IN_SET('usage',flags) AND id={?}", $uid);
730 if ($alias && $usage) {
731 XDB::execute("UPDATE aliases SET flags=flags & 255-1 WHERE id={?}", $uid);
732 XDB::execute("INSERT INTO aliases VALUES({?}, 'alias', 'usage,bestalias', {?}, null)",
733 $alias, $uid);
734 }
735 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
736 if ($r->numRows() == "") {
737 XDB::execute("UPDATE aliases SET flags = 1 | flags WHERE id = {?} LIMIT 1", $uid);
738 $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
739 }
740 user_reindex($uid);
741 return $r->fetchOneCell();
742 }
743
744 // }}}
745 // {{{ function get_X_mat
746 function get_X_mat($ourmat)
747 {
748 if (!preg_match('/^[0-9]{8}$/', $ourmat)) {
749 // le matricule de notre base doit comporter 8 chiffres
750 return 0;
751 }
752
753 $year = intval(substr($ourmat, 0, 4));
754 $rang = intval(substr($ourmat, 5, 3));
755 if ($year < 1996) {
756 return;
757 } elseif ($year < 2000) {
758 $year = intval(substr(1900 - $year, 1, 3));
759 return sprintf('%02u0%03u', $year, $rang);
760 } else {
761 $year = intval(substr(1900 - $year, 1, 3));
762 return sprintf('%03u%03u', $year, $rang);
763 }
764 }
765
766 // }}}
767
768
769 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
770 ?>