Moves userComparison to class User.
[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
e7b93962
FB
85 private $pid;
86 private $hrpid;
3e53a496
FB
87 private $data = array();
88
f5642983
FB
89 private $visibility = null;
90
b774ddab 91 private function __construct(array $data)
e7b93962 92 {
b774ddab 93 $this->data = $data;
832e6fcb
FB
94 $this->pid = $this->data['pid'];
95 $this->hrpid = $this->data['hrpid'];
f74fb084
FB
96 if (!S::logged()) {
97 $this->setVisibilityLevel(self::VISIBILITY_PUBLIC);
98 }
e7b93962
FB
99 }
100
101 public function id()
102 {
103 return $this->pid;
104 }
105
106 public function hrid()
107 {
108 return $this->hrpid;
109 }
110
d5e60905
FB
111 public function promo()
112 {
113 return $this->promo;
114 }
115
845f0a4d
SJ
116 public function yearpromo()
117 {
118 return intval(substr($this->promo, 1, 4));
119 }
120
94b72319
FB
121 /** Print a name with the given formatting:
122 * %s = • for women
123 * %f = firstname
124 * %l = lastname
125 * %F = fullname
126 * %S = shortname
127 * %p = promo
128 */
129 public function name($format)
130 {
131 return str_replace(array('%s', '%f', '%l', '%F', '%S', '%p'),
132 array($this->isFemale() ? '•' : '',
133 $this->first_name, $this->last_name,
134 $this->full_name, $this->short_name,
135 $this->promo), $format);
136 }
137
138 public function fullName($with_promo = false)
139 {
140 if ($with_promo) {
141 return $this->full_name . ' (' . $this->promo . ')';
142 }
143 return $this->full_name;
144 }
145
146 public function shortName($with_promo = false)
147 {
148 if ($with_promo) {
149 return $this->short_name . ' (' . $this->promo . ')';
150 }
151 return $this->short_name;
152 }
153
154 public function firstName()
155 {
08c91036 156 return $this->firstname;
94b72319
FB
157 }
158
5c005b37
RB
159 public function firstNames()
160 {
161 return $this->nameVariants(self::FIRSTNAME);
162 }
163
94b72319
FB
164 public function lastName()
165 {
08c91036 166 return $this->lastname;
94b72319
FB
167 }
168
5c005b37
RB
169 public function lastNames()
170 {
171 return $this->nameVariants(self::LASTNAME);
172 }
173
94b72319
FB
174 public function isFemale()
175 {
176 return $this->sex == PlUser::GENDER_FEMALE;
177 }
178
179 public function data()
180 {
181 $this->first_name;
182 return $this->data;
183 }
184
5c005b37
RB
185 private function nameVariants($type)
186 {
187 $vals = array($this->$type);
188 foreach (self::$name_variants[$type] as $var) {
189 $vartype = $type . '_' . $var;
190 $varname = $this->$vartype;
191 if ($varname != null && $varname != "") {
192 $vals[] = $varname;
193 }
194 }
195 return array_unique($vals);
196 }
197
3e53a496
FB
198 public function __get($name)
199 {
200 if (property_exists($this, $name)) {
201 return $this->$name;
202 }
203
3e53a496
FB
204 if (isset($this->data[$name])) {
205 return $this->data[$name];
206 }
207
208 return null;
209 }
210
211 public function __isset($name)
212 {
213 return property_exists($this, $name) || isset($this->data[$name]);
214 }
215
f5642983
FB
216 public function setVisibilityLevel($visibility)
217 {
0d906109
RB
218 if ($visibility != self::VISIBILITY_PRIVATE
219 && $visibility != self::VISIBILITY_AX
f5642983
FB
220 && $visibility != self::VISIBILITY_PUBLIC) {
221 Platal::page()->kill("Visibility invalide: " . $visibility);
222 }
223 $this->visibility = self::$v_values[$visibility];
5c005b37 224 if ($this->mobile && !in_array($this->mobile_pub, $this->visibility)) {
46e9eb99
FB
225 unset($this->data['mobile']);
226 }
f5642983
FB
227 }
228
4bc5b8f0 229
833a6e86
FB
230 /* Photo
231 */
232 public function getPhoto($fallback = true)
233 {
234 /* TODO: migrate photo table to profile_photo, change uid to pid
235 */
236 $cond = '';
237 if ($this->visibility) {
238 $cond = ' AND pub IN ' . XDB::formatArray($this->visibility);
239 }
240 $res = XDB::query('SELECT *
5c4ea53f 241 FROM profile_photos
833a6e86 242 WHERE attachmime IN (\'jpeg\', \'png\')
5c4ea53f 243 ' . $cond . ' AND pid = {?}',
833a6e86
FB
244 $this->id());
245 if ($res->numRows() > 0) {
246 $photo = $res->fetchOneAssoc();
247 return PlImage::fromData($photo['attach'], 'image/' . $photo['attachmime'],
248 $photo['x'], $photo['y']);
249 } else if ($fallback) {
250 return PlImage::fromFile(dirname(__FILE__).'/../htdocs/images/none.png',
251 'image/png');
252 }
253 return null;
254 }
255
4bc5b8f0
FB
256 /* Addresses
257 */
258 public function getAddresses($flags, $limit = null)
f5642983
FB
259 {
260 $where = XDB::format('pa.pid = {?}', $this->id());
261 if ($flags & self::ADDRESS_MAIN) {
262 $where .= ' AND FIND_IN_SET(\'current\', pa.flags)';
263 }
264 if ($flags & self::ADDRESS_POSTAL) {
265 $where .= ' AND FIND_IN_SET(\'mail\', pa.flags)';
266 }
267 if ($this->visibility) {
268 $where .= ' AND pa.pub IN ' . XDB::formatArray($this->visibility);
269 }
270 $type = array();
271 if ($flags & self::ADDRESS_PRO) {
272 $type[] = 'job';
273 }
274 if ($flags & self::ADDRESS_PERSO) {
275 $type[] = 'home';
276 }
277 if (count($type) > 0) {
278 $where .= ' AND pa.type IN ' . XDB::formatArray($type);
279 }
4bc5b8f0 280 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
f5642983
FB
281 return XDB::iterator('SELECT pa.text, pa.postalCode, pa.type, pa.latitude, pa.longitude,
282 gl.name AS locality, gas.name AS subAdministrativeArea,
283 ga.name AS administrativeArea, gc.countryFR AS country,
6b83ce06 284 ppfix.display_tel AS fixed_tel, ppfax.display_tel AS fax_tel,
f5642983
FB
285 FIND_IN_SET(\'current\', pa.flags) AS current,
286 FIND_IN_SET(\'temporary\', pa.flags) AS temporary,
287 FIND_IN_SET(\'secondary\', pa.flags) AS secondary,
288 FIND_IN_SET(\'mail\', pa.flags) AS mail, pa.type
289 FROM profile_addresses AS pa
290 LEFT JOIN geoloc_localities AS gl ON (gl.id = pa.localityId)
291 LEFT JOIN geoloc_administrativeareas AS ga ON (ga.id = pa.administrativeAreaId)
292 LEFT JOIN geoloc_administrativeareas AS gas ON (gas.id = pa.subAdministrativeAreaId)
293 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pa.countryId)
ce0b2c6f
FB
294 LEFT JOIN profile_phones AS ppfix ON (ppfix.link_type = \'address\' AND ppfix.pid = pa.pid AND ppfix.link_id = pa.id AND ppfix.tel_type = \'fixed\')
295 LEFT JOIN profile_phones AS ppfax ON (ppfax.link_type = \'address\' AND ppfax.pid = pa.pid AND ppfax.link_id = pa.id AND ppfax.tel_type = \'fax\')
4bc5b8f0
FB
296 WHERE ' . $where . '
297 ORDER BY pa.id
298 ' . $limit);
f5642983
FB
299 }
300
301 public function getMainAddress()
302 {
303 $it = $this->getAddresses(self::ADDRESS_PERSO | self::ADDRESS_MAIN);
304 if ($it->total() == 0) {
305 return null;
306 } else {
307 return $it->next();
308 }
309 }
3e53a496 310
4bc5b8f0
FB
311
312 /* Educations
313 */
314 public function getEducations($flags, $limit = null)
315 {
ce0b2c6f 316 $where = XDB::format('pe.pid = {?}', $this->id());
4bc5b8f0
FB
317 if ($flags & self::EDUCATION_MAIN) {
318 $where .= ' AND FIND_IN_SET(\'primary\', pe.flags)';
319 } else if ($flags & self::EDUCATION_EXTRA) {
320 $where .= ' AND NOT FIND_IN_SET(\'primary\', pe.flags)';
321 } else if ($flags & self::EDUCATION_FINISHED) {
322 $where .= ' AND pe.grad_year <= YEAR(CURDATE())';
323 } else if ($flags & self::EDUCATION_CURRENT) {
324 $where .= ' AND pe.grad_year > YEAR(CURDATE())';
325 }
326 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
327 return XDB::iterator('SELECT pe.entry_year, pe.grad_year, pe.program,
328 pee.name AS school, pee.abbreviation AS school_short, pee.url AS school_url, gc.countryFR AS country,
329 pede.degree, pede.abbreviation AS degree_short, pede.level AS degree_level, pefe.field,
330 FIND_IN_SET(\'primary\', pe.flags) AS prim
331 FROM profile_education AS pe
332 INNER JOIN profile_education_enum AS pee ON (pe.eduid = pee.id)
333 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pee.country)
334 INNER JOIN profile_education_degree_enum AS pede ON (pe.degreeid = pede.id)
335 LEFT JOIN profile_education_field_enum AS pefe ON (pe.fieldid = pefe.id)
336 WHERE ' . $where . '
337 ORDER BY NOT FIND_IN_SET(\'primary\', pe.flags), pe.entry_year, pe.id
338 ' . $limit);
339 }
340
341 public function getExtraEducations($limit = null)
342 {
343 return $this->getEducations(self::EDUCATION_EXTRA, $limit);
344 }
345
346
04a94b1d
FB
347 /** Networking
348 */
349
350 public function getNetworking($flags, $limit = null)
351 {
ce0b2c6f 352 $where = XDB::format('pn.pid = {?}', $this->id());
04a94b1d
FB
353 if ($flags & self::NETWORKING_WEB) {
354 $where .= ' AND pn.network_type = 0'; // XXX hardcoded reference to web site index
355 }
356 if ($this->visibility) {
357 $where .= ' AND pn.pub IN ' . XDB::formatArray($this->visibility);
358 }
359 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
360 return XDB::iterator('SELECT pne.name, pne.icon,
361 IF (LENGTH(pne.link) > 0, REPLACE(pne.link, \'%s\', pn.address),
362 pn.address) AS address
363 FROM profile_networking AS pn
364 INNER JOIN profile_networking_enum AS pne ON (pn.network_type = pne.network_type)
365 WHERE ' . $where . '
366 ORDER BY pn.network_type, pn.nwid
367 ' . $limit);
368 }
369
370 public function getWebSite()
371 {
372 $site = $this->getNetworking(self::NETWORKING_WEB, 1);
373 if ($site->total() != 1) {
374 return null;
375 }
376 $site = $site->next();
377 return $site['address'];
378 }
379
380
e718bd18
FB
381 /** Jobs
382 */
383
384 public function getJobs($flags, $limit = null)
385 {
ce0b2c6f 386 $where = XDB::format('pj.pid = {?}', $this->id());
e718bd18
FB
387 $cond = 'TRUE';
388 if ($this->visibility) {
389 $where .= ' AND pj.pub IN ' . XDB::formatArray($this->visibility);
390 $cond = 'pj.email_pub IN ' . XDB::formatArray($this->visibility);
391 }
392 $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit);
393 return XDB::iterator('SELECT pje.name, pje.acronym, pje.url, pje.email, pje.NAF_code,
394 pj.description, pj.url AS user_site,
395 IF (' . $cond . ', pj.email, NULL) AS user_email,
83ff5281
SJ
396 pjse.name AS sector, pjsse.name AS subsector,
397 pjssse.name AS subsubsector
e718bd18
FB
398 FROM profile_job AS pj
399 INNER JOIN profile_job_enum AS pje ON (pje.id = pj.jobid)
e718bd18
FB
400 LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pj.sectorid)
401 LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pj.subsectorid)
402 LEFT JOIN profile_job_subsubsector_enum AS pjssse ON (pjssse.id = pj.subsubsectorid)
403 WHERE ' . $where . '
404 ORDER BY pj.id
405 ' . $limit);
406 }
407
408 public function getMailJob()
409 {
410 $job = $this->getJobs(self::JOBS_MAIN, 1);
411 if ($job->total() != 1) {
412 return null;
413 }
414 return $job->next();
415 }
416
5c005b37
RB
417 /* Binets
418 */
419 public function getBinets()
420 {
421 return XDB::fetchColumn('SELECT binet_id
5c8a71f2 422 FROM profile_binets
bdd977d7 423 WHERE pid = {?}', $this->id());
5c005b37
RB
424 }
425
e718bd18 426
e7b93962
FB
427 public function owner()
428 {
429 return User::getSilent($this);
430 }
431
0d906109 432 private static function fetchProfileData(array $pids, $respect_order = true)
b774ddab
FB
433 {
434 if (count($pids) == 0) {
435 return array();
436 }
0d906109
RB
437
438 if ($respect_order) {
439 $order = 'ORDER BY ' . XDB::formatCustomOrder('p.pid', $pids);
440 } else {
441 $order = '';
442 }
443
444 return XDB::Iterator('SELECT p.*, p.sex = \'female\' AS sex, pe.entry_year, pe.grad_year,
445 pn_f.name AS firstname, pn_l.name AS lastname, pn_n.name AS nickname,
446 IF(pn_uf.name IS NULL, pn_f.name, pn_uf.name) AS firstname_ordinary,
447 IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_ordinary,
448 pd.promo AS promo, pd.short_name, pd.directory_name AS full_name,
449 pd.directory_name, pp.display_tel AS mobile, pp.pub AS mobile_pub,
88c31faf
FB
450 ph.attach IS NOT NULL AS has_photo, ph.pub AS photo_pub,
451 p.last_change < DATE_SUB(NOW(), INTERVAL 365 DAY) AS is_old,
452 ap.uid AS owner_id
0d906109
RB
453 FROM profiles AS p
454 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
ce0b2c6f 455 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
0d906109
RB
456 INNER JOIN profile_name AS pn_f ON (pn_f.pid = p.pid
457 AND pn_f.typeid = ' . self::getNameTypeId('firstname', true) . ')
458 INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid
459 AND pn_l.typeid = ' . self::getNameTypeId('lastname', true) . ')
460 LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid
461 AND pn_uf.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ')
462 LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid
463 AND pn_ul.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ')
464 LEFT JOIN profile_name AS pn_n ON (pn_n.pid = p.pid
465 AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ')
ce0b2c6f 466 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\')
5c4ea53f 467 LEFT JOIN profile_photos AS ph ON (ph.pid = p.pid)
0d906109
RB
468 LEFT JOIN account_profiles AS ap ON (ap.pid = p.pid AND FIND_IN_SET(\'owner\', ap.perms))
469 WHERE p.pid IN ' . XDB::formatArray($pids) . '
470 GROUP BY p.pid
471 ' . $order);
b774ddab
FB
472 }
473
474 public static function getPID($login)
475 {
476 if ($login instanceof PlUser) {
477 return XDB::fetchOneCell('SELECT pid
478 FROM account_profiles
479 WHERE uid = {?} AND FIND_IN_SET(\'owner\', perms)',
480 $login->id());
481 } else if (ctype_digit($login)) {
482 return XDB::fetchOneCell('SELECT pid
483 FROM profiles
484 WHERE pid = {?}', $login);
485 } else {
486 return XDB::fetchOneCell('SELECT pid
487 FROM profiles
488 WHERE hrpid = {?}', $login);
489 }
490 }
491
0d906109
RB
492 public static function getPIDsFromUIDs($uids, $respect_order = true)
493 {
494 if ($respect_order) {
495 $order = 'ORDER BY ' . XDB::formatCustomOrder('uid', $uids);
496 } else {
497 $order = '';
498 }
499 return XDB::fetchAllAssoc('uid', 'SELECT ap.uid, ap.pid
500 FROM account_profiles AS ap
501 WHERE FIND_IN_SET(\'owner\', ap.perms)
502 AND ap.uid IN ' . XDB::formatArray($uids) .'
503 ' . $order);
504 }
b774ddab 505
e7b93962
FB
506 /** Return the profile associated with the given login.
507 */
a3118782
FB
508 public static function get($login)
509 {
641f2115
FB
510 if (is_array($login)) {
511 return new Profile($login);
512 }
b774ddab
FB
513 $pid = self::getPID($login);
514 if (!is_null($pid)) {
0d906109
RB
515 $it = self::iterOverPIDs(array($pid), false);
516 return $it->next();
b774ddab 517 } else {
efe597c5
FB
518 /* Let say we can identify a profile using the identifiers of its owner.
519 */
455ea0c9
FB
520 if (!($login instanceof PlUser)) {
521 $user = User::getSilent($login);
522 if ($user && $user->hasProfile()) {
523 return $user->profile();
524 }
efe597c5 525 }
3e53a496 526 return null;
e7b93962
FB
527 }
528 }
a3118782 529
0d906109
RB
530 public static function iterOverUIDs($uids, $respect_order = true)
531 {
532 return self::iterOverPIDs(self::getPIDsFromUIDs($uids), $respect_order);
533 }
534
535 public static function iterOverPIDs($pids, $respect_order = true)
536 {
537 return new ProfileIterator(self::fetchProfileData($pids, $respect_order));
538 }
539
b774ddab
FB
540 /** Return profiles for the list of pids.
541 */
542 public static function getBulkProfilesWithPIDs(array $pids)
543 {
544 if (count($pids) == 0) {
545 return array();
546 }
0d906109 547 $it = self::iterOverPIDs($pids);
b774ddab 548 $profiles = array();
0d906109
RB
549 while ($p = $it->next()) {
550 $profiles[$p->id()] = $p;
b774ddab
FB
551 }
552 return $profiles;
553 }
554
555 /** Return profiles for uids.
556 */
557 public static function getBulkProfilesWithUIDS(array $uids)
558 {
559 if (count($uids) == 0) {
560 return array();
561 }
0d906109 562 return self::getBulkProfilesWithPIDs(self::getPIDsFromUIDs($uids));
b774ddab
FB
563 }
564
913a4e90
RB
565 public static function isDisplayName($name)
566 {
567 return $name == self::DN_FULL || $name == self::DN_DISPLAY
568 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
569 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
570 || $name == self::DN_SHORT || $name == self::DN_SORT;
571 }
572
a3118782
FB
573 public static function getNameTypeId($type, $for_sql = false)
574 {
575 if (!S::has('name_types')) {
eb6207f7 576 $table = XDB::fetchAllAssoc('type', 'SELECT id, type
32742f84 577 FROM profile_name_enum');
a3118782
FB
578 S::set('name_types', $table);
579 } else {
580 $table = S::v('name_types');
581 }
582 if ($for_sql) {
583 return XDB::escape($table[$type]);
584 } else {
585 return $table[$type];
586 }
587 }
726eaf7a
SJ
588
589 public static function rebuildSearchTokens($pid)
590 {
591 XDB::execute('DELETE FROM search_name
592 WHERE uid = {?}',
593 $pid);
594 $keys = XDB::iterator("SELECT CONCAT(n.particle, n.name) AS name, e.score,
595 FIND_IN_SET('public', e.flags) AS public
596 FROM profile_name AS n
597 INNER JOIN profile_name_enum AS e ON (n.typeid = e.id)
598 WHERE n.pid = {?}",
599 $pid);
600
601 foreach ($keys as $i => $key) {
602 if ($key['name'] == '') {
603 continue;
604 }
605 $toks = preg_split('/[ \'\-]+/', $key['name']);
606 $token = '';
607 $first = 5;
608 while ($toks) {
609 $token = strtolower(replace_accent(array_pop($toks) . $token));
610 $score = ($toks ? 0 : 10 + $first) * ($key['score'] / 10);
611 XDB::execute('REPLACE INTO search_name (token, uid, soundex, score, flags)
612 VALUES ({?}, {?}, {?}, {?}, {?})',
613 $token, $uid, soundex_fr($token), $score, $key['public']);
614 $first = 0;
615 }
616 }
69b46857
SJ
617 }
618
619 /** The school identifier consists of 6 digits. The first 3 represent the
620 * promotion entry year. The last 3 indicate the student's rank.
621 *
622 * Our identifier consists of 8 digits and both half have the same role.
623 * This enables us to deal with bigger promotions and with a wider range
624 * of promotions.
625 *
626 * getSchoolId returns a school identifier given one of ours.
627 * getXorgId returns a X.org identifier given a school identifier.
628 */
629 public static function getSchoolId($xorgId)
630 {
631 if (!preg_match('/^[0-9]{8}$/', $xorgId)) {
632 return null;
633 }
634
635 $year = intval(substr($xorgId, 0, 4));
636 $rank = intval(substr($xorgId, 5, 3));
637 if ($year < 1996) {
638 return null;
639 } elseif ($year < 2000) {
640 $year = intval(substr(1900 - $year, 1, 3));
641 return sprintf('%02u0%03u', $year, $rank);
642 } else {
643 $year = intval(substr(1900 - $year, 1, 3));
644 return sprintf('%03u%03u', $year, $rank);
645 }
646 }
726eaf7a 647
69b46857
SJ
648 public static function getXorgId($schoolId)
649 {
a292484d
SJ
650 if (!preg_match('/^[0-9]{6}$/', $xorgId)) {
651 return null;
652 }
653
69b46857
SJ
654 $year = intval(substr($schoolId, 0, 3));
655 $rank = intval(substr($schoolId, 3, 3));
726eaf7a 656
69b46857
SJ
657 if ($year > 200) {
658 $year /= 10;
659 }
660 if ($year < 96) {
661 return null;
662 } else {
663 return sprintf('%04u%04u', 1900 + $year, $rank);
664 }
726eaf7a 665 }
e7b93962
FB
666}
667
0d906109
RB
668/** Iterator over a set of Profiles
669 * @param an XDB::Iterator obtained from a Profile::fetchProfileData
670 */
671class ProfileIterator implements PlIterator
672{
673 private $dbiter;
674
675 public function __construct($dbiter)
676 {
677 $this->dbiter = $dbiter;
678 }
679
680 public function next()
681 {
682 $data = $this->dbiter->next();
683 if ($data == null) {
684 return null;
685 } else {
641f2115 686 return Profile::get($data);
0d906109
RB
687 }
688 }
689
690 public function total()
691 {
692 return $this->dbiter->total();
693 }
694
695 public function first()
696 {
697 return $this->dbiter->first();
698 }
699
700 public function last()
701 {
702 return $this->dbiter->last();
703 }
704}
705
e7b93962
FB
706// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
707?>