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