Improves email combobox (Closes #1110).
[platal.git] / classes / profile.php
CommitLineData
e7b93962
FB
1<?php
2/***************************************************************************
5e1513f6 3 * Copyright (C) 2003-2011 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
aaffb7b2 22class Profile implements PlExportable
1a9affb7 23{
f5642983 24
913a4e90
RB
25 /* name tokens */
26 const LASTNAME = 'lastname';
27 const FIRSTNAME = 'firstname';
28 const NICKNAME = 'nickname';
29 const PSEUDONYM = 'pseudonym';
30 const NAME = 'name';
31 /* name variants */
32 const VN_MARITAL = 'marital';
33 const VN_ORDINARY = 'ordinary';
34 const VN_OTHER = 'other';
35 const VN_INI = 'ini';
36 /* display names */
37 const DN_FULL = 'directory_name';
38 const DN_DISPLAY = 'yourself';
39 const DN_YOURSELF = 'yourself';
40 const DN_DIRECTORY = 'directory_name';
41 const DN_PRIVATE = 'private_name';
42 const DN_PUBLIC = 'public_name';
43 const DN_SHORT = 'short_name';
44 const DN_SORT = 'sort_name';
e02d9fbb
SJ
45 /* education related names */
46 const EDU_X = 'École polytechnique';
47 const DEGREE_X = 'Ingénieur';
48 const DEGREE_M = 'Master';
49 const DEGREE_D = 'Doctorat';
913a4e90
RB
50
51 static public $name_variants = array(
52 self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY),
53 self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER)
54 );
55
3c985c08
RB
56 const ADDRESS_MAIN = 0x00000001;
57 const ADDRESS_PERSO = 0x00000002;
58 const ADDRESS_PRO = 0x00000004;
59 const ADDRESS_ALL = 0x00000006;
60 const ADDRESS_POSTAL = 0x00000008;
61
62 const EDUCATION_MAIN = 0x00000010;
63 const EDUCATION_EXTRA = 0x00000020;
64 const EDUCATION_ALL = 0x00000040;
65 const EDUCATION_FINISHED = 0x00000080;
66 const EDUCATION_CURRENT = 0x00000100;
67
68 const JOBS_MAIN = 0x00001000;
69 const JOBS_ALL = 0x00002000;
70 const JOBS_FINISHED = 0x00004000;
71 const JOBS_CURRENT = 0x00008000;
72
34de4b20 73 const NETWORKING_ALL = 0x00070000;
3c985c08
RB
74 const NETWORKING_WEB = 0x00010000;
75 const NETWORKING_IM = 0x00020000;
76 const NETWORKING_SOCIAL = 0x00040000;
77
78 const PHONE_LINK_JOB = 0x00100000;
79 const PHONE_LINK_ADDRESS = 0x00200000;
80 const PHONE_LINK_PROFILE = 0x00400000;
81 const PHONE_LINK_COMPANY = 0x00800000;
82 const PHONE_LINK_ANY = 0x00F00000;
83
84 const PHONE_TYPE_FAX = 0x01000000;
85 const PHONE_TYPE_FIXED = 0x02000000;
86 const PHONE_TYPE_MOBILE = 0x04000000;
87 const PHONE_TYPE_ANY = 0x07000000;
88
89 const PHONE_ANY = 0x07F00000;
04a94b1d 90
4d1f0f6b
RB
91 const FETCH_ADDRESSES = 0x000001;
92 const FETCH_CORPS = 0x000002;
93 const FETCH_EDU = 0x000004;
94 const FETCH_JOBS = 0x000008;
95 const FETCH_MEDALS = 0x000010;
96 const FETCH_NETWORKING = 0x000020;
4d1f0f6b
RB
97 const FETCH_MENTOR_COUNTRY = 0x000080;
98 const FETCH_PHONES = 0x000100;
3ac45f10
PC
99 const FETCH_JOB_TERMS = 0x000200;
100 const FETCH_MENTOR_TERMS = 0x000400;
9f21bd15 101
4d1f0f6b 102 const FETCH_MINIFICHES = 0x00012D; // FETCH_ADDRESSES | FETCH_EDU | FETCH_JOBS | FETCH_NETWORKING | FETCH_PHONES
fa9994fa 103
3ac45f10 104 const FETCH_ALL = 0x0007FF; // OR of FETCH_*
6b5008ec 105
7a9680aa
SJ
106 static public $descriptions = array(
107 'search_names' => 'Noms',
108 'nationality1' => 'Nationalité',
109 'nationality2' => '2e nationalité',
110 'nationality3' => '3e nationalité',
111 'promo_display' => 'Promotion affichée',
112 'email_directory' => 'Email annuaire papier',
113 'networking' => 'Messageries…',
114 'tels' => 'Téléphones',
115 'edus' => 'Formations',
116 'promo' => 'Promotion de sortie',
117 'birthdate' => 'Date de naissance',
118 'yourself' => 'Nom affiché',
119 'freetext' => 'Commentaire',
120 'freetext_pub' => 'Affichage du commentaire',
121 'photo' => 'Photographie',
122 'photo_pub' => 'Affichage de la photographie',
123 'addresses' => 'Adresses',
124 'corps' => 'Corps',
125 'cv' => 'CV',
126 'jobs' => 'Emplois',
127 'section' => 'Section',
128 'binets' => 'Binets',
129 'medals' => 'Décorations',
130 'medals_pub' => 'Affichage des décorations',
131 'competences' => 'Compétences',
132 'langues' => 'Langues',
133 'expertise' => 'Expertises (mentoring)',
134 'terms' => 'Compétences (mentoring)',
135 'countries' => 'Pays (mentoring)'
136 );
137
1f8250e4
RB
138 private $fetched_fields = 0x000000;
139
e7b93962
FB
140 private $pid;
141 private $hrpid;
564e2b2a
RB
142 private $owner;
143 private $owner_fetched = false;
3e53a496
FB
144 private $data = array();
145
f5642983
FB
146 private $visibility = null;
147
1f8250e4 148
b774ddab 149 private function __construct(array $data)
e7b93962 150 {
b774ddab 151 $this->data = $data;
832e6fcb
FB
152 $this->pid = $this->data['pid'];
153 $this->hrpid = $this->data['hrpid'];
1a9affb7 154 $this->visibility = new ProfileVisibility();
9f21bd15
RB
155 }
156
e7b93962
FB
157 public function id()
158 {
159 return $this->pid;
160 }
161
162 public function hrid()
163 {
164 return $this->hrpid;
165 }
166
564e2b2a
RB
167 public function owner()
168 {
169 if ($this->owner == null && !$this->owner_fetched) {
170 $this->owner_fetched = true;
171 $this->owner = User::getSilent($this);
172 }
173 return $this->owner;
174 }
175
280806d9
SJ
176 public function isActive()
177 {
178 if ($this->owner()) {
179 return $this->owner->isActive();
180 }
181 return false;
182 }
183
d5e60905
FB
184 public function promo()
185 {
186 return $this->promo;
187 }
188
845f0a4d
SJ
189 public function yearpromo()
190 {
191 return intval(substr($this->promo, 1, 4));
192 }
193
1168306a
PC
194 /** Check if user is an orange (associated with several promos)
195 */
196 public function isMultiPromo()
197 {
198 return $this->grad_year != $this->entry_year + $this->mainEducationDuration();
199 }
200
201 /** Returns an array with all associated promo years.
202 */
203 public function yearspromo()
204 {
205 $promos = array();
206 $d = -$this->deltaPromoToGradYear();
207 for ($g = $this->entry_year + $this->mainEducationDuration(); $g <= $this->grad_year; ++$g) {
208 $promos[] = $g + $d;
209 }
210 return $promos;
211 }
212
963bc7fc
SJ
213 public function mainEducation()
214 {
39e2c58c
FB
215 if (empty($this->promo)) {
216 return null;
217 } else {
218 return $this->promo{0};
219 }
963bc7fc
SJ
220 }
221
02d9dff0
FB
222 public function mainGrade()
223 {
224 switch ($this->mainEducation()) {
225 case 'X':
226 return UserFilter::GRADE_ING;
227 case 'M':
228 return UserFilter::GRADE_MST;
229 case 'D':
230 return UserFilter::GRADE_PHD;
231 default:
232 return null;
233 }
234 }
235
963bc7fc
SJ
236 public function mainEducationDuration()
237 {
238 switch ($this->mainEducation()) {
239 case 'X':
240 return 3;
241 case 'M':
242 return 2;
243 case 'D':
244 return 3;
245 default:
246 return 0;
247 }
248 }
249
1168306a
PC
250 /** Number of years between the promotion year until the
251 * graduation year. In standard schools it's 0, but for
252 * Polytechnique the promo year is the entry year.
253 */
254 public function deltaPromoToGradYear()
255 {
256 if ($this->mainEducation() == 'X') {
257 return $this->mainEducationDuration();
258 }
259 return 0;
260 }
261
94b72319
FB
262 /** Print a name with the given formatting:
263 * %s = • for women
264 * %f = firstname
265 * %l = lastname
266 * %F = fullname
267 * %S = shortname
268 * %p = promo
269 */
270 public function name($format)
271 {
272 return str_replace(array('%s', '%f', '%l', '%F', '%S', '%p'),
273 array($this->isFemale() ? '•' : '',
faf75faf
SJ
274 $this->firstName(), $this->lastName(),
275 $this->fullName(), $this->shortName(),
276 $this->promo()), $format);
94b72319
FB
277 }
278
279 public function fullName($with_promo = false)
280 {
281 if ($with_promo) {
282 return $this->full_name . ' (' . $this->promo . ')';
283 }
284 return $this->full_name;
285 }
286
287 public function shortName($with_promo = false)
288 {
289 if ($with_promo) {
290 return $this->short_name . ' (' . $this->promo . ')';
291 }
292 return $this->short_name;
293 }
294
295 public function firstName()
296 {
08c91036 297 return $this->firstname;
94b72319
FB
298 }
299
5c005b37
RB
300 public function firstNames()
301 {
302 return $this->nameVariants(self::FIRSTNAME);
303 }
304
94b72319
FB
305 public function lastName()
306 {
08c91036 307 return $this->lastname;
94b72319
FB
308 }
309
5c005b37
RB
310 public function lastNames()
311 {
312 return $this->nameVariants(self::LASTNAME);
313 }
314
94b72319
FB
315 public function isFemale()
316 {
317 return $this->sex == PlUser::GENDER_FEMALE;
318 }
319
400ac338
RB
320 public function isDead()
321 {
322 return ($this->deathdate != null);
323 }
324
564e2b2a
RB
325 public function displayEmail()
326 {
327 $o = $this->owner();
328 if ($o != null) {
329 return $o->bestEmail();
330 } else {
331 return $this->email_directory;
332 }
333 }
334
94b72319
FB
335 public function data()
336 {
337 $this->first_name;
338 return $this->data;
339 }
340
5c005b37
RB
341 private function nameVariants($type)
342 {
343 $vals = array($this->$type);
344 foreach (self::$name_variants[$type] as $var) {
345 $vartype = $type . '_' . $var;
346 $varname = $this->$vartype;
347 if ($varname != null && $varname != "") {
348 $vals[] = $varname;
349 }
350 }
351 return array_unique($vals);
352 }
353
b6569a95
FB
354 public function nationalities()
355 {
356 $nats = array();
6420023b 357 $countries = DirEnum::getOptions(DirEnum::COUNTRIES);
b6569a95 358 if ($this->nationality1) {
6420023b 359 $nats[$this->nationality1] = $countries[$this->nationality1];
b6569a95
FB
360 }
361 if ($this->nationality2) {
6420023b 362 $nats[$this->nationality2] = $countries[$this->nationality2];
b6569a95
FB
363 }
364 if ($this->nationality3) {
6420023b 365 $nats[$this->nationality3] = $countries[$this->nationality3];
b6569a95
FB
366 }
367 return $nats;
368 }
369
3e53a496
FB
370 public function __get($name)
371 {
372 if (property_exists($this, $name)) {
373 return $this->$name;
374 }
375
3e53a496
FB
376 if (isset($this->data[$name])) {
377 return $this->data[$name];
378 }
379
380 return null;
381 }
382
383 public function __isset($name)
384 {
385 return property_exists($this, $name) || isset($this->data[$name]);
386 }
387
ddbebe4c
FB
388 public function __unset($name)
389 {
390 if (property_exists($this, $name)) {
391 $this->$name = null;
392 } else {
393 unset($this->data[$name]);
394 }
395 }
396
397
405d70cc
RB
398 /**
399 * Clears a profile.
400 * *always deletes in: profile_addresses, profile_binets, profile_job,
401 * profile_langskills, profile_mentor, profile_networking,
402 * profile_phones, profile_skills, watch_profile
403 * *always keeps in: profile_corps, profile_display, profile_education,
404 * profile_medals, profile_name, profile_photos, search_name
405 * *modifies: profiles
406 */
407 public function clear()
408 {
409 $tables = array(
410 'profile_job', 'profile_langskills', 'profile_mentor',
411 'profile_networking', 'profile_skills', 'watch_profile',
412 'profile_phones', 'profile_addresses', 'profile_binets');
413
414 foreach ($tables as $t) {
415 XDB::execute('DELETE FROM ' . $t . '
416 WHERE pid = {?}',
417 $this->id());
418 }
419
420 XDB::execute("UPDATE profiles
421 SET cv = NULL, freetext = NULL, freetext_pub = 'private',
422 medals_pub = 'private', alias_pub = 'private',
423 email_directory = NULL
424 WHERE pid = {?}",
425 $this->id());
426 }
427
c159e50f
RB
428 /** Sets the level of visibility of the profile
429 * Sets $this->visibility to a list of valid visibilities.
1a9affb7 430 * @param one of the self::VIS_* values
c159e50f 431 */
f5642983
FB
432 public function setVisibilityLevel($visibility)
433 {
1a9affb7 434 $this->visibility->setLevel($visibility);
f5642983
FB
435 }
436
c159e50f
RB
437 /** Determine whether an item with visibility $visibility can be displayed
438 * with the current level of visibility of the profile
439 * @param $visibility The level of visibility to be checked
440 */
441 public function isVisible($visibility)
442 {
1a9affb7 443 return $this->visibility->isVisible($visibility);
9f21bd15
RB
444 }
445
a0f5fa32 446 /** Stores the list of fields which have already been fetched for this Profile
1f8250e4
RB
447 */
448 public function setFetchedFields($fields)
990cb17b 449 {
1f8250e4
RB
450 if (($fields | self::FETCH_ALL) != self::FETCH_ALL) {
451 Platal::page()->kill("Invalid fetched fields: $fields");
452 }
453
454 $this->fetched_fields = $fields;
455 }
456
4ec03752
RB
457 /** Have we already fetched this field ?
458 */
1f8250e4
RB
459 private function fetched($field)
460 {
4ec03752
RB
461 if (!array_key_exists($field, ProfileField::$fields)) {
462 Platal::page()->kill("Invalid field: $field");
1f8250e4
RB
463 }
464
465 return ($this->fetched_fields & $field);
466 }
467
468 /** If not already done, fetches data for the given field
469 * @param $field One of the Profile::FETCH_*
470 * @return A ProfileField, or null
471 */
472 private function getProfileField($field)
473 {
3ac45f10
PC
474 if (!array_key_exists($field, ProfileField::$fields)) {
475 Platal::page()->kill("Invalid field: $field");
476 }
1f8250e4
RB
477 if ($this->fetched($field)) {
478 return null;
479 } else {
480 $this->fetched_fields = $this->fetched_fields | $field;
481 }
482
483 $cls = ProfileField::$fields[$field];
484
990cb17b
RB
485 return ProfileField::getForPID($cls, $this->id(), $this->visibility);
486 }
487
8cf886dc
RB
488 /** Consolidates internal data (addresses, phones, jobs)
489 */
490 private function consolidateFields()
491 {
4ec03752 492 // Link phones to addresses
8cf886dc
RB
493 if ($this->phones != null) {
494 if ($this->addresses != null) {
495 $this->addresses->addPhones($this->phones);
496 }
497
498 if ($this->jobs != null) {
499 $this->jobs->addPhones($this->phones);
500 }
501 }
502
4ec03752 503 // Link addresses to jobs
8cf886dc
RB
504 if ($this->addresses != null && $this->jobs != null) {
505 $this->jobs->addAddresses($this->addresses);
506 }
4ec03752
RB
507
508 // Link jobterms to jobs
3ac45f10
PC
509 if ($this->jobs != null && $this->jobterms != null) {
510 $this->jobs->addJobTerms($this->jobterms);
511 }
8cf886dc
RB
512 }
513
833a6e86
FB
514 /* Photo
515 */
1a9affb7 516 private $photo = null;
7988f7d6 517 public function getPhoto($fallback = true, $data = false)
9f21bd15 518 {
1a9affb7
RB
519 if ($this->has_photo) {
520 if ($data && ($this->photo == null || $this->photo->mimeType == null)) {
8d6bbca3 521 $res = XDB::fetchOneAssoc('SELECT attach, attachmime, x, y, last_update
1f8250e4
RB
522 FROM profile_photos
523 WHERE pid = {?}', $this->pid);
8d6bbca3 524 $this->photo = PlImage::fromData($res['attach'], 'image/' .$res['attachmime'], $res['x'], $res['y'], $res['last_update']);
1a9affb7
RB
525 } else if ($this->photo == null) {
526 $this->photo = PlImage::fromData(null, null, $this->photo_width, $this->photo_height);
527 }
528 return $this->photo;
9f21bd15 529 } else if ($fallback) {
fa671a30
SJ
530 if ($this->mainEducation() == 'X') {
531 return PlImage::fromFile(dirname(__FILE__) . '/../htdocs/images/none_x.png', 'image/png');
532 }
533 return PlImage::fromFile(dirname(__FILE__) . '/../htdocs/images/none_md.png', 'image/png');
9f21bd15
RB
534 }
535 return null;
536 }
7d0ebdf5 537
4bc5b8f0
FB
538 /* Addresses
539 */
7d0ebdf5
RB
540 private $addresses = null;
541 public function setAddresses(ProfileAddresses $addr)
542 {
543 $this->addresses = $addr;
8cf886dc 544 $this->consolidateFields();
7d0ebdf5
RB
545 }
546
dbcc3b3d 547 private function fetchAddresses()
f5642983 548 {
1f8250e4 549 if ($this->addresses == null && !$this->fetched(self::FETCH_ADDRESSES)) {
61ee68c7
FB
550 $addr = $this->getProfileField(self::FETCH_ADDRESSES);
551 if ($addr) {
552 $this->setAddresses($addr);
dbcc3b3d 553 $this->fetchPhones();
61ee68c7 554 }
f5642983 555 }
dbcc3b3d
RB
556 }
557
558 public function getAddresses($flags, $limit = null)
559 {
560 $this->fetchAddresses();
0907501b
RB
561
562 if ($this->addresses == null) {
598c57f6 563 return array();
0907501b 564 }
990cb17b 565 return $this->addresses->get($flags, $limit);
f5642983
FB
566 }
567
598c57f6
RB
568 public function iterAddresses($flags, $limit = null)
569 {
570 return PlIteratorUtils::fromArray($this->getAddresses($flags, $limit), 1, true);
571 }
572
f5642983
FB
573 public function getMainAddress()
574 {
b0ffc881
RB
575 $main = $this->getAddresses(self::ADDRESS_MAIN);
576 $perso = $this->getAddresses(self::ADDRESS_PERSO);
577
578 if (count($main)) {
579 return array_pop($main);
580 } else if (count($perso)) {
581 return array_pop($perso);
f5642983 582 } else {
b0ffc881 583 return null;
f5642983
FB
584 }
585 }
3e53a496 586
bdef0d33
RB
587 /* Phones
588 */
589 private $phones = null;
590 public function setPhones(ProfilePhones $phones)
591 {
592 $this->phones = $phones;
593 $this->consolidateFields();
594 }
595
dbcc3b3d 596 private function fetchPhones()
bdef0d33 597 {
1f8250e4 598 if ($this->phones == null && !$this->fetched(self::FETCH_PHONES)) {
56721636
PC
599 $phones = $this->getProfileField(self::FETCH_PHONES);
600 if (isset($phones)) {
601 $this->setPhones($phones);
602 }
bdef0d33 603 }
dbcc3b3d 604 }
bdef0d33 605
dbcc3b3d
RB
606 public function getPhones($flags, $limit = null)
607 {
608 $this->fetchPhones();
bdef0d33 609 if ($this->phones == null) {
598c57f6 610 return array();
bdef0d33
RB
611 }
612 return $this->phones->get($flags, $limit);
613 }
4bc5b8f0
FB
614
615 /* Educations
616 */
d4d395bb 617 private $educations = null;
a060e1c3
RB
618 public function setEducations(ProfileEducation $edu)
619 {
620 $this->educations = $edu;
621 }
622
4bc5b8f0
FB
623 public function getEducations($flags, $limit = null)
624 {
1f8250e4
RB
625 if ($this->educations == null && !$this->fetched(self::FETCH_EDU)) {
626 $this->setEducations($this->getProfileField(self::FETCH_EDU));
d4d395bb 627 }
0907501b
RB
628
629 if ($this->educations == null) {
598c57f6 630 return array();
0907501b 631 }
a060e1c3 632 return $this->educations->get($flags, $limit);
4bc5b8f0
FB
633 }
634
635 public function getExtraEducations($limit = null)
636 {
637 return $this->getEducations(self::EDUCATION_EXTRA, $limit);
638 }
639
0396c259
RB
640 /* Corps
641 */
642 private $corps = null;
643 public function setCorps(ProfileCorps $corps)
644 {
645 $this->corps = $corps;
646 }
647
648 public function getCorps()
649 {
1f8250e4
RB
650 if ($this->corps == null && !$this->fetched(self::FETCH_CORPS)) {
651 $this->setCorps($this->getProfileField(self::FETCH_CORPS));
0396c259
RB
652 }
653 return $this->corps;
654 }
4bc5b8f0 655
04a94b1d
FB
656 /** Networking
657 */
d4d395bb
RB
658 private $networks = null;
659 public function setNetworking(ProfileNetworking $nw)
660 {
661 $this->networks = $nw;
662 }
04a94b1d
FB
663
664 public function getNetworking($flags, $limit = null)
665 {
1f8250e4 666 if ($this->networks == null && !$this->fetched(self::FETCH_NETWORKING)) {
dad85695
FB
667 $nw = $this->getProfileField(self::FETCH_NETWORKING);
668 if ($nw) {
669 $this->setNetworking($nw);
670 }
04a94b1d 671 }
0907501b 672 if ($this->networks == null) {
598c57f6 673 return array();
0907501b 674 }
d4d395bb 675 return $this->networks->get($flags, $limit);
04a94b1d
FB
676 }
677
678 public function getWebSite()
679 {
680 $site = $this->getNetworking(self::NETWORKING_WEB, 1);
598c57f6 681 if (count($site) != 1) {
04a94b1d
FB
682 return null;
683 }
598c57f6 684 $site = array_pop($site);
dad85695 685 return $site;
04a94b1d
FB
686 }
687
688
e718bd18
FB
689 /** Jobs
690 */
949fc736
RB
691 private $jobs = null;
692 public function setJobs(ProfileJobs $jobs)
693 {
694 $this->jobs = $jobs;
695 $this->consolidateFields();
696 }
e718bd18 697
dbcc3b3d 698 private function fetchJobs()
e718bd18 699 {
1f8250e4 700 if ($this->jobs == null && !$this->fetched(self::FETCH_JOBS)) {
61ee68c7
FB
701 $jobs = $this->getProfileField(self::FETCH_JOBS);
702 if ($jobs) {
703 $this->setJobs($jobs);
dbcc3b3d 704 $this->fetchAddresses();
61ee68c7 705 }
e718bd18 706 }
dbcc3b3d
RB
707 }
708
709 public function getJobs($flags, $limit = null)
710 {
711 $this->fetchJobs();
949fc736 712
0907501b 713 if ($this->jobs == null) {
598c57f6 714 return array();
0907501b 715 }
949fc736 716 return $this->jobs->get($flags, $limit);
e718bd18
FB
717 }
718
44ec5eb5 719 public function getMainJob()
e718bd18
FB
720 {
721 $job = $this->getJobs(self::JOBS_MAIN, 1);
598c57f6 722 if (count($job) != 1) {
e718bd18
FB
723 return null;
724 }
598c57f6 725 return array_pop($job);
e718bd18
FB
726 }
727
3ac45f10
PC
728 /** JobTerms
729 */
730 private $jobterms = null;
731 public function setJobTerms(ProfileJobTerms $jobterms)
732 {
733 $this->jobterms = $jobterms;
734 $this->consolidateFields();
735 }
736
4d1f0f6b
RB
737 private $mentor_countries = null;
738 public function setMentoringCountries(ProfileMentoringCountries $countries)
739 {
740 $this->mentor_countries = $countries;
741 }
742
743 public function getMentoringCountries()
744 {
745 if ($this->mentor_countries == null && !$this->fetched(self::FETCH_MENTOR_COUNTRY)) {
746 $this->setMentoringCountries($this->getProfileField(self::FETCH_MENTOR_COUNTRY));
747 }
748
749 if ($this->mentor_countries == null) {
750 return array();
751 } else {
752 return $this->mentor_countries->countries;
753 }
754 }
755
3ac45f10
PC
756 /** List of job terms to specify mentoring */
757 private $mentor_terms = null;
758 /**
759 * set job terms to specify mentoring
760 * @param $terms a ProfileMentoringTerms object listing terms only for this profile
761 */
762 public function setMentoringTerms(ProfileMentoringTerms $terms)
763 {
764 $this->mentor_terms = $terms;
765 }
766 /**
767 * get all job terms that specify mentoring
768 * @return an array of JobTerms objects
769 */
770 public function getMentoringTerms()
771 {
772 if ($this->mentor_terms == null && !$this->fetched(self::FETCH_MENTOR_TERMS)) {
773 $this->setMentoringTerms($this->getProfileField(self::FETCH_MENTOR_TERMS));
774 }
775
776 if ($this->mentor_terms == null) {
777 return array();
778 } else {
779 return $this->mentor_terms->get();
780 }
781 }
782
783
5c005b37
RB
784 /* Binets
785 */
786 public function getBinets()
787 {
875a88d3
RB
788 if ($this->visibility->isVisible(ProfileVisibility::VIS_PRIVATE)) {
789 return XDB::fetchColumn('SELECT binet_id
790 FROM profile_binets
791 WHERE pid = {?}', $this->id());
792 } else {
793 return array();
794 }
5c005b37 795 }
97b71de5
RB
796 public function getBinetsNames()
797 {
875a88d3
RB
798 if ($this->visibility->isVisible(ProfileVisibility::VIS_PRIVATE)) {
799 return XDB::fetchColumn('SELECT text
800 FROM profile_binets AS pb
801 LEFT JOIN profile_binet_enum AS pbe ON (pbe.id = pb.binet_id)
802 WHERE pb.pid = {?}', $this->id());
803 } else {
804 return array();
805 }
97b71de5 806 }
5c005b37 807
26ca919b
RB
808 /* Medals
809 */
810 private $medals = null;
811 public function setMedals(ProfileMedals $medals)
812 {
813 $this->medals = $medals;
814 }
815
816 public function getMedals()
817 {
1f8250e4
RB
818 if ($this->medals == null && !$this->fetched(self::FETCH_MEDALS)) {
819 $this->setMedals($this->getProfileField(self::FETCH_MEDALS));
26ca919b
RB
820 }
821 if ($this->medals == null) {
822 return array();
823 }
824 return $this->medals->medals;
825 }
e718bd18 826
94590511
SJ
827 public function compareNames($firstname, $lastname)
828 {
829 $_lastname = mb_strtoupper($this->lastName());
830 $_firstname = mb_strtoupper($this->firstName());
831 $lastname = mb_strtoupper($lastname);
832 $firstname = mb_strtoupper($firstname);
833
834 $isOk = (mb_strtoupper($_firstname) == mb_strtoupper($firstname));
835 $tokens = preg_split("/[ \-']/", $lastname, -1, PREG_SPLIT_NO_EMPTY);
836 $maxlen = 0;
837
838 foreach ($tokens as $str) {
839 $isOk &= (strpos($_lastname, $str) !== false);
840 $maxlen = max($maxlen, strlen($str));
841 }
842
843 return ($isOk && ($maxlen > 2 || $maxlen == strlen($_lastname)));
844 }
845
aaffb7b2
FB
846 /* Export to JSON
847 */
848 public function export()
849 {
850 return array(
851 'hrpid' => $this->hrid(),
852 'display_name' => $this->shortName(),
853 'full_name' => $this->fullName(),
854 'directory_name' => $this->directory_name,
855 'promo' => $this->promo(),
856 'year_promo' => $this->yearpromo(),
857 'is_active' => $this->isActive(),
858 'first_name' => $this->firstName(),
859 'last_name' => $this->lastName(),
860 'is_female' => $this->isFemale(),
861 );
862 }
863
9f21bd15 864 private static function fetchProfileData(array $pids, $respect_order = true, $fields = 0x0000, $visibility = null)
b774ddab
FB
865 {
866 if (count($pids) == 0) {
7a8da8e8 867 return null;
b774ddab 868 }
0d906109
RB
869
870 if ($respect_order) {
871 $order = 'ORDER BY ' . XDB::formatCustomOrder('p.pid', $pids);
872 } else {
873 $order = '';
874 }
875
1a9affb7 876 $visibility = new ProfileVisibility($visibility);
9f21bd15 877
3e2442cd
RB
878 $it = XDB::Iterator('SELECT p.pid, p.hrpid, p.xorg_id, p.ax_id, p.birthdate, p.birthdate_ref,
879 p.next_birthday, p.deathdate, p.deathdate_rec, p.sex = \'female\' AS sex,
77d2ae52
RB
880 IF ({?}, p.cv, NULL) AS cv, p.medals_pub, p.alias_pub, p.email_directory,
881 p.last_change, p.nationality1, p.nationality2, p.nationality3,
3e2442cd
RB
882 IF (p.freetext_pub IN {?}, p.freetext, NULL) AS freetext,
883 pe.entry_year, pe.grad_year,
348b3844
RB
884 IF ({?}, pse.text, NULL) AS section,
885 pn_f.name AS firstname, pn_l.name AS lastname,
886 IF( {?}, pn_n.name, NULL) AS nickname,
9f21bd15
RB
887 IF(pn_uf.name IS NULL, pn_f.name, pn_uf.name) AS firstname_ordinary,
888 IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_ordinary,
09e54905
SJ
889 pd.yourself, pd.promo, pd.short_name, pd.public_name AS full_name,
890 pd.directory_name, pd.public_name, pd.private_name,
891 IF(pp.pub IN {?}, pp.display_tel, NULL) AS mobile,
1a9affb7 892 (ph.pub IN {?} AND ph.attach IS NOT NULL) AS has_photo,
7988f7d6 893 ph.x AS photo_width, ph.y AS photo_height,
9f21bd15 894 p.last_change < DATE_SUB(NOW(), INTERVAL 365 DAY) AS is_old,
bdef0d33 895 pm.expertise AS mentor_expertise,
9f21bd15
RB
896 ap.uid AS owner_id
897 FROM profiles AS p
898 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
899 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
97b71de5 900 LEFT JOIN profile_section_enum AS pse ON (pse.id = p.section)
9f21bd15
RB
901 INNER JOIN profile_name AS pn_f ON (pn_f.pid = p.pid
902 AND pn_f.typeid = ' . self::getNameTypeId('firstname', true) . ')
903 INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid
904 AND pn_l.typeid = ' . self::getNameTypeId('lastname', true) . ')
905 LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid
906 AND pn_uf.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ')
907 LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid
908 AND pn_ul.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ')
909 LEFT JOIN profile_name AS pn_n ON (pn_n.pid = p.pid
910 AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ')
911 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\')
912 LEFT JOIN profile_photos AS ph ON (ph.pid = p.pid)
bdef0d33 913 LEFT JOIN profile_mentor AS pm ON (pm.pid = p.pid)
9f21bd15 914 LEFT JOIN account_profiles AS ap ON (ap.pid = p.pid AND FIND_IN_SET(\'owner\', ap.perms))
3e2442cd 915 WHERE p.pid IN {?}
9f21bd15 916 GROUP BY p.pid
3e2442cd 917 ' . $order,
77d2ae52
RB
918 $visibility->isVisible(ProfileVisibility::VIS_PRIVATE), // CV
919 $visibility->levels(), // freetext
920 $visibility->isVisible(ProfileVisibility::VIS_PRIVATE), // section
921 $visibility->isVisible(ProfileVisibility::VIS_PRIVATE), // nickname
922 $visibility->levels(), // mobile
923 $visibility->levels(), // photo
3e2442cd
RB
924 $pids
925 );
31ef12ef 926 return new ProfileIterator($it, $pids, $fields, $visibility);
b774ddab
FB
927 }
928
929 public static function getPID($login)
930 {
931 if ($login instanceof PlUser) {
932 return XDB::fetchOneCell('SELECT pid
933 FROM account_profiles
934 WHERE uid = {?} AND FIND_IN_SET(\'owner\', perms)',
935 $login->id());
9f21bd15 936 } else if (ctype_digit($login)) {
b774ddab
FB
937 return XDB::fetchOneCell('SELECT pid
938 FROM profiles
939 WHERE pid = {?}', $login);
940 } else {
941 return XDB::fetchOneCell('SELECT pid
942 FROM profiles
943 WHERE hrpid = {?}', $login);
944 }
945 }
946
0d906109
RB
947 public static function getPIDsFromUIDs($uids, $respect_order = true)
948 {
949 if ($respect_order) {
950 $order = 'ORDER BY ' . XDB::formatCustomOrder('uid', $uids);
951 } else {
952 $order = '';
953 }
954 return XDB::fetchAllAssoc('uid', 'SELECT ap.uid, ap.pid
955 FROM account_profiles AS ap
956 WHERE FIND_IN_SET(\'owner\', ap.perms)
9f21bd15
RB
957 AND ap.uid IN ' . XDB::formatArray($uids) .'
958 ' . $order);
0d906109 959 }
b774ddab 960
e7b93962
FB
961 /** Return the profile associated with the given login.
962 */
9f21bd15 963 public static function get($login, $fields = 0x0000, $visibility = null)
a3118782 964 {
641f2115 965 if (is_array($login)) {
1a9affb7
RB
966 $pf = new Profile($login);
967 $pf->setVisibilityLevel($visibility);
968 return $pf;
641f2115 969 }
b774ddab
FB
970 $pid = self::getPID($login);
971 if (!is_null($pid)) {
9f21bd15 972 $it = self::iterOverPIDs(array($pid), false, $fields, $visibility);
0d906109 973 return $it->next();
b774ddab 974 } else {
efe597c5
FB
975 /* Let say we can identify a profile using the identifiers of its owner.
976 */
455ea0c9
FB
977 if (!($login instanceof PlUser)) {
978 $user = User::getSilent($login);
979 if ($user && $user->hasProfile()) {
980 return $user->profile();
981 }
efe597c5 982 }
3e53a496 983 return null;
e7b93962
FB
984 }
985 }
a3118782 986
9f21bd15 987 public static function iterOverUIDs($uids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 988 {
9f21bd15 989 return self::iterOverPIDs(self::getPIDsFromUIDs($uids), $respect_order, $fields, $visibility);
0d906109
RB
990 }
991
9f21bd15 992 public static function iterOverPIDs($pids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 993 {
9f21bd15 994 return self::fetchProfileData($pids, $respect_order, $fields, $visibility);
0d906109
RB
995 }
996
b774ddab
FB
997 /** Return profiles for the list of pids.
998 */
1a9affb7 999 public static function getBulkProfilesWithPIDs(array $pids, $fields = 0x0000, $visibility = null)
b774ddab
FB
1000 {
1001 if (count($pids) == 0) {
1002 return array();
1003 }
9f21bd15 1004 $it = self::iterOverPIDs($pids, true, $fields, $visibility);
b774ddab 1005 $profiles = array();
0d906109
RB
1006 while ($p = $it->next()) {
1007 $profiles[$p->id()] = $p;
b774ddab
FB
1008 }
1009 return $profiles;
1010 }
1011
1012 /** Return profiles for uids.
1013 */
9f21bd15 1014 public static function getBulkProfilesWithUIDS(array $uids, $fields = 0x000, $visibility = null)
b774ddab
FB
1015 {
1016 if (count($uids) == 0) {
1017 return array();
1018 }
9f21bd15 1019 return self::getBulkProfilesWithPIDs(self::getPIDsFromUIDs($uids), $fields, $visibility);
b774ddab
FB
1020 }
1021
913a4e90
RB
1022 public static function isDisplayName($name)
1023 {
1024 return $name == self::DN_FULL || $name == self::DN_DISPLAY
1025 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
1026 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
1027 || $name == self::DN_SHORT || $name == self::DN_SORT;
1028 }
1029
a9ef52c9
RB
1030 /** Returns the closest "accounts only" name type for $name
1031 */
1032 public static function getAccountEquivalentName($name)
1033 {
1034 switch ($name)
1035 {
1036 case self::DN_DIRECTORY:
1037 case self::DN_SORT:
1038 return 'directory_name';
1039 case self::DN_FULL:
1040 case self::DN_PUBLIC:
1041 return 'full_name';
1042 case self::DN_PRIVATE:
1043 case self::DN_SHORT:
1044 case self::DN_YOURSELF:
1045 default:
1046 return 'display_name';
1047 }
1048 }
1049
9f21bd15
RB
1050 public static function getNameTypeId($type, $for_sql = false)
1051 {
1052 if (!S::has('name_types')) {
1053 $table = XDB::fetchAllAssoc('type', 'SELECT id, type
1054 FROM profile_name_enum');
1055 S::set('name_types', $table);
1056 } else {
1057 $table = S::v('name_types');
1058 }
1059 if ($for_sql) {
1060 return XDB::escape($table[$type]);
1061 } else {
1062 return $table[$type];
1063 }
1064 }
1065
bedc4295 1066 public static function rebuildSearchTokens($pids, $transaction = true)
726eaf7a 1067 {
5acd53a9
FB
1068 if (!is_array($pids)) {
1069 $pids = array($pids);
1070 }
80bc45c2
FB
1071 $keys = XDB::iterator("(SELECT n.pid AS pid, n.name AS name, e.score AS score,
1072 IF(FIND_IN_SET('public', e.flags), 'public', '') AS public
1073 FROM profile_name AS n
1074 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
1075 WHERE n.pid IN {?} AND NOT FIND_IN_SET('not_displayed', e.flags))
1076 UNION
1077 (SELECT n.pid AS pid, n.particle AS name, 0 AS score,
1078 IF(FIND_IN_SET('public', e.flags), 'public', '') AS public
1079 FROM profile_name AS n
1080 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
1081 WHERE n.pid IN {?} AND NOT FIND_IN_SET('not_displayed', e.flags))
1082 ",
1083 $pids, $pids);
5acd53a9 1084 $names = array();
2f62eba7 1085 while ($key = $keys->next()) {
726eaf7a
SJ
1086 if ($key['name'] == '') {
1087 continue;
1088 }
5acd53a9 1089 $pid = $key['pid'];
80bc45c2
FB
1090 $toks = preg_split('/[ \'\-]+/', strtolower(replace_accent($key['name'])),
1091 -1, PREG_SPLIT_NO_EMPTY);
1092 $toks = array_reverse($toks);
1093
1094 /* Split the score between the tokens to avoid the user to be over-rated.
1095 * Let says my user name is "Machin-Truc Bidule" and I also have a user named
1096 * 'Machin Truc'. Distributing the score force "Machin Truc" to be displayed
1097 * before "Machin-Truc" for both "Machin Truc" and "Machin" searches.
1098 */
1099 $eltScore = ceil(((float)$key['score'])/((float)count($toks)));
726eaf7a 1100 $token = '';
80bc45c2
FB
1101 foreach ($toks as $tok) {
1102 $token = $tok . $token;
5acd53a9
FB
1103 $names["$pid-$token"] = XDB::format('({?}, {?}, {?}, {?}, {?})',
1104 $token, $pid, soundex_fr($token),
80bc45c2 1105 $eltScore, $key['public']);
726eaf7a
SJ
1106 }
1107 }
bedc4295
FB
1108 if ($transaction) {
1109 XDB::startTransaction();
1110 }
5acd53a9
FB
1111 XDB::execute('DELETE FROM search_name
1112 WHERE pid IN {?}',
1113 $pids);
1114 if (count($names) > 0) {
80bc45c2
FB
1115 XDB::rawExecute('INSERT INTO search_name (token, pid, soundex, score, flags)
1116 VALUES ' . implode(', ', $names));
5acd53a9 1117 }
bedc4295
FB
1118 if ($transaction) {
1119 XDB::commit();
1120 }
69b46857
SJ
1121 }
1122
1123 /** The school identifier consists of 6 digits. The first 3 represent the
1124 * promotion entry year. The last 3 indicate the student's rank.
aab2ffdd 1125 *
69b46857
SJ
1126 * Our identifier consists of 8 digits and both half have the same role.
1127 * This enables us to deal with bigger promotions and with a wider range
1128 * of promotions.
1129 *
1130 * getSchoolId returns a school identifier given one of ours.
1131 * getXorgId returns a X.org identifier given a school identifier.
1132 */
1133 public static function getSchoolId($xorgId)
1134 {
1135 if (!preg_match('/^[0-9]{8}$/', $xorgId)) {
1136 return null;
1137 }
1138
1139 $year = intval(substr($xorgId, 0, 4));
1140 $rank = intval(substr($xorgId, 5, 3));
1141 if ($year < 1996) {
1142 return null;
1143 } elseif ($year < 2000) {
1144 $year = intval(substr(1900 - $year, 1, 3));
1145 return sprintf('%02u0%03u', $year, $rank);
1146 } else {
1147 $year = intval(substr(1900 - $year, 1, 3));
1148 return sprintf('%03u%03u', $year, $rank);
1149 }
1150 }
726eaf7a 1151
69b46857
SJ
1152 public static function getXorgId($schoolId)
1153 {
94590511 1154 if (!preg_match('/^[0-9]{6}$/', $schoolId)) {
a292484d
SJ
1155 return null;
1156 }
1157
69b46857
SJ
1158 $year = intval(substr($schoolId, 0, 3));
1159 $rank = intval(substr($schoolId, 3, 3));
726eaf7a 1160
69b46857
SJ
1161 if ($year > 200) {
1162 $year /= 10;
1163 }
1164 if ($year < 96) {
1165 return null;
1166 } else {
1167 return sprintf('%04u%04u', 1900 + $year, $rank);
1168 }
726eaf7a 1169 }
e7b93962
FB
1170}
1171
31ef12ef
RB
1172
1173/** Iterator over a set of Profiles
1174 */
1175class ProfileIterator implements PlIterator
9f21bd15
RB
1176{
1177 private $iterator = null;
1178 private $fields;
1a9affb7 1179 private $visibility;
9f21bd15 1180
3ac45f10
PC
1181 const FETCH_ALL = 0x000033F; // FETCH_ADDRESSES | FETCH_CORPS | FETCH_EDU | FETCH_JOBS | FETCH_MEDALS | FETCH_NETWORKING | FETCH_PHONES | FETCH_JOB_TERMS
1182
1a9affb7 1183 public function __construct(PlIterator $it, array $pids, $fields = 0x0000, ProfileVisibility $visibility = null)
9f21bd15
RB
1184 {
1185 require_once 'profilefields.inc.php';
1a9affb7
RB
1186
1187 if ($visibility == null) {
1188 $visibility = new ProfileVisibility();
1189 }
1190
9f21bd15 1191 $this->fields = $fields;
1a9affb7 1192 $this->visibility = $visibility;
9f21bd15
RB
1193
1194 $subits = array();
1195 $callbacks = array();
1196
1197 $subits[0] = $it;
1198 $callbacks[0] = PlIteratorUtils::arrayValueCallback('pid');
1199 $cb = PlIteratorUtils::objectPropertyCallback('pid');
1200
3ac45f10
PC
1201 $fields = $fields & self::FETCH_ALL;
1202 for ($field = 1; $field < $fields; $field *= 2) {
1203 if (($fields & $field) ) {
1204 $callbacks[$field] = $cb;
1205 $subits[$field] = new ProfileFieldIterator($field, $pids, $visibility);
1206 }
9f21bd15
RB
1207 }
1208
9f21bd15
RB
1209 $this->iterator = PlIteratorUtils::parallelIterator($subits, $callbacks, 0);
1210 }
1211
1f8250e4 1212 private function hasData($field, $vals)
9f21bd15 1213 {
1f8250e4 1214 return ($this->fields & $field) && ($vals[$field] != null);
9f21bd15
RB
1215 }
1216
1217 private function fillProfile(array $vals)
1218 {
9f21bd15 1219 $pf = Profile::get($vals[0]);
1a9affb7 1220 $pf->setVisibilityLevel($this->visibility->level());
1f8250e4 1221 $pf->setFetchedFields($this->fields);
1a9affb7 1222
8cf886dc
RB
1223 if ($this->hasData(Profile::FETCH_PHONES, $vals)) {
1224 $pf->setPhones($vals[Profile::FETCH_PHONES]);
9f21bd15 1225 }
8cf886dc
RB
1226 if ($this->hasData(Profile::FETCH_ADDRESSES, $vals)) {
1227 $pf->setAddresses($vals[Profile::FETCH_ADDRESSES]);
1228 }
1229 if ($this->hasData(Profile::FETCH_JOBS, $vals)) {
1230 $pf->setJobs($vals[Profile::FETCH_JOBS]);
1231 }
3ac45f10
PC
1232 if ($this->hasData(Profile::FETCH_JOB_TERMS, $vals)) {
1233 $pf->setJobTerms($vals[Profile::FETCH_JOB_TERMS]);
1234 }
8cf886dc
RB
1235
1236 if ($this->hasData(Profile::FETCH_CORPS, $vals)) {
9f21bd15
RB
1237 $pf->setCorps($vals[Profile::FETCH_CORPS]);
1238 }
8cf886dc 1239 if ($this->hasData(Profile::FETCH_EDU, $vals)) {
26ca919b 1240 $pf->setEducations($vals[Profile::FETCH_EDU]);
9f21bd15 1241 }
8cf886dc 1242 if ($this->hasData(Profile::FETCH_MEDALS, $vals)) {
9f21bd15
RB
1243 $pf->setMedals($vals[Profile::FETCH_MEDALS]);
1244 }
8cf886dc 1245 if ($this->hasData(Profile::FETCH_NETWORKING, $vals)) {
9f21bd15
RB
1246 $pf->setNetworking($vals[Profile::FETCH_NETWORKING]);
1247 }
9f21bd15
RB
1248
1249 return $pf;
1250 }
1251
1252 public function next()
1253 {
1254 $vals = $this->iterator->next();
1255 if ($vals == null) {
1256 return null;
1257 }
1258 return $this->fillProfile($vals);
1259 }
1260
1261 public function first()
1262 {
1263 return $this->iterator->first();
1264 }
1265
1266 public function last()
1267 {
1268 return $this->iterator->last();
1269 }
1270
1271 public function total()
1272 {
1273 return $this->iterator->total();
1274 }
1275}
1276
e7b93962
FB
1277// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1278?>