'skin' field in 'accounts' corresponds to 'id' in 'skins' and thus should have the...
[platal.git] / include / profilefields.inc.php
CommitLineData
9f21bd15
RB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
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
22// {{{ class ProfileField
23/** To store a "field" from the profile
24 * Provides functions for loading a batch of such data
25 */
26abstract class ProfileField
27{
1f8250e4 28 public static $fields = array(
4d1f0f6b
RB
29 Profile::FETCH_ADDRESSES => 'ProfileAddresses',
30 Profile::FETCH_CORPS => 'ProfileCorps',
31 Profile::FETCH_EDU => 'ProfileEducation',
32 Profile::FETCH_JOBS => 'ProfileJobs',
33 Profile::FETCH_MEDALS => 'ProfileMedals',
34 Profile::FETCH_NETWORKING => 'ProfileNetworking',
35 Profile::FETCH_PHONES => 'ProfilePhones',
36 Profile::FETCH_MENTOR_SECTOR => 'ProfileMentoringSectors',
37 Profile::FETCH_MENTOR_COUNTRY => 'ProfileMentoringCountries',
1f8250e4
RB
38 );
39
9f21bd15
RB
40 /** The profile to which this field belongs
41 */
42 public $pid;
43
44 /** Fetches data from the database for the given pids, compatible with
45 * the visibility context.
46 * @param $pids An array of pids
47 * @param $visibility The level of visibility fetched fields must have
48 * @return a PlIterator yielding data suitable for a "new ProfileBlah($data)"
b3c0f165 49 * XXX MUST be reimplemented for each kind of ProfileField
9f21bd15 50 */
1a9affb7 51 public static function fetchData(array $pids, ProfileVisibility $visibility)
b3c0f165
RB
52 {
53 return PlIteratorUtils::emptyIterator();
54 }
9f21bd15 55
1a9affb7 56 public static function buildForPID($cls, $pid, ProfileVisibility $visibility)
9f21bd15
RB
57 {
58 $res = self::buildFromPIDs($cls, array($pid), $visibility);
59 return array_pop($res);
60 }
61
62 /** Build a list of ProfileFields from a set of pids
63 * @param $cls The name of the field to create ('ProfileMedals', ...)
64 * @param $pids An array of pids
65 * @param $visibility An array of allowed visibility contexts
66 * @return An array of $pid => ProfileField
67 */
1a9affb7 68 public static function buildFromPIDs($cls, array $pids, ProfileVisibility $visibility)
9f21bd15
RB
69 {
70 $it = new ProfileFieldIterator($cls, $pids, $visibility);
71 $res = array();
72 while ($pf = $it->next()) {
73 $res[$pf->pid] = $pf;
74 }
75 return $res;
76 }
990cb17b 77
1a9affb7 78 public static function getForPID($cls, $pid, ProfileVisibility $visibility)
990cb17b
RB
79 {
80 $it = new ProfileFieldIterator($cls, array($pid), $visibility);
81 return $it->next();
82 }
9f21bd15
RB
83}
84// }}}
85
86// {{{ class ProfileFieldIterator
87class ProfileFieldIterator implements PlIterator
88{
89 private $data;
90 private $cls;
91
1a9affb7 92 public function __construct($cls, array $pids, ProfileVisibility $visibility)
9f21bd15
RB
93 {
94 $this->data = call_user_func(array($cls, 'fetchData'), $pids, $visibility);
95 $this->cls = $cls;
96 }
97
98 public function next()
99 {
100 $d = $this->data->next();
101 if ($d == null) {
102 return null;
103 } else {
104 $cls = $this->cls;
105 return new $cls($d);
106 }
107 }
108
109 public function total()
110 {
111 return $this->data->total();
112 }
113
114 public function first()
115 {
116 return $this->data->first();
117 }
118
119 public function last()
120 {
121 return $this->data->last();
122 }
123}
124// }}}
125
126// {{{ class Phone
127class Phone
128{
129 const TYPE_FAX = 'fax';
130 const TYPE_FIXED = 'fixed';
131 const TYPE_MOBILE = 'mobile';
132 public $type;
133
134 public $search;
135 public $display;
136 public $comment = '';
137
138 const LINK_JOB = 'job';
139 const LINK_ADDRESS = 'address';
140 const LINK_PROFILE = 'user';
141 const LINK_COMPANY = 'hq';
142 public $link_type;
143 public $link_id;
144
145 /** Fields are :
146 * $type, $search, $display, $link_type, $link_id, $comment, $pid, $id
147 */
148 public function __construct($data)
149 {
150 foreach ($data as $key => $val) {
151 $this->$key = $val;
152 }
153 }
154}
155// }}}
156// {{{ class Company
157class Company
158{
159 public $id;
160 public $name;
161 public $acronym;
162 public $url;
163 public $phone = null;
164 public $address = null;
165
166 /** Fields are:
167 * $id, $name, $acronym, $url
168 */
df85e426 169 public function __construct($data)
9f21bd15
RB
170 {
171 foreach ($data as $key => $val) {
172 $this->$key = $val;
173 }
174 }
175
176 public function setPhone(Phone &$phone)
177 {
178 if ($phone->link_type == Phone::LINK_COMPANY && $phone->link_id == $this->id) {
179 $this->phone = $phone;
180 }
181 }
182
183 public function setAddress(Address &$address)
184 {
185 if ($address->link_type == Address::LINK_COMPANY && $address->link_id == $this->id) {
186 $this->address = $address;
187 }
188 }
189
190}
191// }}}
192// {{{ class Job
193class Job
194{
195 public $pid;
196 public $id;
197
17982ebf 198 public $company = null;
9f21bd15
RB
199 private $phones = array();
200 private $address = null;
201
17982ebf 202 public $jobid;
9f21bd15
RB
203
204 public $description;
17982ebf
RB
205 public $user_site;
206 public $user_email;
207
208 public $sector;
209 public $subsector;
210 public $subsubsector;
9f21bd15
RB
211
212 /** Fields are:
213 * pid, id, company_id, description, url, email
214 */
215 public function __construct($data)
216 {
217 foreach ($data as $key => $val) {
218 $this->$key = $val;
219 }
17982ebf 220 $this->company = CompanyList::get($this->jobid);
9f21bd15
RB
221 }
222
223 public function phones()
224 {
225 return $this->phones;
226 }
227
f2f314c4
RB
228 public function address()
229 {
230 return $this->address;
231 }
232
9f21bd15
RB
233 public function addPhone(Phone &$phone)
234 {
235 if ($phone->link_type == Phone::LINK_JOB && $phone->link_id == $this->id && $phone->pid == $this->pid) {
236 $this->phones[] = $phone;
237 }
238 }
239
240 public function setAddress(Address $address)
241 {
242 if ($address->link_id == Address::LINK_JOB && $address->link_id == $this->id && $address->pid == $this->pid) {
243 $this->address = $address;
244 }
245 }
9f21bd15
RB
246}
247// }}}
248// {{{ class Address
249class Address
250{
251 const LINK_JOB = 'job';
252 const LINK_COMPANY = 'hq';
253 const LINK_PROFILE = 'home';
254
fc10e72b 255 public $flags;
9f21bd15
RB
256 public $link_id;
257 public $link_type;
258
9f21bd15 259 public $text;
df85e426 260 public $postalCode;
fc10e72b
RB
261 public $latitude;
262 public $longitude;
263
264 public $locality;
265 public $subAdministrativeArea;
266 public $administrativeArea;
9f21bd15
RB
267 public $country;
268
790c52a8
RB
269 public $comment;
270
9f21bd15
RB
271 private $phones = array();
272
273 /** Fields are:
274 * pîd, id, link_id, link_type, flags, text, postcode, country
275 */
276 public function __construct($data)
277 {
278 foreach ($data as $key => $val) {
279 $this->$key = $val;
280 }
790c52a8 281 $this->flags = new PlFlagSet($this->flags);
9f21bd15
RB
282 }
283
284 public function addPhone(Phone &$phone)
285 {
286 if ($phone->link_type == Phone::LINK_ADDRESS && $phone->link_id == $this->id && $phone->pid == $this->pid) {
287 $this->phones[] = $phone;
288 }
289 }
290
291 public function phones()
292 {
293 return $this->phones;
294 }
3bad2574 295
790c52a8 296 public function hasFlag($flag)
3bad2574 297 {
790c52a8 298 return $this->flags->hasFlag($flag);
3bad2574 299 }
9f21bd15
RB
300}
301// }}}
a060e1c3
RB
302// {{{ class Education
303class Education
304{
b7eec8d3
RB
305 public $id;
306 public $pid;
a060e1c3
RB
307
308 public $entry_year;
309 public $grad_year;
310 public $program;
311 public $flags;
312
b7eec8d3
RB
313 public $school;
314 public $school_short;
315 public $school_url;
316 public $country;
317
318 public $degree;
319 public $degree_short;
320 public $degree_level;
321
a955e787
RB
322 public $field;
323
a060e1c3
RB
324 public function __construct(array $data)
325 {
b7eec8d3
RB
326 foreach ($data as $key => $val) {
327 $this->$key = $val;
328 }
329 $this->flags = new PlFlagSet($this->flags);
a060e1c3
RB
330 }
331}
332// }}}
9f21bd15
RB
333
334// {{{ class ProfileEducation [ Field ]
335class ProfileEducation extends ProfileField
336{
a060e1c3 337 private $educations = array();
9f21bd15 338
b7eec8d3 339 public function __construct(PlInnerSubIterator $it)
9f21bd15 340 {
a060e1c3 341 $this->pid = $it->value();
9f21bd15 342 while ($edu = $it->next()) {
a060e1c3
RB
343 $this->educations[$edu['id']] = new Education($edu);
344 }
345 }
346
347 public function get($flags, $limit)
348 {
349 $educations = array();
350 $year = getdate();
351 $year = $year['year'];
352 $nb = 0;
353 foreach ($this->educations as $id => $edu) {
354 if (
355 (($flags & Profile::EDUCATION_MAIN) && $edu->flags->hasFlag('primary'))
356 ||
357 (($flags & Profile::EDUCATION_EXTRA) && !$edu->flags->hasFlag('primary'))
358 ||
359 (($flags & Profile::EDUCATION_FINISHED) && $edu->grad_year <= $year)
360 ||
361 (($flags & Profile::EDUCATION_CURRENT) && $edu->grad_year > $year)
ad336893
RB
362 ||
363 ($flags & Profile::EDUCATION_ALL)
a060e1c3
RB
364 ) {
365 $educations[$id] = $edu;
366 ++$nb;
367 }
368 if ($limit != null && $nb >= $limit) {
369 break;
370 }
9f21bd15 371 }
598c57f6 372 return $educations;
9f21bd15
RB
373 }
374
1a9affb7 375 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 376 {
b7eec8d3
RB
377 $data = XDB::iterator('SELECT pe.id, pe.pid,
378 pe.entry_year, pe.grad_year, pe.program, pe.flags,
379 pee.name AS school, pee.abbreviation AS school_short,
380 pee.url AS school_url, gc.countryFR AS country,
381 pede.degree, pede.abbreviation AS degree_short, pede.level AS degree_level,
382 pefe.field
383 FROM profile_education AS pe
384 LEFT JOIN profile_education_enum AS pee ON (pee.id = pe.eduid)
385 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pee.country)
386 LEFT JOIN profile_education_degree_enum AS pede ON (pede.id = pe.degreeid)
387 LEFT JOIN profile_education_field_enum AS pefe ON (pefe.id = pe.fieldid)
388 WHERE pe.pid IN {?}
a060e1c3 389 ORDER BY ' . XDB::formatCustomOrder('pid', $pids) . ',
b7eec8d3 390 NOT FIND_IN_SET(\'primary\', pe.flags), pe.entry_year, pe.id',
a060e1c3 391 $pids);
9f21bd15
RB
392
393 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
394 }
395}
396// }}}
397// {{{ class ProfileMedals [ Field ]
398class ProfileMedals extends ProfileField
399{
400 public $medals = array();
401
f35e9630 402 public function __construct(PlInnerSubIterator $it)
9f21bd15 403 {
f35e9630 404 $this->pid = $it->value();
9f21bd15 405 while ($medal = $it->next()) {
cef9e8c8 406 $this->medals[$medal['mid']] = $medal;
9f21bd15
RB
407 }
408 }
409
1a9affb7 410 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 411 {
cef9e8c8 412 $data = XDB::iterator('SELECT pm.pid, pm.mid, pm.gid, pme.text, pme.img
9f21bd15
RB
413 FROM profile_medals AS pm
414 LEFT JOIN profiles AS p ON (pm.pid = p.pid)
cef9e8c8 415 LEFT JOIN profile_medal_enum AS pme ON (pme.id = pm.mid)
9f21bd15
RB
416 WHERE pm.pid IN {?} AND p.medals_pub IN {?}
417 ORDER BY ' . XDB::formatCustomOrder('pm.pid', $pids),
1a9affb7 418 $pids, $visibility->levels());
9f21bd15
RB
419
420 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
421 }
422}
423// }}}
424// {{{ class ProfileNetworking [ Field ]
425class ProfileNetworking extends ProfileField
426{
427 private $networks = array();
9f21bd15 428
56afc44b 429 public function __construct(PlIterator $it)
9f21bd15
RB
430 {
431 while ($network = $it->next()) {
432 $this->networks[$network['nwid']] = $network['address'];
9f21bd15
RB
433 }
434 }
435
1a9affb7 436 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 437 {
d4d395bb 438 $data = XDB::iterator('SELECT pid, nwid, address, network_type
9f21bd15
RB
439 FROM profile_networking
440 WHERE pid IN {?} AND pub IN {?}
d4d395bb
RB
441 ORDER BY ' . XDB::formatCustomOrder('pid', $pids) . ',
442 network_type, nwid',
1a9affb7 443 $pids, $visibility->levels());
9f21bd15
RB
444
445 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
446 }
447
d4d395bb 448 public function get($flags, $limit = null)
9f21bd15
RB
449 {
450 $nws = array();
d4d395bb
RB
451 $nb = 0;
452 foreach ($this->networks as $id => $nw) {
453 // XXX hardcoded reference to web site index
454 if (
dad85695 455 (($flags & Profile::NETWORKING_WEB) && $nw['network_type'] == 0)
d4d395bb 456 ||
dad85695 457 (! ($flags & Profile::NETWORKING_WEB))
d4d395bb
RB
458 ) {
459 $nws[$id] = $nw;
460 ++$nb;
461 }
462 if ($nb >= $limit) {
463 break;
9f21bd15
RB
464 }
465 }
598c57f6 466 return $nws;
9f21bd15
RB
467 }
468}
469// }}}
9f21bd15
RB
470// {{{ class ProfileCorps [ Field ]
471class ProfileCorps extends ProfileField
472{
473 public $original;
474 public $current;
0396c259
RB
475
476 public $original_name;
477 public $original_abbrev;
478 public $original_still_exists;
479
480 public $current_name;
481 public $current_abbrev;
482 public $current_still_exists;
483 public $current_rank;
484 public $current_rank_abbrev;
9f21bd15 485
56afc44b 486 public function __construct(array $data)
9f21bd15 487 {
0396c259
RB
488 foreach ($data as $key => $val) {
489 $this->$key = $val;
490 }
9f21bd15
RB
491 }
492
1a9affb7 493 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 494 {
0396c259
RB
495 $data = XDB::iterator('SELECT pc.pid, pc.original_corpsid AS original, pc.current_corpsid AS current,
496 pceo.name AS original_name, pceo.abbreviation AS original_abbrev,
497 pceo.still_exists AS original_still_exists,
498 pcec.name AS current_name, pcec.abbreviation AS current_abbrev,
499 pcec.still_exists AS current_still_exists,
500 pcrec.name AS current_rank, pcrec.abbreviation AS current_rank_abbrev,
9f21bd15 501 rankid
0396c259
RB
502 FROM profile_corps AS pc
503 LEFT JOIN profile_corps_enum AS pceo ON (pceo.id = pc.original_corpsid)
504 LEFT JOIN profile_corps_enum AS pcec ON (pcec.id = pc.current_corpsid)
505 LEFT JOIN profile_corps_rank_enum AS pcrec ON (pcrec.id = pc.rankid)
506 WHERE pc.pid IN {?} AND pc.corps_pub IN {?}
9f21bd15 507 ORDER BY ' . XDB::formatCustomOrder('pid', $pids),
1a9affb7 508 $pids, $visibility->levels());
9f21bd15
RB
509
510 return $data;
511 }
512}
513// }}}
4d1f0f6b
RB
514// {{{ class ProfileMentoringSectors [ Field ]
515class ProfileMentoringSectors extends ProfileField
516{
517 public $sectors = array();
518
519 public function __construct(PlInnerSubIterator $it)
520 {
521 $this->pid = $it->value();
522 while ($sector = $it->next()) {
523 $this->sectors[] = $sector;
524 }
525 }
526
527 public static function fetchData(array $pids, ProfileVisibility $visibility)
528 {
529 $data = XDB::iterator('SELECT pms.pid, pjse.name AS sector, pjsse.name AS subsector
530 FROM profile_mentor_sector AS pms
531 LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pms.sectorid)
532 LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pms.subsectorid)
533 WHERE pms.pid IN {?}
534 ORDER BY ' . XDB::formatCustomOrder('pms.pid', $pids),
535 $pids);
536
537 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
538 }
539}
540// }}}
541// {{{ class ProfileMentoringCountries [ Field ]
542class ProfileMentoringCountries extends ProfileField
543{
544 public $countries = array();
545
546 public function __construct(PlInnerSubIterator $it)
547 {
548 $this->pid = $it->value();
549 while ($country = $it->next()) {
550 $this->countries[$country['id']] = $country['name'];
551 }
552 }
553
554 public static function fetchData(array $pids, ProfileVisibility $visibility)
555 {
556 $data = XDB::iterator('SELECT pmc.pid, pmc.country AS id, gc.countryFR AS name
557 FROM profile_mentor_country AS pmc
558 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pmc.country)
559 WHERE pmc.pid IN {?}
560 ORDER BY ' . XDB::formatCustomOrder('pmc.pid', $pids),
561 $pids);
562
563 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
564 }
565}
566// }}}
9f21bd15
RB
567
568/** Loading of data for a Profile :
569 * 1) load jobs, addresses, phones
570 * 2) attach phones to addresses, jobs and profiles
571 * 3) attach addresses to jobs and profiles
572 */
573
574// {{{ class ProfileAddresses [ Field ]
575class ProfileAddresses extends ProfileField
576{
577 private $addresses = array();
578
3bad2574 579 public function __construct(PlIterator $it)
9f21bd15 580 {
3bad2574
RB
581 if ($it instanceof PlInnerSubIterator) {
582 $this->pid = $it->value();
583 }
584
9f21bd15 585 while ($addr = $it->next()) {
3bad2574
RB
586 $this->addresses[] = new Address($addr);
587 }
588 }
589
590 public function get($flags, $limit = null)
591 {
592 $res = array();
593 $nb = 0;
594 foreach ($this->addresses as $addr) {
790c52a8
RB
595 if (
596 ($flags & Profile::ADDRESS_ALL)
597 ||
598 (($flags & Profile::ADDRESS_MAIN) && $addr->hasFlag('current'))
599 ||
600 (($flags & Profile::ADDRESS_POSTAL) && $addr->hasFlag('mail'))
601 ||
602 (($flags & Profile::ADDRESS_PERSO) && $addr->link_type == 'home')
603 ||
604 (($flags & Profile::ADDRESS_PRO) && $addr->link_type == 'job')
605 ) {
3bad2574
RB
606 $res[] = $addr;
607 $nb++;
608 }
609 if ($limit != null && $nb == $limit) {
610 break;
611 }
9f21bd15 612 }
598c57f6 613 return $res;
9f21bd15
RB
614 }
615
1a9affb7 616 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 617 {
fc10e72b
RB
618 $data = XDB::iterator('SELECT pa.id, pa.pid, pa.flags, pa.type AS link_type,
619 IF(pa.type = \'home\', pid, jobid) AS link_id,
790c52a8 620 pa.text, pa.postalCode, pa.latitude, pa.longitude, pa.comment,
fc10e72b
RB
621 gl.name AS locality, gas.name AS subAdministrativeArea,
622 ga.name AS administrativeArea, gc.countryFR AS country
623 FROM profile_addresses AS pa
624 LEFT JOIN geoloc_localities AS gl ON (gl.id = pa.localityId)
625 LEFT JOIN geoloc_administrativeareas AS ga ON (ga.id = pa.administrativeAreaId)
626 LEFT JOIN geoloc_administrativeareas AS gas ON (gas.id = pa.subAdministrativeAreaId)
627 LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pa.countryId)
628 WHERE pa.pid in {?} AND pa.pub IN {?}
9f21bd15 629 ORDER BY ' . XDB::formatCustomOrder('pid', $pids),
1a9affb7 630 $pids, $visibility->levels());
9f21bd15
RB
631
632 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
633 }
634
df85e426 635 public function addPhones(ProfilePhones $phones)
9f21bd15 636 {
df85e426 637 $p = $phones->get(0);
598c57f6 638 foreach ($p as $phone) {
949fc736
RB
639 if ($phone->link_type == Phone::LINK_ADDRESS && array_key_exists($phone->link_id, $this->addresses)) {
640 $this->addresses[$phone->link_id]->addPhone($phone);
9f21bd15
RB
641 }
642 }
9f21bd15
RB
643 }
644}
645// }}}
646// {{{ class ProfilePhones [ Field ]
647class ProfilePhones extends ProfileField
648{
649 private $phones = array();
650
f35e9630 651 public function __construct(PlInnerSubIterator $it)
9f21bd15 652 {
f35e9630 653 $this->pid = $it->value();
9f21bd15 654 while ($phone = $it->next()) {
f35e9630 655 $this->phones[] = new Phone($phone);
9f21bd15
RB
656 }
657 }
658
df85e426
RB
659 public function get($flags, $limit = null)
660 {
661 $phones = array();
662 $nb = 0;
663 foreach ($this->phones as $id => $phone) {
664 $phones[$id] = $phone;
665 ++$nb;
666 if ($limit != null && $nb == $limit) {
667 break;
668 }
669 }
598c57f6 670 return $phones;
df85e426
RB
671 }
672
1a9affb7 673 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 674 {
6c305877 675 $data = XDB::iterator('SELECT tel_type AS type, search_tel AS search, display_tel AS display, link_type, comment, pid
9f21bd15
RB
676 FROM profile_phones
677 WHERE pid IN {?} AND pub IN {?}
678 ORDER BY ' . XDB::formatCustomOrder('pid', $pids),
1a9affb7 679 $pids, $visibility->levels());
9f21bd15
RB
680 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
681 }
682}
683// }}}
684// {{{ class ProfileJobs [ Field ]
685class ProfileJobs extends ProfileField
686{
687 private $jobs = array();
688
a5a92ae7 689 public function __construct(PlInnerSubIterator $jobs)
9f21bd15 690 {
a5a92ae7 691 $this->pid = $jobs->value();
9f21bd15 692 while ($job = $jobs->next()) {
0907501b 693 $this->jobs[$job['id']] = new Job($job);
9f21bd15
RB
694 }
695 }
696
1a9affb7 697 public static function fetchData(array $pids, ProfileVisibility $visibility)
9f21bd15 698 {
02306579 699 CompanyList::preload($pids);
17982ebf
RB
700 $data = XDB::iterator('SELECT pj.id, pj.pid, pj.description, pj.url as user_site,
701 IF(pj.email_pub IN {?}, pj.email, NULL) AS user_email,
702 pj.jobid, pjse.name AS sector, pjsse.name AS subsector,
703 pjssse.name AS subsubsector
704 FROM profile_job AS pj
705 LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pj.sectorid)
706 LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pj.subsectorid)
707 LEFT JOIN profile_job_subsubsector_enum AS pjssse ON (pjssse.id = pj.subsubsectorid)
708 WHERE pj.pid IN {?} AND pj.pub IN {?}
949fc736 709 ORDER BY ' . XDB::formatCustomOrder('pid', $pids) . ',
17982ebf 710 pj.id',
1a9affb7 711 $visibility->levels(), $pids, $visibility->levels());
9f21bd15
RB
712 return PlIteratorUtils::subIterator($data, PlIteratorUtils::arrayValueCallback('pid'));
713 }
714
949fc736
RB
715 public function get($flags, $limit = null)
716 {
717 $jobs = array();
718 $nb = 0;
719 foreach ($this->jobs as $id => $job) {
720 $jobs[$id] = $job;
721 ++$nb;
722 if ($limit != null && $nb >= $limit) {
723 break;
724 }
725 }
598c57f6 726 return $jobs;
949fc736
RB
727 }
728
df85e426 729 public function addPhones(ProfilePhones $phones)
9f21bd15 730 {
df85e426 731 $p = $phones->get(0);
598c57f6 732 foreach ($p as $phone) {
949fc736
RB
733 if ($phone->link_type == Phone::LINK_JOB && array_key_exists($phone->link_id, $this->jobs)) {
734 $this->jobs[$phone->link_id]->addPhones($phone);
9f21bd15
RB
735 }
736 }
9f21bd15
RB
737 }
738
df85e426 739 public static function addAddresses(ProfileAddresses $addresses)
9f21bd15 740 {
df85e426 741 $a = $addresses->get(Profile::ADDRESS_PRO);
598c57f6 742 foreach ($a as $address) {
949fc736
RB
743 if ($address->link_type == Address::LINK_JOB && array_key_exists($address->link_id, $this->jobs)) {
744 $this->jobs[$address->link_id]->setAddress($address);
9f21bd15
RB
745 }
746 }
9f21bd15
RB
747 }
748
949fc736 749 public static function addCompanies(array $companies)
9f21bd15 750 {
949fc736 751 foreach ($this->jobs as $job)
9f21bd15 752 {
17982ebf 753 $job->company = $companies[$job->jobid];
9f21bd15 754 }
9f21bd15
RB
755 }
756}
757// }}}
758
759// {{{ class CompanyList
760class CompanyList
761{
762 static private $fullload = false;
763 static private $companies = array();
764
765 static public function preload($pids = array())
766 {
767 if (self::$fullload) {
768 return;
769 }
770 // Load raw data
771 if (count($pids)) {
02306579
RB
772 $join = 'LEFT JOIN profile_job ON (profile_job.jobid = pje.id)';
773 $where = 'WHERE profile_job.pid IN ' . XDB::formatArray($pids);
9f21bd15
RB
774 } else {
775 $join = '';
776 $where = '';
777 }
778
df85e426
RB
779 $it = XDB::iterator('SELECT pje.id, pje.name, pje.acronym, pje.url,
780 pa.flags, pa.text, pa.postalCode, pa.countryId,
781 pa.type, pa.pub
9f21bd15
RB
782 FROM profile_job_enum AS pje
783 LEFT JOIN profile_addresses AS pa ON (pje.id = pa.jobid AND pa.type = \'hq\')
784 ' . $join . '
785 ' . $where);
786 while ($row = $it->next()) {
df85e426
RB
787 $cp = new Company($row);
788 $addr = new Address($row);
9f21bd15
RB
789 $cp->setAddress($addr);
790 self::$companies[$row['id']] = $cp;
791 }
792
793 // TODO: add phones to addresses
794 if (count($pids) == 0) {
795 self::$fullload = true;
796 }
797 }
798
df85e426 799 static public function get($id)
9f21bd15
RB
800 {
801 if (!array_key_exists($id, self::$companies)) {
802 self::preload();
803 }
804 return self::$companies[$id];
805 }
806}
807
808// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
809?>