Fix visibility levels
[platal.git] / classes / profile.php
CommitLineData
e7b93962
FB
1<?php
2/***************************************************************************
d4c08d89 3 * Copyright (C) 2003-2010 Polytechnique.org *
e7b93962
FB
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
22class Profile
23{
f5642983
FB
24 static private $v_values = array('public' => array('public'),
25 'ax' => array('ax', 'public'),
26 'private' => array('private', 'ax', 'public'));
913a4e90 27
f5642983
FB
28 const VISIBILITY_PUBLIC = 'public';
29 const VISIBILITY_AX = 'ax';
30 const VISIBILITY_PRIVATE = 'private';
31
913a4e90
RB
32 /* name tokens */
33 const LASTNAME = 'lastname';
34 const FIRSTNAME = 'firstname';
35 const NICKNAME = 'nickname';
36 const PSEUDONYM = 'pseudonym';
37 const NAME = 'name';
38 /* name variants */
39 const VN_MARITAL = 'marital';
40 const VN_ORDINARY = 'ordinary';
41 const VN_OTHER = 'other';
42 const VN_INI = 'ini';
43 /* display names */
44 const DN_FULL = 'directory_name';
45 const DN_DISPLAY = 'yourself';
46 const DN_YOURSELF = 'yourself';
47 const DN_DIRECTORY = 'directory_name';
48 const DN_PRIVATE = 'private_name';
49 const DN_PUBLIC = 'public_name';
50 const DN_SHORT = 'short_name';
51 const DN_SORT = 'sort_name';
e02d9fbb
SJ
52 /* education related names */
53 const EDU_X = 'École polytechnique';
54 const DEGREE_X = 'Ingénieur';
55 const DEGREE_M = 'Master';
56 const DEGREE_D = 'Doctorat';
913a4e90
RB
57
58 static public $name_variants = array(
59 self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY),
60 self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER)
61 );
62
f5642983
FB
63 const ADDRESS_MAIN = 0x000001;
64 const ADDRESS_PERSO = 0x000002;
65 const ADDRESS_PRO = 0x000004;
66 const ADDRESS_ALL = 0x000006;
67 const ADDRESS_POSTAL = 0x000008;
68
69 const EDUCATION_MAIN = 0x000010;
4bc5b8f0
FB
70 const EDUCATION_EXTRA = 0x000020;
71 const EDUCATION_ALL = 0x000040;
72 const EDUCATION_FINISHED = 0x000080;
73 const EDUCATION_CURRENT = 0x000100;
f5642983 74
4bc5b8f0
FB
75 const JOBS_MAIN = 0x001000;
76 const JOBS_ALL = 0x002000;
77 const JOBS_FINISHED = 0x004000;
78 const JOBS_CURRENT = 0x008000;
f5642983 79
04a94b1d
FB
80 const NETWORKING_ALL = 0x000000;
81 const NETWORKING_WEB = 0x010000;
82 const NETWORKING_IM = 0x020000;
83 const NETWORKING_SOCIAL = 0x040000;
84
9f21bd15
RB
85 const FETCH_ADDRESSES = 0x00001;
86 const FETCH_CORPS = 0x00002;
87 const FETCH_EDU = 0x00004;
88 const FETCH_JOBS = 0x00008;
89 const FETCH_MEDALS = 0x00010;
90 const FETCH_NETWORKING = 0x00020;
91 const FETCH_PHONES = 0x00040;
92 const FETCH_PHOTO = 0x00080;
93
6b5008ec
RB
94 const FETCH_ALL = 0x000FF;
95
e7b93962
FB
96 private $pid;
97 private $hrpid;
3e53a496
FB
98 private $data = array();
99
f5642983
FB
100 private $visibility = null;
101
b774ddab 102 private function __construct(array $data)
e7b93962 103 {
b774ddab 104 $this->data = $data;
832e6fcb
FB
105 $this->pid = $this->data['pid'];
106 $this->hrpid = $this->data['hrpid'];
f74fb084
FB
107 if (!S::logged()) {
108 $this->setVisibilityLevel(self::VISIBILITY_PUBLIC);
109 }
e7b93962
FB
110 }
111
9f21bd15
RB
112 static private $contexts = array();
113
114 /** Returns the best visibility context toward $visibility
115 * @param $visibility A wished visibility level
abb8de12 116 * @return An array of compatible visibilities
9f21bd15
RB
117 *
118 * if $visibility is null, the best visibility is returned
119 */
120 static public function getVisibilityContext($visibility = null)
121 {
122 if (array_key_exists($visibility, self::$contexts)) {
123 return self::$contexts[$visibility];
124 }
125
126 $asked_vis = $visibility;
127
128 if (S::logged()) {
129 $minvis = self::VISIBILITY_PRIVATE;
130 } else {
131 $minvis = self::VISIBILITY_PUBLIC;
132 }
133 if ($visibility == null) {
545ea3a5 134 $visibility = $minvis;
9f21bd15
RB
135 }
136
137 if ($minvis == self::VISIBILITY_PUBLIC) {
545ea3a5 138 $visibility = self::VISIBILITY_PUBLIC;
9f21bd15
RB
139 }
140
545ea3a5 141 $visibility = self::$v_values[$visibility];
9f21bd15
RB
142 self::$contexts[$asked_vis] = $visibility;
143
144 return $visibility;
145 }
146
e7b93962
FB
147 public function id()
148 {
149 return $this->pid;
150 }
151
152 public function hrid()
153 {
154 return $this->hrpid;
155 }
156
d5e60905
FB
157 public function promo()
158 {
159 return $this->promo;
160 }
161
845f0a4d
SJ
162 public function yearpromo()
163 {
164 return intval(substr($this->promo, 1, 4));
165 }
166
94b72319
FB
167 /** Print a name with the given formatting:
168 * %s = • for women
169 * %f = firstname
170 * %l = lastname
171 * %F = fullname
172 * %S = shortname
173 * %p = promo
174 */
175 public function name($format)
176 {
177 return str_replace(array('%s', '%f', '%l', '%F', '%S', '%p'),
178 array($this->isFemale() ? '•' : '',
faf75faf
SJ
179 $this->firstName(), $this->lastName(),
180 $this->fullName(), $this->shortName(),
181 $this->promo()), $format);
94b72319
FB
182 }
183
184 public function fullName($with_promo = false)
185 {
186 if ($with_promo) {
187 return $this->full_name . ' (' . $this->promo . ')';
188 }
189 return $this->full_name;
190 }
191
192 public function shortName($with_promo = false)
193 {
194 if ($with_promo) {
195 return $this->short_name . ' (' . $this->promo . ')';
196 }
197 return $this->short_name;
198 }
199
200 public function firstName()
201 {
08c91036 202 return $this->firstname;
94b72319
FB
203 }
204
5c005b37
RB
205 public function firstNames()
206 {
207 return $this->nameVariants(self::FIRSTNAME);
208 }
209
94b72319
FB
210 public function lastName()
211 {
08c91036 212 return $this->lastname;
94b72319
FB
213 }
214
5c005b37
RB
215 public function lastNames()
216 {
217 return $this->nameVariants(self::LASTNAME);
218 }
219
94b72319
FB
220 public function isFemale()
221 {
222 return $this->sex == PlUser::GENDER_FEMALE;
223 }
224
225 public function data()
226 {
227 $this->first_name;
228 return $this->data;
229 }
230
5c005b37
RB
231 private function nameVariants($type)
232 {
233 $vals = array($this->$type);
234 foreach (self::$name_variants[$type] as $var) {
235 $vartype = $type . '_' . $var;
236 $varname = $this->$vartype;
237 if ($varname != null && $varname != "") {
238 $vals[] = $varname;
239 }
240 }
241 return array_unique($vals);
242 }
243
b6569a95
FB
244 public function nationalities()
245 {
246 $nats = array();
247 if ($this->nationality1) {
248 $nats[] = $this->nationality1;
249 }
250 if ($this->nationality2) {
251 $nats[] = $this->nationality2;
252 }
253 if ($this->nationality3) {
254 $nats[] = $this->nationality3;
255 }
256 return $nats;
257 }
258
3e53a496
FB
259 public function __get($name)
260 {
261 if (property_exists($this, $name)) {
262 return $this->$name;
263 }
264
3e53a496
FB
265 if (isset($this->data[$name])) {
266 return $this->data[$name];
267 }
268
269 return null;
270 }
271
272 public function __isset($name)
273 {
274 return property_exists($this, $name) || isset($this->data[$name]);
275 }
276
c159e50f
RB
277 /** Sets the level of visibility of the profile
278 * Sets $this->visibility to a list of valid visibilities.
279 * @param one of the self::VISIBILITY_* values
280 */
f5642983
FB
281 public function setVisibilityLevel($visibility)
282 {
0d906109
RB
283 if ($visibility != self::VISIBILITY_PRIVATE
284 && $visibility != self::VISIBILITY_AX
f5642983
FB
285 && $visibility != self::VISIBILITY_PUBLIC) {
286 Platal::page()->kill("Visibility invalide: " . $visibility);
287 }
288 $this->visibility = self::$v_values[$visibility];
5c005b37 289 if ($this->mobile && !in_array($this->mobile_pub, $this->visibility)) {
46e9eb99
FB
290 unset($this->data['mobile']);
291 }
f5642983
FB
292 }
293
c159e50f
RB
294 /** Determine whether an item with visibility $visibility can be displayed
295 * with the current level of visibility of the profile
296 * @param $visibility The level of visibility to be checked
297 */
298 public function isVisible($visibility)
299 {
300 return in_array($visibility, $this->visibility);
301 }
4bc5b8f0 302
9f21bd15
RB
303 public static function getCompatibleVisibilities($visibility)
304 {
305 return self::$v_values[$visibility];
306 }
307
833a6e86
FB
308 /* Photo
309 */
9f21bd15
RB
310 private $photo = null;
311 public function setPhoto(ProfilePhoto $photo)
312 {
313 $this->photo = $photo;
314 }
315
833a6e86
FB
316 public function getPhoto($fallback = true)
317 {
9f21bd15
RB
318 if ($this->photo != null) {
319 return $this->photo->pic;
320 } else if ($fallback) {
321 return PlImage::fromFile(dirname(__FILE__).'/../htdocs/images/none.png',
322 'image/png');
323 }
324 return null;
325 }
7d0ebdf5 326
4bc5b8f0
FB
327 /* Addresses
328 */
7d0ebdf5
RB
329 private $addresses = null;
330 public function setAddresses(ProfileAddresses $addr)
331 {
332 $this->addresses = $addr;
333 }
334
4bc5b8f0 335 public function getAddresses($flags, $limit = null)
f5642983 336 {
7d0ebdf5
RB
337 if ($this->addresses == null) {
338 return PlIteratorUtils::fromArray(array());
339 } else {
340 return $this->addresses->get($flags, $limit);
f5642983 341 }
f5642983
FB
342 }
343
344 public function getMainAddress()
345 {
346 $it = $this->getAddresses(self::ADDRESS_PERSO | self::ADDRESS_MAIN);
347 if ($it->total() == 0) {
348 return null;
349 } else {
350 return $it->next();
351 }
352 }
3e53a496 353
4bc5b8f0
FB
354
355 /* Educations
356 */
357 public function getEducations($flags, $limit = null)
358 {
ce0b2c6f 359 $where = XDB::format('pe.pid = {?}', $this->id());
4bc5b8f0
FB
360 if ($flags & self::EDUCATION_MAIN) {
361 $where .= ' AND FIND_IN_SET(\'primary\', pe.flags)';
362 } else if ($flags & self::EDUCATION_EXTRA) {
363 $where .= ' AND NOT FIND_IN_SET(\'primary\', pe.flags)';
364 } else if ($flags & self::EDUCATION_FINISHED) {
365 $where .= ' AND pe.grad_year <= YEAR(CURDATE())';
366 } else if ($flags & self::EDUCATION_CURRENT) {
367 $where .= ' AND pe.grad_year > YEAR(CURDATE())';
368 }
369 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
370 return XDB::iterator('SELECT pe.entry_year, pe.grad_year, pe.program,
371 pee.name AS school, pee.abbreviation AS school_short, pee.url AS school_url, gc.countryFR AS country,
372 pede.degree, pede.abbreviation AS degree_short, pede.level AS degree_level, pefe.field,
373 FIND_IN_SET(\'primary\', pe.flags) AS prim
374 FROM profile_education AS pe
375 INNER JOIN profile_education_enum AS pee ON (pe.eduid = pee.id)
376 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pee.country)
377 INNER JOIN profile_education_degree_enum AS pede ON (pe.degreeid = pede.id)
378 LEFT JOIN profile_education_field_enum AS pefe ON (pe.fieldid = pefe.id)
379 WHERE ' . $where . '
380 ORDER BY NOT FIND_IN_SET(\'primary\', pe.flags), pe.entry_year, pe.id
381 ' . $limit);
382 }
383
384 public function getExtraEducations($limit = null)
385 {
386 return $this->getEducations(self::EDUCATION_EXTRA, $limit);
387 }
388
389
04a94b1d
FB
390 /** Networking
391 */
392
393 public function getNetworking($flags, $limit = null)
394 {
ce0b2c6f 395 $where = XDB::format('pn.pid = {?}', $this->id());
04a94b1d
FB
396 if ($flags & self::NETWORKING_WEB) {
397 $where .= ' AND pn.network_type = 0'; // XXX hardcoded reference to web site index
398 }
399 if ($this->visibility) {
9f21bd15 400 $where .= ' AND pn.pub IN ' . XDB::formatArray($this->visibility);
04a94b1d
FB
401 }
402 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
403 return XDB::iterator('SELECT pne.name, pne.icon,
404 IF (LENGTH(pne.link) > 0, REPLACE(pne.link, \'%s\', pn.address),
405 pn.address) AS address
406 FROM profile_networking AS pn
407 INNER JOIN profile_networking_enum AS pne ON (pn.network_type = pne.network_type)
408 WHERE ' . $where . '
409 ORDER BY pn.network_type, pn.nwid
410 ' . $limit);
411 }
412
413 public function getWebSite()
414 {
415 $site = $this->getNetworking(self::NETWORKING_WEB, 1);
416 if ($site->total() != 1) {
417 return null;
418 }
419 $site = $site->next();
420 return $site['address'];
421 }
422
423
e718bd18
FB
424 /** Jobs
425 */
426
427 public function getJobs($flags, $limit = null)
428 {
ce0b2c6f 429 $where = XDB::format('pj.pid = {?}', $this->id());
e718bd18
FB
430 $cond = 'TRUE';
431 if ($this->visibility) {
9f21bd15
RB
432 $where .= ' AND pj.pub IN ' . XDB::formatArray($this->visibility);
433 $cond = 'pj.email_pub IN ' . XDB::formatArray($this->visibility);
e718bd18
FB
434 }
435 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
436 return XDB::iterator('SELECT pje.name, pje.acronym, pje.url, pje.email, pje.NAF_code,
437 pj.description, pj.url AS user_site,
438 IF (' . $cond . ', pj.email, NULL) AS user_email,
83ff5281
SJ
439 pjse.name AS sector, pjsse.name AS subsector,
440 pjssse.name AS subsubsector
e718bd18
FB
441 FROM profile_job AS pj
442 INNER JOIN profile_job_enum AS pje ON (pje.id = pj.jobid)
e718bd18
FB
443 LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pj.sectorid)
444 LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pj.subsectorid)
445 LEFT JOIN profile_job_subsubsector_enum AS pjssse ON (pjssse.id = pj.subsubsectorid)
446 WHERE ' . $where . '
447 ORDER BY pj.id
448 ' . $limit);
449 }
450
451 public function getMailJob()
452 {
453 $job = $this->getJobs(self::JOBS_MAIN, 1);
454 if ($job->total() != 1) {
455 return null;
456 }
457 return $job->next();
458 }
459
5c005b37
RB
460 /* Binets
461 */
462 public function getBinets()
463 {
464 return XDB::fetchColumn('SELECT binet_id
5c8a71f2 465 FROM profile_binets
bdd977d7 466 WHERE pid = {?}', $this->id());
5c005b37
RB
467 }
468
e718bd18 469
e7b93962
FB
470 public function owner()
471 {
472 return User::getSilent($this);
473 }
474
94590511
SJ
475 public function compareNames($firstname, $lastname)
476 {
477 $_lastname = mb_strtoupper($this->lastName());
478 $_firstname = mb_strtoupper($this->firstName());
479 $lastname = mb_strtoupper($lastname);
480 $firstname = mb_strtoupper($firstname);
481
482 $isOk = (mb_strtoupper($_firstname) == mb_strtoupper($firstname));
483 $tokens = preg_split("/[ \-']/", $lastname, -1, PREG_SPLIT_NO_EMPTY);
484 $maxlen = 0;
485
486 foreach ($tokens as $str) {
487 $isOk &= (strpos($_lastname, $str) !== false);
488 $maxlen = max($maxlen, strlen($str));
489 }
490
491 return ($isOk && ($maxlen > 2 || $maxlen == strlen($_lastname)));
492 }
493
9f21bd15 494 private static function fetchProfileData(array $pids, $respect_order = true, $fields = 0x0000, $visibility = null)
b774ddab
FB
495 {
496 if (count($pids) == 0) {
497 return array();
498 }
0d906109
RB
499
500 if ($respect_order) {
501 $order = 'ORDER BY ' . XDB::formatCustomOrder('p.pid', $pids);
502 } else {
503 $order = '';
504 }
505
9f21bd15
RB
506
507 $it = XDB::Iterator('SELECT p.*, p.sex = \'female\' AS sex, pe.entry_year, pe.grad_year,
508 pn_f.name AS firstname, pn_l.name AS lastname, pn_n.name AS nickname,
509 IF(pn_uf.name IS NULL, pn_f.name, pn_uf.name) AS firstname_ordinary,
510 IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_ordinary,
511 pd.promo AS promo, pd.short_name, pd.directory_name AS full_name,
512 pd.directory_name, pp.display_tel AS mobile, pp.pub AS mobile_pub,
513 ph.attach IS NOT NULL AS has_photo, ph.pub AS photo_pub,
514 p.last_change < DATE_SUB(NOW(), INTERVAL 365 DAY) AS is_old,
515 ap.uid AS owner_id
516 FROM profiles AS p
517 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
518 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
519 INNER JOIN profile_name AS pn_f ON (pn_f.pid = p.pid
520 AND pn_f.typeid = ' . self::getNameTypeId('firstname', true) . ')
521 INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid
522 AND pn_l.typeid = ' . self::getNameTypeId('lastname', true) . ')
523 LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid
524 AND pn_uf.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ')
525 LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid
526 AND pn_ul.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ')
527 LEFT JOIN profile_name AS pn_n ON (pn_n.pid = p.pid
528 AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ')
529 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\')
530 LEFT JOIN profile_photos AS ph ON (ph.pid = p.pid)
531 LEFT JOIN account_profiles AS ap ON (ap.pid = p.pid AND FIND_IN_SET(\'owner\', ap.perms))
532 WHERE p.pid IN ' . XDB::formatArray($pids) . '
533 GROUP BY p.pid
534 ' . $order);
535 return new ProfileDataIterator($it, $pids, $fields, $visibility);
b774ddab
FB
536 }
537
538 public static function getPID($login)
539 {
540 if ($login instanceof PlUser) {
541 return XDB::fetchOneCell('SELECT pid
542 FROM account_profiles
543 WHERE uid = {?} AND FIND_IN_SET(\'owner\', perms)',
544 $login->id());
9f21bd15 545 } else if (ctype_digit($login)) {
b774ddab
FB
546 return XDB::fetchOneCell('SELECT pid
547 FROM profiles
548 WHERE pid = {?}', $login);
549 } else {
550 return XDB::fetchOneCell('SELECT pid
551 FROM profiles
552 WHERE hrpid = {?}', $login);
553 }
554 }
555
0d906109
RB
556 public static function getPIDsFromUIDs($uids, $respect_order = true)
557 {
558 if ($respect_order) {
559 $order = 'ORDER BY ' . XDB::formatCustomOrder('uid', $uids);
560 } else {
561 $order = '';
562 }
563 return XDB::fetchAllAssoc('uid', 'SELECT ap.uid, ap.pid
564 FROM account_profiles AS ap
565 WHERE FIND_IN_SET(\'owner\', ap.perms)
9f21bd15
RB
566 AND ap.uid IN ' . XDB::formatArray($uids) .'
567 ' . $order);
0d906109 568 }
b774ddab 569
e7b93962
FB
570 /** Return the profile associated with the given login.
571 */
9f21bd15 572 public static function get($login, $fields = 0x0000, $visibility = null)
a3118782 573 {
641f2115
FB
574 if (is_array($login)) {
575 return new Profile($login);
576 }
b774ddab
FB
577 $pid = self::getPID($login);
578 if (!is_null($pid)) {
9f21bd15 579 $it = self::iterOverPIDs(array($pid), false, $fields, $visibility);
0d906109 580 return $it->next();
b774ddab 581 } else {
efe597c5
FB
582 /* Let say we can identify a profile using the identifiers of its owner.
583 */
455ea0c9
FB
584 if (!($login instanceof PlUser)) {
585 $user = User::getSilent($login);
586 if ($user && $user->hasProfile()) {
587 return $user->profile();
588 }
efe597c5 589 }
3e53a496 590 return null;
e7b93962
FB
591 }
592 }
a3118782 593
9f21bd15 594 public static function iterOverUIDs($uids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 595 {
9f21bd15 596 return self::iterOverPIDs(self::getPIDsFromUIDs($uids), $respect_order, $fields, $visibility);
0d906109
RB
597 }
598
9f21bd15 599 public static function iterOverPIDs($pids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 600 {
9f21bd15 601 return self::fetchProfileData($pids, $respect_order, $fields, $visibility);
0d906109
RB
602 }
603
b774ddab
FB
604 /** Return profiles for the list of pids.
605 */
7d0ebdf5 606 public static function getBulkProfilesWithPIDs(array $pids, $fields = self::FETCH_ADDRESSES, $visibility = null)
b774ddab
FB
607 {
608 if (count($pids) == 0) {
609 return array();
610 }
9f21bd15 611 $it = self::iterOverPIDs($pids, true, $fields, $visibility);
b774ddab 612 $profiles = array();
0d906109
RB
613 while ($p = $it->next()) {
614 $profiles[$p->id()] = $p;
b774ddab
FB
615 }
616 return $profiles;
617 }
618
619 /** Return profiles for uids.
620 */
9f21bd15 621 public static function getBulkProfilesWithUIDS(array $uids, $fields = 0x000, $visibility = null)
b774ddab
FB
622 {
623 if (count($uids) == 0) {
624 return array();
625 }
9f21bd15 626 return self::getBulkProfilesWithPIDs(self::getPIDsFromUIDs($uids), $fields, $visibility);
b774ddab
FB
627 }
628
913a4e90
RB
629 public static function isDisplayName($name)
630 {
631 return $name == self::DN_FULL || $name == self::DN_DISPLAY
632 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
633 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
634 || $name == self::DN_SHORT || $name == self::DN_SORT;
635 }
636
9f21bd15
RB
637 public static function getNameTypeId($type, $for_sql = false)
638 {
639 if (!S::has('name_types')) {
640 $table = XDB::fetchAllAssoc('type', 'SELECT id, type
641 FROM profile_name_enum');
642 S::set('name_types', $table);
643 } else {
644 $table = S::v('name_types');
645 }
646 if ($for_sql) {
647 return XDB::escape($table[$type]);
648 } else {
649 return $table[$type];
650 }
651 }
652
726eaf7a
SJ
653 public static function rebuildSearchTokens($pid)
654 {
655 XDB::execute('DELETE FROM search_name
6dbb167e 656 WHERE pid = {?}',
726eaf7a
SJ
657 $pid);
658 $keys = XDB::iterator("SELECT CONCAT(n.particle, n.name) AS name, e.score,
659 FIND_IN_SET('public', e.flags) AS public
660 FROM profile_name AS n
661 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
662 WHERE n.pid = {?}",
663 $pid);
664
665 foreach ($keys as $i => $key) {
666 if ($key['name'] == '') {
667 continue;
668 }
669 $toks = preg_split('/[ \'\-]+/', $key['name']);
670 $token = '';
671 $first = 5;
672 while ($toks) {
673 $token = strtolower(replace_accent(array_pop($toks) . $token));
674 $score = ($toks ? 0 : 10 + $first) * ($key['score'] / 10);
6dbb167e 675 XDB::execute('REPLACE INTO search_name (token, pid, soundex, score, flags)
726eaf7a 676 VALUES ({?}, {?}, {?}, {?}, {?})',
6dbb167e 677 $token, $pid, soundex_fr($token), $score, $key['public']);
726eaf7a
SJ
678 $first = 0;
679 }
680 }
69b46857
SJ
681 }
682
683 /** The school identifier consists of 6 digits. The first 3 represent the
684 * promotion entry year. The last 3 indicate the student's rank.
685 *
686 * Our identifier consists of 8 digits and both half have the same role.
687 * This enables us to deal with bigger promotions and with a wider range
688 * of promotions.
689 *
690 * getSchoolId returns a school identifier given one of ours.
691 * getXorgId returns a X.org identifier given a school identifier.
692 */
693 public static function getSchoolId($xorgId)
694 {
695 if (!preg_match('/^[0-9]{8}$/', $xorgId)) {
696 return null;
697 }
698
699 $year = intval(substr($xorgId, 0, 4));
700 $rank = intval(substr($xorgId, 5, 3));
701 if ($year < 1996) {
702 return null;
703 } elseif ($year < 2000) {
704 $year = intval(substr(1900 - $year, 1, 3));
705 return sprintf('%02u0%03u', $year, $rank);
706 } else {
707 $year = intval(substr(1900 - $year, 1, 3));
708 return sprintf('%03u%03u', $year, $rank);
709 }
710 }
726eaf7a 711
69b46857
SJ
712 public static function getXorgId($schoolId)
713 {
94590511 714 if (!preg_match('/^[0-9]{6}$/', $schoolId)) {
a292484d
SJ
715 return null;
716 }
717
69b46857
SJ
718 $year = intval(substr($schoolId, 0, 3));
719 $rank = intval(substr($schoolId, 3, 3));
726eaf7a 720
69b46857
SJ
721 if ($year > 200) {
722 $year /= 10;
723 }
724 if ($year < 96) {
725 return null;
726 } else {
727 return sprintf('%04u%04u', 1900 + $year, $rank);
728 }
726eaf7a 729 }
e7b93962
FB
730}
731
9f21bd15
RB
732class ProfileDataIterator
733{
734 private $iterator = null;
735 private $fields;
736
737 public function __construct(PlIterator $it, array $pids, $fields = 0x0000, $visibility = null)
738 {
739 require_once 'profilefields.inc.php';
740 $visibility = Profile::getVisibilityContext($visibility);
741 $this->fields = $fields;
742
743 $subits = array();
744 $callbacks = array();
745
746 $subits[0] = $it;
747 $callbacks[0] = PlIteratorUtils::arrayValueCallback('pid');
748 $cb = PlIteratorUtils::objectPropertyCallback('pid');
749
750 if ($fields & Profile::FETCH_ADDRESSES) {
751 $callbacks[Profile::FETCH_ADDRESSES] = $cb;
752 $subits[Profile::FETCH_ADDRESSES] = new ProfileFieldIterator('ProfileAddresses', $pids, $visibility);
753 }
754
755 if ($fields & Profile::FETCH_CORPS) {
756 $callbacks[Profile::FETCH_CORPS] = $cb;
757 $subits[Profile::FETCH_CORPS] = new ProfileFieldIterator('ProfileCorps', $pids, $visibility);
758 }
759
760 if ($fields & Profile::FETCH_EDU) {
761 $callbacks[Profile::FETCH_EDU] = $cb;
762 $subits[Profile::FETCH_EDU] = new ProfileFieldIterator('ProfileEducation', $pids, $visibility);
763 }
764
765 if ($fields & Profile::FETCH_JOBS) {
766 $callbacks[Profile::FETCH_JOBS] = $cb;
767 $subits[Profile::FETCH_JOBS] = new ProfileFieldIterator('ProfileJobs', $pids, $visibility);
768 }
769
770 if ($fields & Profile::FETCH_MEDALS) {
771 $callbacks[Profile::FETCH_MEDALS] = $cb;
772 $subits[Profile::FETCH_MEDALS] = new ProfileFieldIterator('ProfileMedals', $pids, $visibility);
773 }
774
775 if ($fields & Profile::FETCH_NETWORKING) {
776 $callbacks[Profile::FETCH_NETWORKING] = $cb;
777 $subits[Profile::FETCH_NETWORKING] = new ProfileFieldIterator('ProfileNetworking', $pids, $visibility);
778 }
779
780 if ($fields & Profile::FETCH_PHONES) {
781 $callbacks[Profile::FETCH_PHONES] = $cb;
782 $subits[Profile::FETCH_PHONES] = new ProfileFieldIterator('ProfilePhones', $pids, $visibility);
783 }
784
785 if ($fields & Profile::FETCH_PHOTO) {
786 $callbacks[Profile::FETCH_PHOTO] = $cb;
787 $subits[Profile::FETCH_PHOTO] = new ProfileFieldIterator('ProfilePhoto', $pids, $visibility);
788 }
789
790 $this->iterator = PlIteratorUtils::parallelIterator($subits, $callbacks, 0);
791 }
792
793 private function consolidateFields(array $pf)
794 {
795 if ($this->fields & Profile::FETCH_PHONES) {
796 $phones = $pf[Profile::FETCH_PHONES];
797
7d0ebdf5 798 if ($this->fields & Profile::FETCH_ADDRESSES && $pf[Profile::FETCH_ADDRESSES] != null) {
9f21bd15
RB
799 $pf[Profile::FETCH_ADDRESSES]->addPhones($phones);
800 }
7d0ebdf5 801 if ($this->fields & Profile::FETCH_JOBS && $pf[Profile::FETCH_JOBS] != null) {
9f21bd15
RB
802 $pf[Profile::FETCH_JOBS]->addPhones($phones);
803 }
804 }
805
806 if ($this->fields & Profile::FETCH_ADDRESSES) {
807 $addrs = $pf[Profile::FETCH_ADDRESSES];
7d0ebdf5 808 if ($this->fields & Profile::FETCH_JOBS && $pf[Profile::FETCH_JOBS] != null) {
9f21bd15
RB
809 $pf[Profile::FETCH_JOBS]->addAddresses($addrs);
810 }
811 }
812
813 return $pf;
814 }
815
816 private function fillProfile(array $vals)
817 {
818 $vals = $this->consolidateFields($vals);
819
820 $pf = Profile::get($vals[0]);
821 if ($this->fields & Profile::FETCH_ADDRESSES) {
7d0ebdf5
RB
822 if ($vals[Profile::FETCH_ADDRESSES] != null) {
823 $pf->setAddresses($vals[Profile::FETCH_ADDRESSES]);
824 }
9f21bd15
RB
825 }
826 if ($this->fields & Profile::FETCH_CORPS) {
827 $pf->setCorps($vals[Profile::FETCH_CORPS]);
828 }
829 if ($this->fields & Profile::FETCH_EDU) {
830 $pf->setEdu($vals[Profile::FETCH_EDU]);
831 }
832 if ($this->fields & Profile::FETCH_JOBS) {
833 $pf->setJobs($vals[Profile::FETCH_JOBS]);
834 }
835 if ($this->fields & Profile::FETCH_MEDALS) {
836 $pf->setMedals($vals[Profile::FETCH_MEDALS]);
837 }
838 if ($this->fields & Profile::FETCH_NETWORKING) {
839 $pf->setNetworking($vals[Profile::FETCH_NETWORKING]);
840 }
841 if ($this->fields & Profile::FETCH_PHONES) {
842 $pf->setPhones($vals[Profile::FETCH_PHONES]);
843 }
844 if ($this->fields & Profile::FETCH_PHOTO) {
845 if ($vals[Profile::FETCH_PHOTO] != null) {
846 $pf->setPhoto($vals[Profile::FETCH_PHOTO]);
847 }
848 }
849
850 return $pf;
851 }
852
853 public function next()
854 {
855 $vals = $this->iterator->next();
856 if ($vals == null) {
857 return null;
858 }
859 return $this->fillProfile($vals);
860 }
861
862 public function first()
863 {
864 return $this->iterator->first();
865 }
866
867 public function last()
868 {
869 return $this->iterator->last();
870 }
871
872 public function total()
873 {
874 return $this->iterator->total();
875 }
876}
877
0d906109
RB
878/** Iterator over a set of Profiles
879 * @param an XDB::Iterator obtained from a Profile::fetchProfileData
880 */
881class ProfileIterator implements PlIterator
882{
9f21bd15 883 private $pdi;
0d906109
RB
884 private $dbiter;
885
9f21bd15 886 public function __construct(ProfileDataIterator &$pdi)
0d906109 887 {
9f21bd15
RB
888 $this->pdi = $pdi;
889 $this->dbiter = $pdi->iterator();
0d906109
RB
890 }
891
892 public function next()
893 {
894 $data = $this->dbiter->next();
895 if ($data == null) {
896 return null;
897 } else {
9f21bd15 898 return $this->pdi->fillProfile(Profile::get($data));
0d906109
RB
899 }
900 }
901
902 public function total()
903 {
904 return $this->dbiter->total();
905 }
906
907 public function first()
908 {
909 return $this->dbiter->first();
910 }
911
912 public function last()
913 {
914 return $this->dbiter->last();
915 }
916}
917
e7b93962
FB
918// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
919?>