Cleanup profile consolidation code
[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
990cb17b
RB
308 private function getProfileField($cls)
309 {
310 return ProfileField::getForPID($cls, $this->id(), $this->visibility);
311 }
312
8cf886dc
RB
313 /** Consolidates internal data (addresses, phones, jobs)
314 */
315 private function consolidateFields()
316 {
317 if ($this->phones != null) {
318 if ($this->addresses != null) {
319 $this->addresses->addPhones($this->phones);
320 }
321
322 if ($this->jobs != null) {
323 $this->jobs->addPhones($this->phones);
324 }
325 }
326
327 if ($this->addresses != null && $this->jobs != null) {
328 $this->jobs->addAddresses($this->addresses);
329 }
330 }
331
833a6e86
FB
332 /* Photo
333 */
9f21bd15
RB
334 private $photo = null;
335 public function setPhoto(ProfilePhoto $photo)
336 {
337 $this->photo = $photo;
338 }
339
833a6e86
FB
340 public function getPhoto($fallback = true)
341 {
990cb17b
RB
342 if ($this->photo == null) {
343 $this->setPhoto($this->getProfileField('ProfilePhoto'));
344 }
345
9f21bd15
RB
346 if ($this->photo != null) {
347 return $this->photo->pic;
348 } else if ($fallback) {
349 return PlImage::fromFile(dirname(__FILE__).'/../htdocs/images/none.png',
350 'image/png');
351 }
352 return null;
353 }
7d0ebdf5 354
4bc5b8f0
FB
355 /* Addresses
356 */
7d0ebdf5
RB
357 private $addresses = null;
358 public function setAddresses(ProfileAddresses $addr)
359 {
360 $this->addresses = $addr;
8cf886dc 361 $this->consolidateFields();
7d0ebdf5
RB
362 }
363
4bc5b8f0 364 public function getAddresses($flags, $limit = null)
f5642983 365 {
7d0ebdf5 366 if ($this->addresses == null) {
990cb17b 367 $this->setAddresses($this->getProfileField('ProfileAddresses'));
f5642983 368 }
990cb17b 369 return $this->addresses->get($flags, $limit);
f5642983
FB
370 }
371
372 public function getMainAddress()
373 {
374 $it = $this->getAddresses(self::ADDRESS_PERSO | self::ADDRESS_MAIN);
375 if ($it->total() == 0) {
376 return null;
377 } else {
378 return $it->next();
379 }
380 }
3e53a496 381
4bc5b8f0
FB
382
383 /* Educations
384 */
d4d395bb 385 private $educations = null;
a060e1c3
RB
386 public function setEducations(ProfileEducation $edu)
387 {
388 $this->educations = $edu;
389 }
390
4bc5b8f0
FB
391 public function getEducations($flags, $limit = null)
392 {
d4d395bb 393 if ($this->educations == null) {
990cb17b 394 $this->setEducations($this->getProfileField('ProfileEducation'));
d4d395bb 395 }
a060e1c3 396 return $this->educations->get($flags, $limit);
4bc5b8f0
FB
397 }
398
399 public function getExtraEducations($limit = null)
400 {
401 return $this->getEducations(self::EDUCATION_EXTRA, $limit);
402 }
403
404
04a94b1d
FB
405 /** Networking
406 */
d4d395bb
RB
407 private $networks = null;
408 public function setNetworking(ProfileNetworking $nw)
409 {
410 $this->networks = $nw;
411 }
04a94b1d
FB
412
413 public function getNetworking($flags, $limit = null)
414 {
d4d395bb 415 if ($this->networks == null) {
990cb17b 416 $this->setNetworking($this->getProfileField('ProfileNetworking'));
04a94b1d 417 }
d4d395bb 418 return $this->networks->get($flags, $limit);
04a94b1d
FB
419 }
420
421 public function getWebSite()
422 {
423 $site = $this->getNetworking(self::NETWORKING_WEB, 1);
424 if ($site->total() != 1) {
425 return null;
426 }
427 $site = $site->next();
428 return $site['address'];
429 }
430
431
e718bd18
FB
432 /** Jobs
433 */
434
435 public function getJobs($flags, $limit = null)
436 {
ce0b2c6f 437 $where = XDB::format('pj.pid = {?}', $this->id());
e718bd18
FB
438 $cond = 'TRUE';
439 if ($this->visibility) {
9f21bd15
RB
440 $where .= ' AND pj.pub IN ' . XDB::formatArray($this->visibility);
441 $cond = 'pj.email_pub IN ' . XDB::formatArray($this->visibility);
e718bd18
FB
442 }
443 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
444 return XDB::iterator('SELECT pje.name, pje.acronym, pje.url, pje.email, pje.NAF_code,
445 pj.description, pj.url AS user_site,
446 IF (' . $cond . ', pj.email, NULL) AS user_email,
83ff5281
SJ
447 pjse.name AS sector, pjsse.name AS subsector,
448 pjssse.name AS subsubsector
e718bd18
FB
449 FROM profile_job AS pj
450 INNER JOIN profile_job_enum AS pje ON (pje.id = pj.jobid)
e718bd18
FB
451 LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pj.sectorid)
452 LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pj.subsectorid)
453 LEFT JOIN profile_job_subsubsector_enum AS pjssse ON (pjssse.id = pj.subsubsectorid)
454 WHERE ' . $where . '
455 ORDER BY pj.id
456 ' . $limit);
457 }
458
459 public function getMailJob()
460 {
461 $job = $this->getJobs(self::JOBS_MAIN, 1);
462 if ($job->total() != 1) {
463 return null;
464 }
465 return $job->next();
466 }
467
5c005b37
RB
468 /* Binets
469 */
470 public function getBinets()
471 {
472 return XDB::fetchColumn('SELECT binet_id
5c8a71f2 473 FROM profile_binets
bdd977d7 474 WHERE pid = {?}', $this->id());
5c005b37
RB
475 }
476
e718bd18 477
e7b93962
FB
478 public function owner()
479 {
480 return User::getSilent($this);
481 }
482
94590511
SJ
483 public function compareNames($firstname, $lastname)
484 {
485 $_lastname = mb_strtoupper($this->lastName());
486 $_firstname = mb_strtoupper($this->firstName());
487 $lastname = mb_strtoupper($lastname);
488 $firstname = mb_strtoupper($firstname);
489
490 $isOk = (mb_strtoupper($_firstname) == mb_strtoupper($firstname));
491 $tokens = preg_split("/[ \-']/", $lastname, -1, PREG_SPLIT_NO_EMPTY);
492 $maxlen = 0;
493
494 foreach ($tokens as $str) {
495 $isOk &= (strpos($_lastname, $str) !== false);
496 $maxlen = max($maxlen, strlen($str));
497 }
498
499 return ($isOk && ($maxlen > 2 || $maxlen == strlen($_lastname)));
500 }
501
9f21bd15 502 private static function fetchProfileData(array $pids, $respect_order = true, $fields = 0x0000, $visibility = null)
b774ddab
FB
503 {
504 if (count($pids) == 0) {
505 return array();
506 }
0d906109
RB
507
508 if ($respect_order) {
509 $order = 'ORDER BY ' . XDB::formatCustomOrder('p.pid', $pids);
510 } else {
511 $order = '';
512 }
513
9f21bd15
RB
514
515 $it = XDB::Iterator('SELECT p.*, p.sex = \'female\' AS sex, pe.entry_year, pe.grad_year,
516 pn_f.name AS firstname, pn_l.name AS lastname, pn_n.name AS nickname,
517 IF(pn_uf.name IS NULL, pn_f.name, pn_uf.name) AS firstname_ordinary,
518 IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_ordinary,
519 pd.promo AS promo, pd.short_name, pd.directory_name AS full_name,
520 pd.directory_name, pp.display_tel AS mobile, pp.pub AS mobile_pub,
521 ph.attach IS NOT NULL AS has_photo, ph.pub AS photo_pub,
522 p.last_change < DATE_SUB(NOW(), INTERVAL 365 DAY) AS is_old,
523 ap.uid AS owner_id
524 FROM profiles AS p
525 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
526 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
527 INNER JOIN profile_name AS pn_f ON (pn_f.pid = p.pid
528 AND pn_f.typeid = ' . self::getNameTypeId('firstname', true) . ')
529 INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid
530 AND pn_l.typeid = ' . self::getNameTypeId('lastname', true) . ')
531 LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid
532 AND pn_uf.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ')
533 LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid
534 AND pn_ul.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ')
535 LEFT JOIN profile_name AS pn_n ON (pn_n.pid = p.pid
536 AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ')
537 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\')
538 LEFT JOIN profile_photos AS ph ON (ph.pid = p.pid)
539 LEFT JOIN account_profiles AS ap ON (ap.pid = p.pid AND FIND_IN_SET(\'owner\', ap.perms))
540 WHERE p.pid IN ' . XDB::formatArray($pids) . '
541 GROUP BY p.pid
542 ' . $order);
31ef12ef 543 return new ProfileIterator($it, $pids, $fields, $visibility);
b774ddab
FB
544 }
545
546 public static function getPID($login)
547 {
548 if ($login instanceof PlUser) {
549 return XDB::fetchOneCell('SELECT pid
550 FROM account_profiles
551 WHERE uid = {?} AND FIND_IN_SET(\'owner\', perms)',
552 $login->id());
9f21bd15 553 } else if (ctype_digit($login)) {
b774ddab
FB
554 return XDB::fetchOneCell('SELECT pid
555 FROM profiles
556 WHERE pid = {?}', $login);
557 } else {
558 return XDB::fetchOneCell('SELECT pid
559 FROM profiles
560 WHERE hrpid = {?}', $login);
561 }
562 }
563
0d906109
RB
564 public static function getPIDsFromUIDs($uids, $respect_order = true)
565 {
566 if ($respect_order) {
567 $order = 'ORDER BY ' . XDB::formatCustomOrder('uid', $uids);
568 } else {
569 $order = '';
570 }
571 return XDB::fetchAllAssoc('uid', 'SELECT ap.uid, ap.pid
572 FROM account_profiles AS ap
573 WHERE FIND_IN_SET(\'owner\', ap.perms)
9f21bd15
RB
574 AND ap.uid IN ' . XDB::formatArray($uids) .'
575 ' . $order);
0d906109 576 }
b774ddab 577
e7b93962
FB
578 /** Return the profile associated with the given login.
579 */
9f21bd15 580 public static function get($login, $fields = 0x0000, $visibility = null)
a3118782 581 {
641f2115
FB
582 if (is_array($login)) {
583 return new Profile($login);
584 }
b774ddab
FB
585 $pid = self::getPID($login);
586 if (!is_null($pid)) {
9f21bd15 587 $it = self::iterOverPIDs(array($pid), false, $fields, $visibility);
0d906109 588 return $it->next();
b774ddab 589 } else {
efe597c5
FB
590 /* Let say we can identify a profile using the identifiers of its owner.
591 */
455ea0c9
FB
592 if (!($login instanceof PlUser)) {
593 $user = User::getSilent($login);
594 if ($user && $user->hasProfile()) {
595 return $user->profile();
596 }
efe597c5 597 }
3e53a496 598 return null;
e7b93962
FB
599 }
600 }
a3118782 601
9f21bd15 602 public static function iterOverUIDs($uids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 603 {
9f21bd15 604 return self::iterOverPIDs(self::getPIDsFromUIDs($uids), $respect_order, $fields, $visibility);
0d906109
RB
605 }
606
9f21bd15 607 public static function iterOverPIDs($pids, $respect_order = true, $fields = 0x0000, $visibility = null)
0d906109 608 {
9f21bd15 609 return self::fetchProfileData($pids, $respect_order, $fields, $visibility);
0d906109
RB
610 }
611
b774ddab
FB
612 /** Return profiles for the list of pids.
613 */
7d0ebdf5 614 public static function getBulkProfilesWithPIDs(array $pids, $fields = self::FETCH_ADDRESSES, $visibility = null)
b774ddab
FB
615 {
616 if (count($pids) == 0) {
617 return array();
618 }
9f21bd15 619 $it = self::iterOverPIDs($pids, true, $fields, $visibility);
b774ddab 620 $profiles = array();
0d906109
RB
621 while ($p = $it->next()) {
622 $profiles[$p->id()] = $p;
b774ddab
FB
623 }
624 return $profiles;
625 }
626
627 /** Return profiles for uids.
628 */
9f21bd15 629 public static function getBulkProfilesWithUIDS(array $uids, $fields = 0x000, $visibility = null)
b774ddab
FB
630 {
631 if (count($uids) == 0) {
632 return array();
633 }
9f21bd15 634 return self::getBulkProfilesWithPIDs(self::getPIDsFromUIDs($uids), $fields, $visibility);
b774ddab
FB
635 }
636
913a4e90
RB
637 public static function isDisplayName($name)
638 {
639 return $name == self::DN_FULL || $name == self::DN_DISPLAY
640 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
641 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
642 || $name == self::DN_SHORT || $name == self::DN_SORT;
643 }
644
9f21bd15
RB
645 public static function getNameTypeId($type, $for_sql = false)
646 {
647 if (!S::has('name_types')) {
648 $table = XDB::fetchAllAssoc('type', 'SELECT id, type
649 FROM profile_name_enum');
650 S::set('name_types', $table);
651 } else {
652 $table = S::v('name_types');
653 }
654 if ($for_sql) {
655 return XDB::escape($table[$type]);
656 } else {
657 return $table[$type];
658 }
659 }
660
726eaf7a
SJ
661 public static function rebuildSearchTokens($pid)
662 {
663 XDB::execute('DELETE FROM search_name
6dbb167e 664 WHERE pid = {?}',
726eaf7a
SJ
665 $pid);
666 $keys = XDB::iterator("SELECT CONCAT(n.particle, n.name) AS name, e.score,
667 FIND_IN_SET('public', e.flags) AS public
668 FROM profile_name AS n
669 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
670 WHERE n.pid = {?}",
671 $pid);
672
673 foreach ($keys as $i => $key) {
674 if ($key['name'] == '') {
675 continue;
676 }
677 $toks = preg_split('/[ \'\-]+/', $key['name']);
678 $token = '';
679 $first = 5;
680 while ($toks) {
681 $token = strtolower(replace_accent(array_pop($toks) . $token));
682 $score = ($toks ? 0 : 10 + $first) * ($key['score'] / 10);
6dbb167e 683 XDB::execute('REPLACE INTO search_name (token, pid, soundex, score, flags)
726eaf7a 684 VALUES ({?}, {?}, {?}, {?}, {?})',
6dbb167e 685 $token, $pid, soundex_fr($token), $score, $key['public']);
726eaf7a
SJ
686 $first = 0;
687 }
688 }
69b46857
SJ
689 }
690
691 /** The school identifier consists of 6 digits. The first 3 represent the
692 * promotion entry year. The last 3 indicate the student's rank.
693 *
694 * Our identifier consists of 8 digits and both half have the same role.
695 * This enables us to deal with bigger promotions and with a wider range
696 * of promotions.
697 *
698 * getSchoolId returns a school identifier given one of ours.
699 * getXorgId returns a X.org identifier given a school identifier.
700 */
701 public static function getSchoolId($xorgId)
702 {
703 if (!preg_match('/^[0-9]{8}$/', $xorgId)) {
704 return null;
705 }
706
707 $year = intval(substr($xorgId, 0, 4));
708 $rank = intval(substr($xorgId, 5, 3));
709 if ($year < 1996) {
710 return null;
711 } elseif ($year < 2000) {
712 $year = intval(substr(1900 - $year, 1, 3));
713 return sprintf('%02u0%03u', $year, $rank);
714 } else {
715 $year = intval(substr(1900 - $year, 1, 3));
716 return sprintf('%03u%03u', $year, $rank);
717 }
718 }
726eaf7a 719
69b46857
SJ
720 public static function getXorgId($schoolId)
721 {
94590511 722 if (!preg_match('/^[0-9]{6}$/', $schoolId)) {
a292484d
SJ
723 return null;
724 }
725
69b46857
SJ
726 $year = intval(substr($schoolId, 0, 3));
727 $rank = intval(substr($schoolId, 3, 3));
726eaf7a 728
69b46857
SJ
729 if ($year > 200) {
730 $year /= 10;
731 }
732 if ($year < 96) {
733 return null;
734 } else {
735 return sprintf('%04u%04u', 1900 + $year, $rank);
736 }
726eaf7a 737 }
e7b93962
FB
738}
739
31ef12ef
RB
740
741/** Iterator over a set of Profiles
742 */
743class ProfileIterator implements PlIterator
9f21bd15
RB
744{
745 private $iterator = null;
746 private $fields;
747
748 public function __construct(PlIterator $it, array $pids, $fields = 0x0000, $visibility = null)
749 {
750 require_once 'profilefields.inc.php';
751 $visibility = Profile::getVisibilityContext($visibility);
752 $this->fields = $fields;
753
754 $subits = array();
755 $callbacks = array();
756
757 $subits[0] = $it;
758 $callbacks[0] = PlIteratorUtils::arrayValueCallback('pid');
759 $cb = PlIteratorUtils::objectPropertyCallback('pid');
760
761 if ($fields & Profile::FETCH_ADDRESSES) {
762 $callbacks[Profile::FETCH_ADDRESSES] = $cb;
763 $subits[Profile::FETCH_ADDRESSES] = new ProfileFieldIterator('ProfileAddresses', $pids, $visibility);
764 }
765
766 if ($fields & Profile::FETCH_CORPS) {
767 $callbacks[Profile::FETCH_CORPS] = $cb;
768 $subits[Profile::FETCH_CORPS] = new ProfileFieldIterator('ProfileCorps', $pids, $visibility);
769 }
770
771 if ($fields & Profile::FETCH_EDU) {
772 $callbacks[Profile::FETCH_EDU] = $cb;
773 $subits[Profile::FETCH_EDU] = new ProfileFieldIterator('ProfileEducation', $pids, $visibility);
774 }
775
776 if ($fields & Profile::FETCH_JOBS) {
777 $callbacks[Profile::FETCH_JOBS] = $cb;
778 $subits[Profile::FETCH_JOBS] = new ProfileFieldIterator('ProfileJobs', $pids, $visibility);
779 }
780
781 if ($fields & Profile::FETCH_MEDALS) {
782 $callbacks[Profile::FETCH_MEDALS] = $cb;
783 $subits[Profile::FETCH_MEDALS] = new ProfileFieldIterator('ProfileMedals', $pids, $visibility);
784 }
785
786 if ($fields & Profile::FETCH_NETWORKING) {
787 $callbacks[Profile::FETCH_NETWORKING] = $cb;
788 $subits[Profile::FETCH_NETWORKING] = new ProfileFieldIterator('ProfileNetworking', $pids, $visibility);
789 }
790
791 if ($fields & Profile::FETCH_PHONES) {
792 $callbacks[Profile::FETCH_PHONES] = $cb;
793 $subits[Profile::FETCH_PHONES] = new ProfileFieldIterator('ProfilePhones', $pids, $visibility);
794 }
795
796 if ($fields & Profile::FETCH_PHOTO) {
797 $callbacks[Profile::FETCH_PHOTO] = $cb;
798 $subits[Profile::FETCH_PHOTO] = new ProfileFieldIterator('ProfilePhoto', $pids, $visibility);
799 }
800
801 $this->iterator = PlIteratorUtils::parallelIterator($subits, $callbacks, 0);
802 }
803
8cf886dc 804 private function hasData($flag, $vals)
9f21bd15 805 {
8cf886dc 806 return ($this->fields & $flag) && ($vals[$flag] != null);
9f21bd15
RB
807 }
808
809 private function fillProfile(array $vals)
810 {
9f21bd15 811 $pf = Profile::get($vals[0]);
8cf886dc
RB
812 if ($this->hasData(Profile::FETCH_PHONES, $vals)) {
813 $pf->setPhones($vals[Profile::FETCH_PHONES]);
9f21bd15 814 }
8cf886dc
RB
815 if ($this->hasData(Profile::FETCH_ADDRESSES, $vals)) {
816 $pf->setAddresses($vals[Profile::FETCH_ADDRESSES]);
817 }
818 if ($this->hasData(Profile::FETCH_JOBS, $vals)) {
819 $pf->setJobs($vals[Profile::FETCH_JOBS]);
820 }
821
822 if ($this->hasData(Profile::FETCH_CORPS, $vals)) {
9f21bd15
RB
823 $pf->setCorps($vals[Profile::FETCH_CORPS]);
824 }
8cf886dc 825 if ($this->hasData(Profile::FETCH_EDU, $vals)) {
9f21bd15
RB
826 $pf->setEdu($vals[Profile::FETCH_EDU]);
827 }
8cf886dc 828 if ($this->hasData(Profile::FETCH_MEDALS, $vals)) {
9f21bd15
RB
829 $pf->setMedals($vals[Profile::FETCH_MEDALS]);
830 }
8cf886dc 831 if ($this->hasData(Profile::FETCH_NETWORKING, $vals)) {
9f21bd15
RB
832 $pf->setNetworking($vals[Profile::FETCH_NETWORKING]);
833 }
8cf886dc
RB
834 if ($this->hasData(Profile::FETCH_PHOTO, $vals)) {
835 $pf->setPhoto($vals[Profile::FETCH_PHOTO]);
9f21bd15
RB
836 }
837
838 return $pf;
839 }
840
841 public function next()
842 {
843 $vals = $this->iterator->next();
844 if ($vals == null) {
845 return null;
846 }
847 return $this->fillProfile($vals);
848 }
849
850 public function first()
851 {
852 return $this->iterator->first();
853 }
854
855 public function last()
856 {
857 return $this->iterator->last();
858 }
859
860 public function total()
861 {
862 return $this->iterator->total();
863 }
864}
865
e7b93962
FB
866// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
867?>