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