Add UFC_Job* classes
[platal.git] / classes / userfilter.php
CommitLineData
a087cc8d
FB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2009 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
d865c296
FB
22
23/******************
24 * CONDITIONS
25 ******************/
26
8363588b 27// {{{ interface UserFilterCondition
a087cc8d
FB
28interface UserFilterCondition
29{
5dd9d823
FB
30 const COND_TRUE = 'TRUE';
31 const COND_FALSE = 'FALSE';
32
a087cc8d
FB
33 /** Check that the given user matches the rule.
34 */
784745ce 35 public function buildCondition(UserFilter &$uf);
a087cc8d 36}
8363588b 37// }}}
a087cc8d 38
8363588b 39// {{{ class UFC_OneChild
a087cc8d
FB
40abstract class UFC_OneChild implements UserFilterCondition
41{
42 protected $child;
43
5dd9d823
FB
44 public function __construct($child = null)
45 {
46 if (!is_null($child) && ($child instanceof UserFilterCondition)) {
47 $this->setChild($child);
48 }
49 }
50
a087cc8d
FB
51 public function setChild(UserFilterCondition &$cond)
52 {
53 $this->child =& $cond;
54 }
55}
8363588b 56// }}}
a087cc8d 57
8363588b 58// {{{ class UFC_NChildren
a087cc8d
FB
59abstract class UFC_NChildren implements UserFilterCondition
60{
61 protected $children = array();
62
5dd9d823
FB
63 public function __construct()
64 {
65 $children = func_get_args();
66 foreach ($children as &$child) {
67 if (!is_null($child) && ($child instanceof UserFilterCondition)) {
68 $this->addChild($child);
69 }
70 }
71 }
72
a087cc8d
FB
73 public function addChild(UserFilterCondition &$cond)
74 {
75 $this->children[] =& $cond;
76 }
5dd9d823
FB
77
78 protected function catConds(array $cond, $op, $fallback)
79 {
80 if (count($cond) == 0) {
81 return $fallback;
82 } else if (count($cond) == 1) {
83 return $cond[0];
84 } else {
4927ee54 85 return '(' . implode(') ' . $op . ' (', $cond) . ')';
5dd9d823
FB
86 }
87 }
a087cc8d 88}
8363588b 89// }}}
a087cc8d 90
8363588b 91// {{{ class UFC_True
a087cc8d
FB
92class UFC_True implements UserFilterCondition
93{
784745ce 94 public function buildCondition(UserFilter &$uf)
a087cc8d 95 {
5dd9d823 96 return self::COND_TRUE;
a087cc8d
FB
97 }
98}
8363588b 99// }}}
a087cc8d 100
8363588b 101// {{{ class UFC_False
a087cc8d
FB
102class UFC_False implements UserFilterCondition
103{
784745ce 104 public function buildCondition(UserFilter &$uf)
a087cc8d 105 {
5dd9d823 106 return self::COND_FALSE;
a087cc8d
FB
107 }
108}
8363588b 109// }}}
a087cc8d 110
8363588b 111// {{{ class UFC_Not
a087cc8d
FB
112class UFC_Not extends UFC_OneChild
113{
784745ce 114 public function buildCondition(UserFilter &$uf)
a087cc8d 115 {
5dd9d823
FB
116 $val = $this->child->buildCondition($uf);
117 if ($val == self::COND_TRUE) {
118 return self::COND_FALSE;
119 } else if ($val == self::COND_FALSE) {
120 return self::COND_TRUE;
121 } else {
122 return 'NOT (' . $val . ')';
123 }
a087cc8d
FB
124 }
125}
8363588b 126// }}}
a087cc8d 127
8363588b 128// {{{ class UFC_And
a087cc8d
FB
129class UFC_And extends UFC_NChildren
130{
784745ce 131 public function buildCondition(UserFilter &$uf)
a087cc8d 132 {
784745ce 133 if (empty($this->children)) {
5dd9d823 134 return self::COND_FALSE;
784745ce 135 } else {
5dd9d823 136 $true = self::COND_FALSE;
784745ce
FB
137 $conds = array();
138 foreach ($this->children as &$child) {
5dd9d823
FB
139 $val = $child->buildCondition($uf);
140 if ($val == self::COND_TRUE) {
141 $true = self::COND_TRUE;
142 } else if ($val == self::COND_FALSE) {
143 return self::COND_FALSE;
144 } else {
145 $conds[] = $val;
146 }
a087cc8d 147 }
5dd9d823 148 return $this->catConds($conds, 'AND', $true);
a087cc8d 149 }
a087cc8d
FB
150 }
151}
8363588b 152// }}}
a087cc8d 153
8363588b 154// {{{ class UFC_Or
a087cc8d
FB
155class UFC_Or extends UFC_NChildren
156{
784745ce 157 public function buildCondition(UserFilter &$uf)
a087cc8d 158 {
784745ce 159 if (empty($this->children)) {
5dd9d823 160 return self::COND_TRUE;
784745ce 161 } else {
5dd9d823 162 $true = self::COND_TRUE;
784745ce
FB
163 $conds = array();
164 foreach ($this->children as &$child) {
5dd9d823
FB
165 $val = $child->buildCondition($uf);
166 if ($val == self::COND_TRUE) {
167 return self::COND_TRUE;
168 } else if ($val == self::COND_FALSE) {
169 $true = self::COND_FALSE;
170 } else {
171 $conds[] = $val;
172 }
a087cc8d 173 }
5dd9d823 174 return $this->catConds($conds, 'OR', $true);
a087cc8d 175 }
a087cc8d
FB
176 }
177}
8363588b 178// }}}
a087cc8d 179
8363588b 180// {{{ class UFC_Profile
53eae167
RB
181/** Filters users who have a profile
182 */
eb1449b8
FB
183class UFC_Profile implements UserFilterCondition
184{
185 public function buildCondition(UserFilter &$uf)
186 {
187 return '$PID IS NOT NULL';
188 }
189}
8363588b 190// }}}
eb1449b8 191
8363588b 192// {{{ class UFC_Promo
53eae167
RB
193/** Filters users based on promo
194 * @param $comparison Comparison operator (>, =, ...)
195 * @param $grade Formation on which to restrict, UserFilter::DISPLAY for "any formation"
196 * @param $promo Promo on which the filter is based
197 */
a087cc8d
FB
198class UFC_Promo implements UserFilterCondition
199{
a087cc8d
FB
200
201 private $grade;
202 private $promo;
203 private $comparison;
204
205 public function __construct($comparison, $grade, $promo)
206 {
207 $this->grade = $grade;
208 $this->comparison = $comparison;
209 $this->promo = $promo;
38c6fe96
FB
210 if ($this->grade != UserFilter::DISPLAY) {
211 UserFilter::assertGrade($this->grade);
212 }
a087cc8d
FB
213 }
214
784745ce 215 public function buildCondition(UserFilter &$uf)
a087cc8d 216 {
38c6fe96
FB
217 if ($this->grade == UserFilter::DISPLAY) {
218 $sub = $uf->addDisplayFilter();
219 return XDB::format('pd' . $sub . '.promo = {?}', $this->promo);
220 } else {
221 $sub = $uf->addEducationFilter(true, $this->grade);
222 $field = 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
223 return $field . ' IS NOT NULL AND ' . $field . ' ' . $this->comparison . ' ' . XDB::format('{?}', $this->promo);
224 }
784745ce
FB
225 }
226}
8363588b 227// }}}
784745ce 228
8363588b 229// {{{ class UFC_Name
53eae167
RB
230/** Filters users based on name
231 * @param $type Type of name field on which filtering is done (firstname, lastname, ...)
232 * @param $text Text on which to filter
233 * @param $mode flag indicating search type (prefix, suffix, with particule, ...)
234 */
784745ce
FB
235class UFC_Name implements UserFilterCondition
236{
237 const PREFIX = 1;
238 const SUFFIX = 2;
239 const PARTICLE = 7;
240 const VARIANTS = 8;
241 const CONTAINS = 3;
242
243 private $type;
244 private $text;
245 private $mode;
246
247 public function __construct($type, $text, $mode)
248 {
249 $this->type = $type;
250 $this->text = $text;
251 $this->mode = $mode;
252 }
253
254 private function buildNameQuery($type, $variant, $where, UserFilter &$uf)
255 {
256 $sub = $uf->addNameFilter($type, $variant);
257 return str_replace('$ME', 'pn' . $sub, $where);
258 }
259
260 public function buildCondition(UserFilter &$uf)
261 {
262 $left = '$ME.name';
263 $op = ' LIKE ';
264 if (($this->mode & self::PARTICLE) == self::PARTICLE) {
265 $left = 'CONCAT($ME.particle, \' \', $ME.name)';
266 }
267 if (($this->mode & self::CONTAINS) == 0) {
268 $right = XDB::format('{?}', $this->text);
269 $op = ' = ';
270 } else if (($this->mode & self::CONTAINS) == self::PREFIX) {
271 $right = XDB::format('CONCAT({?}, \'%\')', $this->text);
272 } else if (($this->mode & self::CONTAINS) == self::SUFFIX) {
273 $right = XDB::format('CONCAT(\'%\', {?})', $this->text);
274 } else {
275 $right = XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->text);
276 }
277 $cond = $left . $op . $right;
278 $conds = array($this->buildNameQuery($this->type, null, $cond, $uf));
d865c296 279 if (($this->mode & self::VARIANTS) != 0 && isset(UserFilter::$name_variants[$this->type])) {
784745ce
FB
280 foreach (UserFilter::$name_variants[$this->type] as $var) {
281 $conds[] = $this->buildNameQuery($this->type, $var, $cond, $uf);
282 }
283 }
284 return implode(' OR ', $conds);
a087cc8d
FB
285 }
286}
8363588b 287// }}}
a087cc8d 288
8363588b 289// {{{ class UFC_Dead
53eae167
RB
290/** Filters users based on death date
291 * @param $comparison Comparison operator
292 * @param $date Date to which death date should be compared
293 */
4927ee54
FB
294class UFC_Dead implements UserFilterCondition
295{
38c6fe96
FB
296 private $comparison;
297 private $date;
298
299 public function __construct($comparison = null, $date = null)
4927ee54 300 {
38c6fe96
FB
301 $this->comparison = $comparison;
302 $this->date = $date;
4927ee54
FB
303 }
304
305 public function buildCondition(UserFilter &$uf)
306 {
38c6fe96
FB
307 $str = 'p.deathdate IS NOT NULL';
308 if (!is_null($this->comparison)) {
309 $str .= ' AND p.deathdate ' . $this->comparison . ' ' . XDB::format('{?}', date('Y-m-d', $this->date));
4927ee54 310 }
38c6fe96 311 return $str;
4927ee54
FB
312 }
313}
8363588b 314// }}}
4927ee54 315
8363588b 316// {{{ class UFC_Registered
53eae167
RB
317/** Filters users based on registration state
318 * @param $active Whether we want to use only "active" users (i.e with a valid redirection)
319 * @param $comparison Comparison operator
320 * @param $date Date to which users registration date should be compared
321 */
4927ee54
FB
322class UFC_Registered implements UserFilterCondition
323{
324 private $active;
38c6fe96
FB
325 private $comparison;
326 private $date;
327
328 public function __construct($active = false, $comparison = null, $date = null)
4927ee54
FB
329 {
330 $this->only_active = $active;
38c6fe96
FB
331 $this->comparison = $comparison;
332 $this->date = $date;
4927ee54
FB
333 }
334
335 public function buildCondition(UserFilter &$uf)
336 {
337 if ($this->active) {
38c6fe96 338 $date = 'a.uid IS NOT NULL AND a.state = \'active\'';
4927ee54 339 } else {
38c6fe96
FB
340 $date = 'a.uid IS NOT NULL AND a.state != \'pending\'';
341 }
342 if (!is_null($this->comparison)) {
343 $date .= ' AND a.registration_date ' . $this->comparison . ' ' . XDB::format('{?}', date('Y-m-d', $this->date));
4927ee54 344 }
38c6fe96 345 return $date;
4927ee54
FB
346 }
347}
8363588b 348// }}}
4927ee54 349
8363588b 350// {{{ class UFC_ProfileUpdated
53eae167
RB
351/** Filters users based on profile update date
352 * @param $comparison Comparison operator
353 * @param $date Date to which profile update date must be compared
354 */
7e735012
FB
355class UFC_ProfileUpdated implements UserFilterCondition
356{
357 private $comparison;
358 private $date;
359
360 public function __construct($comparison = null, $date = null)
361 {
362 $this->comparison = $comparison;
363 $this->date = $date;
364 }
365
366 public function buildCondition(UserFilter &$uf)
367 {
368 return 'p.last_change ' . $this->comparison . XDB::format(' {?}', date('Y-m-d H:i:s', $this->date));
369 }
370}
8363588b 371// }}}
7e735012 372
8363588b 373// {{{ class UFC_Birthday
53eae167
RB
374/** Filters users based on next birthday date
375 * @param $comparison Comparison operator
376 * @param $date Date to which users next birthday date should be compared
377 */
7e735012
FB
378class UFC_Birthday implements UserFilterCondition
379{
380 private $comparison;
381 private $date;
382
383 public function __construct($comparison = null, $date = null)
384 {
385 $this->comparison = $comparison;
386 $this->date = $date;
387 }
388
389 public function buildCondition(UserFilter &$uf)
390 {
391 return 'p.next_birthday ' . $this->comparison . XDB::format(' {?}', date('Y-m-d', $this->date));
392 }
393}
8363588b 394// }}}
7e735012 395
8363588b 396// {{{ class UFC_Sex
53eae167
RB
397/** Filters users based on sex
398 * @parm $sex One of User::GENDER_MALE or User::GENDER_FEMALE, for selecting users
399 */
4927ee54
FB
400class UFC_Sex implements UserFilterCondition
401{
402 private $sex;
403 public function __construct($sex)
404 {
405 $this->sex = $sex;
406 }
407
408 public function buildCondition(UserFilter &$uf)
409 {
410 if ($this->sex != User::GENDER_MALE && $this->sex != User::GENDER_FEMALE) {
411 return self::COND_FALSE;
412 } else {
24e08e33 413 return XDB::format('p.sex = {?}', $this->sex == User::GENDER_FEMALE ? 'female' : 'male');
4927ee54
FB
414 }
415 }
416}
8363588b 417// }}}
4927ee54 418
8363588b 419// {{{ class UFC_Group
53eae167
RB
420/** Filters users based on group membership
421 * @param $group Group whose member we are selecting
422 * @param $admin Whether to restrict selection to admins of that group
423 */
4927ee54
FB
424class UFC_Group implements UserFilterCondition
425{
426 private $group;
427 private $admin;
428 public function __construct($group, $admin = false)
429 {
430 $this->group = $group;
431 $this->admin = $admin;
432 }
433
434 public function buildCondition(UserFilter &$uf)
435 {
436 $sub = $uf->addGroupFilter($this->group);
437 $where = 'gpm' . $sub . '.perms IS NOT NULL';
438 if ($this->admin) {
439 $where .= ' AND gpm' . $sub . '.perms = \'admin\'';
440 }
441 return $where;
442 }
443}
8363588b 444// }}}
4927ee54 445
8363588b 446// {{{ class UFC_Email
53eae167
RB
447/** Filters users based on email address
448 * @param $email Email whose owner we are looking for
449 */
aa21c568
FB
450class UFC_Email implements UserFilterCondition
451{
452 private $email;
453 public function __construct($email)
454 {
455 $this->email = $email;
456 }
457
458 public function buildCondition(UserFilter &$uf)
459 {
460 if (User::isForeignEmailAddress($this->email)) {
461 $sub = $uf->addEmailRedirectFilter($this->email);
462 return XDB::format('e' . $sub . '.email IS NOT NULL OR a.email = {?}', $this->email);
21401768
FB
463 } else if (User::isVirtualEmailAddress($this->email)) {
464 $sub = $uf->addVirtualEmailFilter($this->email);
465 return 'vr' . $sub . '.redirect IS NOT NULL';
aa21c568 466 } else {
21401768
FB
467 @list($user, $domain) = explode('@', $this->email);
468 $sub = $uf->addAliasFilter($user);
aa21c568
FB
469 return 'al' . $sub . '.alias IS NOT NULL';
470 }
471 }
472}
8363588b 473// }}}
d865c296 474
8363588b 475// {{{ class UFC_EmailList
53eae167
RB
476/** Filters users base on an email list
477 * @param $emails List of emails whose owner must be selected
478 */
21401768
FB
479class UFC_EmailList implements UserFilterCondition
480{
481 private $emails;
482 public function __construct($emails)
483 {
484 $this->emails = $emails;
485 }
486
487 public function buildCondition(UserFilter &$uf)
488 {
489 $email = null;
490 $virtual = null;
491 $alias = null;
492 $cond = array();
493
494 if (count($this->emails) == 0) {
495 return UserFilterCondition::COND_TRUE;
496 }
497
498 foreach ($this->emails as $entry) {
499 if (User::isForeignEmailAddress($entry)) {
500 if (is_null($email)) {
501 $email = $uf->addEmailRedirectFilter();
502 }
503 $cond[] = XDB::format('e' . $email . '.email = {?} OR a.email = {?}', $entry, $entry);
504 } else if (User::isVirtualEmailAddress($entry)) {
505 if (is_null($virtual)) {
506 $virtual = $uf->addVirtualEmailFilter();
507 }
508 $cond[] = XDB::format('vr' . $virtual . '.redirect IS NOT NULL AND v' . $virtual . '.alias = {?}', $entry);
509 } else {
510 if (is_null($alias)) {
511 $alias = $uf->addAliasFilter();
512 }
513 @list($user, $domain) = explode('@', $entry);
514 $cond[] = XDB::format('al' . $alias . '.alias = {?}', $user);
515 }
516 }
517 return '(' . implode(') OR (', $cond) . ')';
518 }
519}
8363588b 520// }}}
d865c296 521
8363588b 522// {{{ class UFC_Address
c4b24511
RB
523/** Filters users based on their address
524 * @param $field Field of the address used for filtering (city, street, ...)
525 * @param $text Text for filter
526 * @param $mode Mode for search (PREFIX, SUFFIX, ...)
527 */
528class UFC_Address implements UserFilterCondition
529{
530 const PREFIX = 1;
531 const SUFFIX = 2;
532 const CONTAINS = 3;
533
534 private $field;
535 private $text;
536 private $mode;
537
538 public function __construct($field, $text, $mode)
539 {
540 $this->field = $field;
541 $this->text = $text;
542 $this->mode = $mode;
543 }
544
545 public function buildCondition(UserFilter &$uf)
546 {
547 $left = 'pa.' . $field;
548 $op = ' LIKE ';
549 if (($this->mode & self::CONTAINS) == 0) {
550 $right = XDB::format('{?}', $this->text);
551 $op = ' = ';
552 } else if (($this->mode & self::CONTAINS) == self::PREFIX) {
553 $right = XDB::format('CONCAT({?}, \'%\')', $this->text);
554 } else if (($this->mode & self::CONTAINS) == self::SUFFIX) {
555 $right = XDB::format('CONCAT(\'%\', {?})', $this->text);
556 } else {
557 $right = XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->text);
558 }
559 $cond = $left . $op . $right;
560 $uf->addAddressFilter();
561 return $cond;
562 }
563}
8363588b 564// }}}
c4b24511 565
8363588b 566// {{{ class UFC_Corps
4083b126
RB
567/** Filters users based on the corps they belong to
568 * @param $corps Corps we are looking for (abbreviation)
569 * @param $type Whether we search for original or current corps
570 */
571class UFC_Corps implements UserFilterCondition
572{
573 const CURRENT=1;
574 const ORIGIN=2;
575
576 private $corps;
577 private $type;
578
579 public function __construct($corps, $type = self::CURRENT)
580 {
581 $this->corps = $corps;
582 $this->type = $type;
583 }
584
585 public function buildCondition(UserFilter &$uf)
586 {
587 /** Tables shortcuts :
588 * pc for profile corps,
589 * pceo for profile_corps_enum - orginal
590 * pcec for profile_corps_enum - current
591 */
592 $sub = $uf->addCorpsFilter($this->type);
593 $cond = $sub . '.abbreviation = ' . $corps;
594 return $cond;
595 }
596}
8363588b 597// }}}
4083b126 598
8363588b 599// {{{ class UFC_Corps_Rank
4083b126
RB
600/** Filters users based on their rank in the corps
601 * @param $rank Rank we are looking for (abbreviation)
602 */
603class UFC_Corps_Rank implements UserFilterCondition
604{
605 private $rank;
606 public function __construct($rank)
607 {
608 $this->rank = $rank;
609 }
610
611 public function buildCondition(UserFilter &$uf)
612 {
613 /** Tables shortcuts :
614 * pcr for profile_corps_rank
615 */
616 $sub = $uf->addCorpsRankFilter();
617 $cond = $sub . '.abbreviation = ' . $rank;
618 return $cond;
619 }
620}
8363588b 621// }}}
4083b126 622
6a99c3ac
RB
623// {{{ class UFC_Job_Company
624/** Filters users based on the company they belong to
625 * @param $type The field being searched (self::JOBID, self::JOBNAME or self::JOBACRONYM)
626 * @param $value The searched value
627 */
628class UFC_Job_Company extends UserFilterCondition
629{
630 const JOBID = 'id';
631 const JOBNAME = 'name';
632 const JOBACRONYM = 'acronym';
633
634 private $type;
635 private $value;
636
637 public function __construct($type, $value)
638 {
639 $this->assertType($type);
640 $this->type = $type;
641 $this->value = $value;
642 }
643
644 private function assertType($type)
645 {
646 if ($type != self::JOBID && $type != self::JOBNAME && $type != self::JOBACRONYM) {
647 Platal::page()->killError("Type de recherche non valide");
648 }
649 }
650
651 public function buildCondition(UserFilter &$uf)
652 {
653 $sub = $uf->addJobCompanyFilter();
654 $cond = $sub . '.' . $this->type . ' = ' . XDB::format('{?}', $this->value);
655 return $cond;
656 }
657}
658// }}}
659
660// {{{ class UFC_Job_Sectorization
661/** Filters users based on the ((sub)sub)sector they work in
662 * @param $sector The sector searched
663 * @param $subsector The subsector
664 * @param $subsubsector The subsubsector
665 */
666class UFC_Job_Sectorization extends UserFilterCondition
667{
668
669 private $sector;
670 private $subsector;
671 private $subsubsector;
672
673 public function __construct($sector = null, $subsector = null, $subsubsector = null)
674 {
675 $this->sector = $sector;
676 $this->subsector = $subsector;
677 $this->subsubsector = $subsubsector;
678 }
679
680 public function buildCondition(UserFilter &$uf)
681 {
682 // No need to add the JobFilter, it will be done by addJobSectorizationFilter
683 $conds = array();
684 if ($this->sector !== null) {
685 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SECTOR);
686 $conds[] = $sub . '.id = ' . XDB::format('{?}', $this->sector);
687 }
688 if ($this->subsector !== null) {
689 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSECTOR);
690 $conds[] = $sub . '.id = ' . XDB::format('{?}', $this->subsector);
691 }
692 if ($this->subsubsector !== null) {
693 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSUBSECTOR);
694 $conds[] = $sub . '.id = ' . XDB::format('{?}', $this->subsubsector);
695 }
696 return implode(' AND ', $conds);
697 }
698}
699// }}}
700
701// {{{ class UFC_Job_Description
702/** Filters users based on their job description
703 * @param $description The text being searched for
704 * @param $fields The fields to search for (user-defined, ((sub|)sub|)sector)
705 */
706class UFC_Job_Description extends UserFilterCondition
707{
708
709 /** Meta-filters
710 * Built with binary OR on UserFilter::JOB_*
711 */
712 const ANY = 31;
713 const SECTORIZATION = 15;
714
715 private $description;
716 private $fields;
717
718 public function __construct($description)
719 {
720 $this->fields = $fields;
721 $this->description = $description;
722 }
723
724 public function buildCondition(UserFilter &$uf)
725 {
726 $conds = array();
727 if ($this->fields & UserFilter::JOB_USERDEFINED) {
728 $sub = $uf->addJobFilter();
729 $conds[] = $sub . '.description LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
730 }
731 if ($this->fields & UserFilter::JOB_SECTOR) {
732 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SECTOR);
733 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
734 }
735 if ($this->fields & UserFilter::JOB_SUBSECTOR) {
736 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSECTOR);
737 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
738 }
739 if ($this->fields & UserFilter::JOB_SUBSUBSECTOR) {
740 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSUBSECTOR);
741 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
742 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_ALTERNATES);
743 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
744 }
745 return implode(' OR ', $conds);
746 }
747}
748// }}}
749
8363588b 750// {{{ class UFC_UserRelated
53eae167
RB
751/** Filters users based on a relation toward on user
752 * @param $user User to which searched users are related
753 */
4e7bf1e0 754abstract class UFC_UserRelated implements UserFilterCondition
3f42a6ad 755{
009b8ab7
FB
756 protected $user;
757 public function __construct(PlUser &$user)
758 {
759 $this->user =& $user;
3f42a6ad 760 }
4e7bf1e0 761}
8363588b 762// }}}
3f42a6ad 763
8363588b 764// {{{ class UFC_Contact
53eae167
RB
765/** Filters users who belongs to selected user's contacts
766 */
4e7bf1e0
FB
767class UFC_Contact extends UFC_UserRelated
768{
3f42a6ad
FB
769 public function buildCondition(UserFilter &$uf)
770 {
009b8ab7 771 $sub = $uf->addContactFilter($this->user->id());
3f42a6ad
FB
772 return 'c' . $sub . '.contact IS NOT NULL';
773 }
774}
8363588b 775// }}}
3f42a6ad 776
8363588b 777// {{{ class UFC_WatchRegistration
53eae167
RB
778/** Filters users being watched by selected user
779 */
4e7bf1e0
FB
780class UFC_WatchRegistration extends UFC_UserRelated
781{
782 public function buildCondition(UserFilter &$uf)
783 {
009b8ab7
FB
784 if (!$this->user->watch('registration')) {
785 return UserFilterCondition::COND_FALSE;
786 }
787 $uids = $this->user->watchUsers();
788 if (count($uids) == 0) {
789 return UserFilterCondition::COND_FALSE;
790 } else {
07eb5b0e 791 return '$UID IN ' . XDB::formatArray($uids);
009b8ab7 792 }
4e7bf1e0
FB
793 }
794}
8363588b 795// }}}
4e7bf1e0 796
8363588b 797// {{{ class UFC_WatchPromo
53eae167
RB
798/** Filters users belonging to a promo watched by selected user
799 * @param $user Selected user (the one watching promo)
800 * @param $grade Formation the user is watching
801 */
4e7bf1e0
FB
802class UFC_WatchPromo extends UFC_UserRelated
803{
804 private $grade;
009b8ab7 805 public function __construct(PlUser &$user, $grade = UserFilter::GRADE_ING)
4e7bf1e0 806 {
009b8ab7 807 parent::__construct($user);
4e7bf1e0
FB
808 $this->grade = $grade;
809 }
810
811 public function buildCondition(UserFilter &$uf)
812 {
009b8ab7
FB
813 $promos = $this->user->watchPromos();
814 if (count($promos) == 0) {
815 return UserFilterCondition::COND_FALSE;
816 } else {
817 $sube = $uf->addEducationFilter(true, $this->grade);
818 $field = 'pe' . $sube . '.' . UserFilter::promoYear($this->grade);
07eb5b0e 819 return $field . ' IN ' . XDB::formatArray($promos);
009b8ab7 820 }
4e7bf1e0
FB
821 }
822}
8363588b 823// }}}
4e7bf1e0 824
8363588b 825// {{{ class UFC_WatchContact
53eae167
RB
826/** Filters users watched by selected user
827 */
009b8ab7 828class UFC_WatchContact extends UFC_Contact
4e7bf1e0
FB
829{
830 public function buildCondition(UserFilter &$uf)
831 {
009b8ab7
FB
832 if (!$this->user->watchContacts()) {
833 return UserFilterCondition::COND_FALSE;
834 }
835 return parent::buildCondition($uf);
4e7bf1e0
FB
836 }
837}
8363588b 838// }}}
4e7bf1e0
FB
839
840
d865c296
FB
841/******************
842 * ORDERS
843 ******************/
844
8363588b 845// {{{ class UserFilterOrder
d865c296
FB
846abstract class UserFilterOrder
847{
848 protected $desc = false;
009b8ab7
FB
849 public function __construct($desc = false)
850 {
851 $this->desc = $desc;
852 }
d865c296
FB
853
854 public function buildSort(UserFilter &$uf)
855 {
856 $sel = $this->getSortTokens($uf);
857 if (!is_array($sel)) {
858 $sel = array($sel);
859 }
860 if ($this->desc) {
861 foreach ($sel as $k=>$s) {
862 $sel[$k] = $s . ' DESC';
863 }
864 }
865 return $sel;
866 }
867
868 abstract protected function getSortTokens(UserFilter &$uf);
869}
8363588b 870// }}}
d865c296 871
8363588b 872// {{{ class UFO_Promo
53eae167
RB
873/** Orders users by promo
874 * @param $grade Formation whose promo users should be sorted by (restricts results to users of that formation)
875 * @param $desc Whether sort is descending
876 */
d865c296
FB
877class UFO_Promo extends UserFilterOrder
878{
879 private $grade;
880
881 public function __construct($grade = null, $desc = false)
882 {
009b8ab7 883 parent::__construct($desc);
d865c296 884 $this->grade = $grade;
d865c296
FB
885 }
886
887 protected function getSortTokens(UserFilter &$uf)
888 {
889 if (UserFilter::isGrade($this->grade)) {
890 $sub = $uf->addEducationFilter($this->grade);
891 return 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
892 } else {
893 $sub = $uf->addDisplayFilter();
894 return 'pd' . $sub . '.promo';
895 }
896 }
897}
8363588b 898// }}}
d865c296 899
8363588b 900// {{{ class UFO_Name
53eae167
RB
901/** Sorts users by name
902 * @param $type Type of name on which to sort (firstname, ...)
903 * @param $variant Variant of that name to user (marital, ordinary, ...)
904 * @param $particle Set to true if particles should be included in the sorting order
905 * @param $desc If sort order should be descending
906 */
d865c296
FB
907class UFO_Name extends UserFilterOrder
908{
909 private $type;
910 private $variant;
911 private $particle;
912
913 public function __construct($type, $variant = null, $particle = false, $desc = false)
914 {
009b8ab7 915 parent::__construct($desc);
d865c296
FB
916 $this->type = $type;
917 $this->variant = $variant;
918 $this->particle = $particle;
d865c296
FB
919 }
920
921 protected function getSortTokens(UserFilter &$uf)
922 {
923 if (UserFilter::isDisplayName($this->type)) {
924 $sub = $uf->addDisplayFilter();
925 return 'pd' . $sub . '.' . $this->type;
926 } else {
927 $sub = $uf->addNameFilter($this->type, $this->variant);
928 if ($this->particle) {
929 return 'CONCAT(pn' . $sub . '.particle, \' \', pn' . $sub . '.name)';
930 } else {
931 return 'pn' . $sub . '.name';
932 }
933 }
934 }
935}
8363588b 936// }}}
d865c296 937
8363588b 938// {{{ class UFO_Registration
53eae167
RB
939/** Sorts users based on registration date
940 */
38c6fe96
FB
941class UFO_Registration extends UserFilterOrder
942{
009b8ab7 943 protected function getSortTokens(UserFilter &$uf)
38c6fe96 944 {
009b8ab7 945 return 'a.registration_date';
38c6fe96 946 }
009b8ab7 947}
8363588b 948// }}}
38c6fe96 949
8363588b 950// {{{ class UFO_Birthday
53eae167
RB
951/** Sorts users based on next birthday date
952 */
009b8ab7
FB
953class UFO_Birthday extends UserFilterOrder
954{
38c6fe96
FB
955 protected function getSortTokens(UserFilter &$uf)
956 {
009b8ab7 957 return 'p.next_birthday';
38c6fe96
FB
958 }
959}
8363588b 960// }}}
38c6fe96 961
8363588b 962// {{{ class UFO_ProfileUpdate
53eae167
RB
963/** Sorts users based on last profile update
964 */
009b8ab7
FB
965class UFO_ProfileUpdate extends UserFilterOrder
966{
967 protected function getSortTokens(UserFilter &$uf)
968 {
969 return 'p.last_change';
970 }
971}
8363588b 972// }}}
009b8ab7 973
8363588b 974// {{{ class UFO_Death
53eae167
RB
975/** Sorts users based on death date
976 */
009b8ab7
FB
977class UFO_Death extends UserFilterOrder
978{
979 protected function getSortTokens(UserFilter &$uf)
980 {
981 return 'p.deathdate';
982 }
983}
8363588b 984// }}}
009b8ab7
FB
985
986
d865c296
FB
987/***********************************
988 *********************************
989 USER FILTER CLASS
990 *********************************
991 ***********************************/
992
8363588b 993// {{{ class UserFilter
a087cc8d
FB
994class UserFilter
995{
d865c296
FB
996 static private $joinMethods = array();
997
a087cc8d 998 private $root;
24e08e33 999 private $sort = array();
784745ce 1000 private $query = null;
24e08e33 1001 private $orderby = null;
784745ce 1002
aa21c568 1003 private $lastcount = null;
d865c296 1004
24e08e33 1005 public function __construct($cond = null, $sort = null)
5dd9d823 1006 {
d865c296
FB
1007 if (empty(self::$joinMethods)) {
1008 $class = new ReflectionClass('UserFilter');
1009 foreach ($class->getMethods() as $method) {
1010 $name = $method->getName();
1011 if (substr($name, -5) == 'Joins' && $name != 'buildJoins') {
1012 self::$joinMethods[] = $name;
1013 }
1014 }
1015 }
5dd9d823
FB
1016 if (!is_null($cond)) {
1017 if ($cond instanceof UserFilterCondition) {
1018 $this->setCondition($cond);
1019 }
1020 }
24e08e33
FB
1021 if (!is_null($sort)) {
1022 if ($sort instanceof UserFilterOrder) {
1023 $this->addSort($sort);
d865c296
FB
1024 } else if (is_array($sort)) {
1025 foreach ($sort as $s) {
1026 $this->addSort($s);
1027 }
24e08e33
FB
1028 }
1029 }
5dd9d823
FB
1030 }
1031
784745ce
FB
1032 private function buildQuery()
1033 {
d865c296
FB
1034 if (is_null($this->orderby)) {
1035 $orders = array();
1036 foreach ($this->sort as $sort) {
1037 $orders = array_merge($orders, $sort->buildSort($this));
1038 }
1039 if (count($orders) == 0) {
1040 $this->orderby = '';
1041 } else {
1042 $this->orderby = 'ORDER BY ' . implode(', ', $orders);
1043 }
1044 }
784745ce
FB
1045 if (is_null($this->query)) {
1046 $where = $this->root->buildCondition($this);
1047 $joins = $this->buildJoins();
1048 $this->query = 'FROM accounts AS a
eb1449b8
FB
1049 LEFT JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET(\'owner\', ap.perms))
1050 LEFT JOIN profiles AS p ON (p.pid = ap.pid)
784745ce
FB
1051 ' . $joins . '
1052 WHERE (' . $where . ')';
1053 }
1054 }
1055
1056 private function formatJoin(array $joins)
1057 {
1058 $str = '';
1059 foreach ($joins as $key => $infos) {
1060 $mode = $infos[0];
1061 $table = $infos[1];
1062 if ($mode == 'inner') {
1063 $str .= 'INNER JOIN ';
1064 } else if ($mode == 'left') {
1065 $str .= 'LEFT JOIN ';
1066 } else {
1067 Platal::page()->kill("Join mode error");
1068 }
1069 $str .= $table . ' AS ' . $key;
1070 if (isset($infos[2])) {
4927ee54 1071 $str .= ' ON (' . str_replace(array('$ME', '$PID', '$UID'), array($key, 'p.pid', 'a.uid'), $infos[2]) . ')';
784745ce
FB
1072 }
1073 $str .= "\n";
1074 }
1075 return $str;
1076 }
1077
1078 private function buildJoins()
1079 {
d865c296
FB
1080 $joins = array();
1081 foreach (self::$joinMethods as $method) {
1082 $joins = array_merge($joins, $this->$method());
1083 }
784745ce
FB
1084 return $this->formatJoin($joins);
1085 }
a087cc8d 1086
d865c296
FB
1087 private function getUIDList($uids = null, $count = null, $offset = null)
1088 {
1089 $this->buildQuery();
1090 $limit = '';
1091 if (!is_null($count)) {
1092 if (!is_null($offset)) {
76cbe885 1093 $limit = XDB::format('LIMIT {?}, {?}', (int)$offset, (int)$count);
d865c296 1094 } else {
76cbe885 1095 $limit = XDB::format('LIMIT {?}', (int)$count);
d865c296
FB
1096 }
1097 }
1098 $cond = '';
1099 if (!is_null($uids)) {
07eb5b0e 1100 $cond = ' AND a.uid IN ' . XDB::formatArray($uids);
d865c296
FB
1101 }
1102 $fetched = XDB::fetchColumn('SELECT SQL_CALC_FOUND_ROWS a.uid
1103 ' . $this->query . $cond . '
1104 GROUP BY a.uid
1105 ' . $this->orderby . '
1106 ' . $limit);
1107 $this->lastcount = (int)XDB::fetchOneCell('SELECT FOUND_ROWS()');
1108 return $fetched;
1109 }
1110
a087cc8d
FB
1111 /** Check that the user match the given rule.
1112 */
1113 public function checkUser(PlUser &$user)
1114 {
784745ce
FB
1115 $this->buildQuery();
1116 $count = (int)XDB::fetchOneCell('SELECT COUNT(*)
1117 ' . $this->query . XDB::format(' AND a.uid = {?}', $user->id()));
1118 return $count == 1;
a087cc8d
FB
1119 }
1120
1121 /** Filter a list of user to extract the users matching the rule.
1122 */
d865c296 1123 public function filter(array $users, $count = null, $offset = null)
a087cc8d 1124 {
4927ee54
FB
1125 $this->buildQuery();
1126 $table = array();
1127 $uids = array();
1128 foreach ($users as $user) {
07eb5b0e
FB
1129 if ($user instanceof PlUser) {
1130 $uid = $user->id();
1131 } else {
1132 $uid = $user;
1133 }
1134 $uids[] = $uid;
1135 $table[$uid] = $user;
4927ee54 1136 }
d865c296 1137 $fetched = $this->getUIDList($uids, $count, $offset);
a087cc8d 1138 $output = array();
4927ee54
FB
1139 foreach ($fetched as $uid) {
1140 $output[] = $table[$uid];
a087cc8d
FB
1141 }
1142 return $output;
1143 }
1144
d865c296 1145 public function getUIDs($count = null, $offset = null)
4927ee54 1146 {
d865c296
FB
1147 return $this->getUIDList(null, $count, $offset);
1148 }
1149
1150 public function getUsers($count = null, $offset = null)
1151 {
1152 return User::getBulkUsersWithUIDs($this->getUIDs($count, $offset));
4927ee54
FB
1153 }
1154
d865c296 1155 public function getTotalCount()
4927ee54 1156 {
38c6fe96 1157 if (is_null($this->lastcount)) {
aa21c568 1158 $this->buildQuery();
7e735012
FB
1159 return (int)XDB::fetchOneCell('SELECT COUNT(DISTINCT a.uid)
1160 ' . $this->query);
38c6fe96
FB
1161 } else {
1162 return $this->lastcount;
1163 }
4927ee54
FB
1164 }
1165
a087cc8d
FB
1166 public function setCondition(UserFilterCondition &$cond)
1167 {
1168 $this->root =& $cond;
784745ce 1169 $this->query = null;
a087cc8d
FB
1170 }
1171
24e08e33
FB
1172 public function addSort(UserFilterOrder &$sort)
1173 {
d865c296
FB
1174 $this->sort[] = $sort;
1175 $this->orderby = null;
24e08e33
FB
1176 }
1177
a087cc8d
FB
1178 static public function getLegacy($promo_min, $promo_max)
1179 {
a087cc8d 1180 if ($promo_min != 0) {
784745ce 1181 $min = new UFC_Promo('>=', self::GRADE_ING, intval($promo_min));
5dd9d823
FB
1182 } else {
1183 $min = new UFC_True();
a087cc8d 1184 }
a087cc8d 1185 if ($promo_max != 0) {
784745ce 1186 $max = new UFC_Promo('<=', self::GRADE_ING, intval($promo_max));
a087cc8d 1187 } else {
5dd9d823 1188 $max = new UFC_True();
a087cc8d 1189 }
5dd9d823 1190 return new UserFilter(new UFC_And($min, $max));
a087cc8d 1191 }
784745ce 1192
07eb5b0e
FB
1193 static public function sortByName()
1194 {
1195 return array(new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1196 }
1197
1198 static public function sortByPromo()
1199 {
1200 return array(new UFO_Promo(), new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1201 }
1202
aa21c568
FB
1203 static private function getDBSuffix($string)
1204 {
1205 return preg_replace('/[^a-z0-9]/i', '', $string);
1206 }
1207
1208
1209 private $option = 0;
1210 private function register_optional(array &$table, $val)
1211 {
1212 if (is_null($val)) {
1213 $sub = $this->option++;
1214 $index = null;
1215 } else {
1216 $sub = self::getDBSuffix($val);
1217 $index = $val;
1218 }
1219 $sub = '_' . $sub;
1220 $table[$sub] = $index;
1221 return $sub;
1222 }
784745ce 1223
d865c296
FB
1224 /** DISPLAY
1225 */
38c6fe96 1226 const DISPLAY = 'display';
d865c296
FB
1227 private $pd = false;
1228 public function addDisplayFilter()
1229 {
1230 $this->pd = true;
1231 return '';
1232 }
1233
1234 private function displayJoins()
1235 {
1236 if ($this->pd) {
1237 return array('pd' => array('left', 'profile_display', '$ME.pid = $PID'));
1238 } else {
1239 return array();
1240 }
1241 }
1242
784745ce
FB
1243 /** NAMES
1244 */
d865c296 1245 /* name tokens */
784745ce
FB
1246 const LASTNAME = 'lastname';
1247 const FIRSTNAME = 'firstname';
1248 const NICKNAME = 'nickname';
1249 const PSEUDONYM = 'pseudonym';
1250 const NAME = 'name';
d865c296 1251 /* name variants */
784745ce
FB
1252 const VN_MARITAL = 'marital';
1253 const VN_ORDINARY = 'ordinary';
1254 const VN_OTHER = 'other';
1255 const VN_INI = 'ini';
d865c296
FB
1256 /* display names */
1257 const DN_FULL = 'directory_name';
1258 const DN_DISPLAY = 'yourself';
1259 const DN_YOURSELF = 'yourself';
1260 const DN_DIRECTORY = 'directory_name';
1261 const DN_PRIVATE = 'private_name';
1262 const DN_PUBLIC = 'public_name';
1263 const DN_SHORT = 'short_name';
1264 const DN_SORT = 'sort_name';
784745ce
FB
1265
1266 static public $name_variants = array(
1267 self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY),
d865c296
FB
1268 self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER)
1269 );
784745ce
FB
1270
1271 static public function assertName($name)
1272 {
1273 if (!Profile::getNameTypeId($name)) {
1274 Platal::page()->kill('Invalid name type');
1275 }
1276 }
1277
d865c296
FB
1278 static public function isDisplayName($name)
1279 {
1280 return $name == self::DN_FULL || $name == self::DN_DISPLAY
1281 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
1282 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
1283 || $name == self::DN_SHORT || $name == self::DN_SORT;
1284 }
1285
784745ce 1286 private $pn = array();
784745ce
FB
1287 public function addNameFilter($type, $variant = null)
1288 {
1289 if (!is_null($variant)) {
1290 $ft = $type . '_' . $variant;
1291 } else {
1292 $ft = $type;
1293 }
1294 $sub = '_' . $ft;
1295 self::assertName($ft);
1296
1297 if (!is_null($variant) && $variant == 'other') {
aa21c568 1298 $sub .= $this->option++;
784745ce
FB
1299 }
1300 $this->pn[$sub] = Profile::getNameTypeId($ft);
1301 return $sub;
1302 }
1303
1304 private function nameJoins()
1305 {
1306 $joins = array();
1307 foreach ($this->pn as $sub => $type) {
1308 $joins['pn' . $sub] = array('left', 'profile_name', '$ME.pid = $PID AND $ME.typeid = ' . $type);
1309 }
1310 return $joins;
1311 }
1312
1313
1314 /** EDUCATION
1315 */
1316 const GRADE_ING = 'Ing.';
1317 const GRADE_PHD = 'PhD';
1318 const GRADE_MST = 'M%';
1319 static public function isGrade($grade)
1320 {
38c6fe96 1321 return $grade == self::GRADE_ING || $grade == self::GRADE_PHD || $grade == self::GRADE_MST;
784745ce
FB
1322 }
1323
1324 static public function assertGrade($grade)
1325 {
1326 if (!self::isGrade($grade)) {
1327 Platal::page()->killError("Diplôme non valide");
1328 }
1329 }
1330
d865c296
FB
1331 static public function promoYear($grade)
1332 {
1333 // XXX: Definition of promotion for phds and masters might change in near future.
1334 return ($grade == UserFilter::GRADE_ING) ? 'entry_year' : 'grad_year';
1335 }
1336
784745ce
FB
1337 private $pepe = array();
1338 private $with_pee = false;
784745ce
FB
1339 public function addEducationFilter($x = false, $grade = null)
1340 {
1341 if (!$x) {
aa21c568
FB
1342 $index = $this->option;
1343 $sub = $this->option++;
784745ce
FB
1344 } else {
1345 self::assertGrade($grade);
1346 $index = $grade;
1347 $sub = $grade[0];
1348 $this->with_pee = true;
1349 }
1350 $sub = '_' . $sub;
1351 $this->pepe[$index] = $sub;
1352 return $sub;
1353 }
1354
1355 private function educationJoins()
1356 {
1357 $joins = array();
1358 if ($this->with_pee) {
1359 $joins['pee'] = array('inner', 'profile_education_enum', 'pee.abbreviation = \'X\'');
1360 }
1361 foreach ($this->pepe as $grade => $sub) {
1362 if ($this->isGrade($grade)) {
1363 $joins['pe' . $sub] = array('left', 'profile_education', '$ME.eduid = pee.id AND $ME.uid = $PID');
1364 $joins['pede' . $sub] = array('inner', 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid AND $ME.abbreviation LIKE ' .
1365 XDB::format('{?}', $grade));
1366 } else {
1367 $joins['pe' . $sub] = array('left', 'profile_education', '$ME.uid = $PID');
1368 $joins['pee' . $sub] = array('inner', 'profile_education_enum', '$ME.id = pe' . $sub . '.eduid');
1369 $joins['pede' . $sub] = array('inner', 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid');
1370 }
1371 }
1372 return $joins;
1373 }
4927ee54
FB
1374
1375
1376 /** GROUPS
1377 */
1378 private $gpm = array();
4927ee54
FB
1379 public function addGroupFilter($group = null)
1380 {
1381 if (!is_null($group)) {
1382 if (ctype_digit($group)) {
1383 $index = $sub = $group;
1384 } else {
1385 $index = $group;
aa21c568 1386 $sub = self::getDBSuffix($group);
4927ee54
FB
1387 }
1388 } else {
aa21c568 1389 $sub = 'group_' . $this->option++;
4927ee54
FB
1390 $index = null;
1391 }
1392 $sub = '_' . $sub;
1393 $this->gpm[$sub] = $index;
1394 return $sub;
1395 }
1396
1397 private function groupJoins()
1398 {
1399 $joins = array();
1400 foreach ($this->gpm as $sub => $key) {
1401 if (is_null($key)) {
1402 $joins['gpa' . $sub] = array('inner', 'groupex.asso');
1403 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
1404 } else if (ctype_digit($key)) {
1405 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = ' . $key);
1406 } else {
1407 $joins['gpa' . $sub] = array('inner', 'groupex.asso', XDB::format('$ME.diminutif = {?}', $key));
1408 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
1409 }
1410 }
1411 return $joins;
1412 }
aa21c568
FB
1413
1414 /** EMAILS
1415 */
1416 private $e = array();
1417 public function addEmailRedirectFilter($email = null)
1418 {
1419 return $this->register_optional($this->e, $email);
1420 }
1421
1422 private $ve = array();
1423 public function addVirtualEmailFilter($email = null)
1424 {
21401768 1425 $this->addAliasFilter(self::ALIAS_FORLIFE);
aa21c568
FB
1426 return $this->register_optional($this->ve, $email);
1427 }
1428
21401768
FB
1429 const ALIAS_BEST = 'bestalias';
1430 const ALIAS_FORLIFE = 'forlife';
aa21c568
FB
1431 private $al = array();
1432 public function addAliasFilter($alias = null)
1433 {
1434 return $this->register_optional($this->al, $alias);
1435 }
1436
1437 private function emailJoins()
1438 {
1439 global $globals;
1440 $joins = array();
1441 foreach ($this->e as $sub=>$key) {
1442 if (is_null($key)) {
1443 $joins['e' . $sub] = array('left', 'emails', '$ME.uid = $UID AND $ME.flags != \'filter\'');
1444 } else {
1445 $joins['e' . $sub] = array('left', 'emails', XDB::format('$ME.uid = $UID AND $ME.flags != \'filter\' AND $ME.email = {?}', $key));
1446 }
1447 }
21401768 1448 foreach ($this->al as $sub=>$key) {
aa21c568 1449 if (is_null($key)) {
21401768
FB
1450 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\')');
1451 } else if ($key == self::ALIAS_BEST) {
1452 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND FIND_IN_SET(\'bestalias\', $ME.flags)');
1453 } else if ($key == self::ALIAS_FORLIFE) {
1454 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type = \'a_vie\'');
aa21c568 1455 } else {
21401768 1456 $joins['al' . $sub] = array('left', 'aliases', XDB::format('$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND $ME.alias = {?}', $key));
aa21c568 1457 }
aa21c568 1458 }
21401768 1459 foreach ($this->ve as $sub=>$key) {
aa21c568 1460 if (is_null($key)) {
21401768 1461 $joins['v' . $sub] = array('left', 'virtual', '$ME.type = \'user\'');
aa21c568 1462 } else {
21401768 1463 $joins['v' . $sub] = array('left', 'virtual', XDB::format('$ME.type = \'user\' AND $ME.alias = {?}', $key));
aa21c568 1464 }
21401768
FB
1465 $joins['vr' . $sub] = array('left', 'virtual_redirect', XDB::format('$ME.vid = v' . $sub . '.vid
1466 AND ($ME.redirect IN (CONCAT(al_forlife.alias, \'@\', {?}),
1467 CONCAT(al_forlife.alias, \'@\', {?}),
1468 a.email))',
1469 $globals->mail->domain, $globals->mail->domain2));
aa21c568
FB
1470 }
1471 return $joins;
1472 }
3f42a6ad
FB
1473
1474
c4b24511
RB
1475 /** ADDRESSES
1476 */
1477 private $pa = false;
1478 public function addAddressFilter()
1479 {
1480 $this->pa = true;
1481 }
1482
1483 private function addressJoins()
1484 {
1485 $joins = array();
1486 if ($this->pa) {
1487 $joins['pa'] = array('left', 'profile_address', '$ME.PID = $PID');
1488 }
1489 return $joins;
1490 }
1491
1492
4083b126
RB
1493 /** CORPS
1494 */
1495
1496 private $pc = false;
1497 private $pce = array();
1498 private $pcr = false;
1499 public function addCorpsFilter($type)
1500 {
1501 $this->pc = true;
1502 if ($type == UFC_Corps::CURRENT) {
1503 $pce['pcec'] = 'current_corpsid';
1504 return 'pcec';
1505 } else if ($type == UFC_Corps::ORIGIN) {
1506 $pce['pceo'] = 'original_corpsid';
1507 return 'pceo';
1508 }
1509 }
1510
1511 public function addCorpsRankFilter()
1512 {
1513 $this->pc = true;
1514 $this->pcr = true;
1515 return 'pcr';
1516 }
1517
1518 private function corpsJoins()
1519 {
1520 $joins = array();
1521 if ($this->pc) {
1522 $joins['pc'] = array('left', 'profile_corps', '$ME.uid = $UID');
1523 }
1524 if ($this->pcr) {
1525 $joins['pcr'] = array('left', 'profile_corps_rank_enum', '$ME.id = pc.rankid');
1526 }
1527 foreach($this->pce as $sub => $field) {
1528 $joins[$sub] = array('left', 'profile_corps_enum', '$ME.id = pc.' . $field);
1529 }
1530 return $joins;
1531 }
1532
6a99c3ac
RB
1533 /** JOBS
1534 */
1535
1536 const JOB_SECTOR = 1;
1537 const JOB_SUBSECTOR = 2;
1538 const JOB_SUBSUBSECTOR = 4;
1539 const JOB_ALTERNATES = 8;
1540 const JOB_USERDEFINED = 16;
1541
1542 /** Joins :
1543 * pj => profile_job
1544 * pje => profile_job_enum
1545 * pjse => profile_job_sector_enum
1546 * pjsse => profile_job_subsector_enum
1547 * pjssse => profile_job_subsubsector_enum
1548 * pja => profile_job_alternates
1549 */
1550 private $with_pj = false;
1551 private $with_pje = false;
1552 private $with_pjse = false;
1553 private $with_pjsse = false;
1554 private $with_pjssse = false;
1555 private $with_pja = false;
1556
1557 public function addJobFilter()
1558 {
1559 $this->with_pj = true;
1560 return 'pj';
1561 }
1562
1563 public function addJobCompanyFilter()
1564 {
1565 $this->addJobFilter();
1566 $this->with_pje = true;
1567 return 'pje';
1568 }
1569
1570 public function addJobSectorizationFilter($type)
1571 {
1572 $this->addJobFilter();
1573 if ($type == self::JOB_SECTOR) {
1574 $this->with_pjse = true;
1575 return 'pjse';
1576 } else if ($type == self::JOB_SUBSECTOR) {
1577 $this->with_pjsse = true;
1578 return 'pjsse';
1579 } else if ($type == self::JOB_SUBSUBSECTOR) {
1580 $this->with_pjssse = true;
1581 return 'pjssse';
1582 } else if ($type == self::JOB_ALTERNATES) {
1583 $this->with_pja = true;
1584 return 'pja';
1585 }
1586 }
1587
1588 private function jobJoins()
1589 {
1590 $joins = array();
1591 if ($this->with_pj) {
1592 $joins['pj'] = array('left', 'profile_job', '$ME.uid = $UID');
1593 }
1594 if ($this->with_pje) {
1595 $joins['pje'] = array('left', 'profile_job_enum', '$ME.id = pj.jobid');
1596 }
1597 if ($this->with_pjse) {
1598 $joins['pjse'] = array('left', 'profile_job_sector_enum', '$ME.id = pj.sectorid');
1599 }
1600 if ($this->with_pjsse) {
1601 $joins['pjsse'] = array('left', 'profile_job_subsector_enum', '$ME.id = pj.subsectorid');
1602 }
1603 if ($this->with_pjssse) {
1604 $joins['pjssse'] = array('left', 'profile_job_subsubsector_enum', '$ME.id = pj.subsubsectorid');
1605 }
1606 if ($this->with_pja) {
1607 $joins['pja'] = array('left', 'profile_job_alternates', '$ME.subsubsectorid = pj.subsubsectorid');
1608 }
1609 return $joins;
1610 }
1611
3f42a6ad
FB
1612 /** CONTACTS
1613 */
1614 private $cts = array();
1615 public function addContactFilter($uid = null)
1616 {
1617 return $this->register_optional($this->cts, is_null($uid) ? null : 'user_' . $uid);
1618 }
1619
1620 private function contactJoins()
1621 {
1622 $joins = array();
1623 foreach ($this->cts as $sub=>$key) {
1624 if (is_null($key)) {
1625 $joins['c' . $sub] = array('left', 'contacts', '$ME.contact = $UID');
1626 } else {
1627 $joins['c' . $sub] = array('left', 'contacts', XDB::format('$ME.uid = {?} AND $ME.contact = $UID', substr($key, 5)));
1628 }
1629 }
1630 return $joins;
1631 }
4e7bf1e0
FB
1632
1633
1634 /** CARNET
1635 */
1636 private $wn = array();
1637 public function addWatchRegistrationFilter($uid = null)
1638 {
1639 return $this->register_optional($this->wn, is_null($uid) ? null : 'user_' . $uid);
1640 }
1641
1642 private $wp = array();
1643 public function addWatchPromoFilter($uid = null)
1644 {
1645 return $this->register_optional($this->wp, is_null($uid) ? null : 'user_' . $uid);
1646 }
1647
1648 private $w = array();
1649 public function addWatchFilter($uid = null)
1650 {
1651 return $this->register_optional($this->w, is_null($uid) ? null : 'user_' . $uid);
1652 }
1653
1654 private function watchJoins()
1655 {
1656 $joins = array();
1657 foreach ($this->w as $sub=>$key) {
1658 if (is_null($key)) {
1659 $joins['w' . $sub] = array('left', 'watch');
1660 } else {
1661 $joins['w' . $sub] = array('left', 'watch', XDB::format('$ME.uid = {?}', substr($key, 5)));
1662 }
1663 }
1664 foreach ($this->wn as $sub=>$key) {
1665 if (is_null($key)) {
1666 $joins['wn' . $sub] = array('left', 'watch_nonins', '$ME.ni_id = $UID');
1667 } else {
1668 $joins['wn' . $sub] = array('left', 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
1669 }
1670 }
1671 foreach ($this->wn as $sub=>$key) {
1672 if (is_null($key)) {
1673 $joins['wn' . $sub] = array('left', 'watch_nonins', '$ME.ni_id = $UID');
1674 } else {
1675 $joins['wn' . $sub] = array('left', 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
1676 }
1677 }
1678 foreach ($this->wp as $sub=>$key) {
1679 if (is_null($key)) {
1680 $joins['wp' . $sub] = array('left', 'watch_promo');
1681 } else {
1682 $joins['wp' . $sub] = array('left', 'watch_promo', XDB::format('$ME.uid = {?}', substr($key, 5)));
1683 }
1684 }
1685 return $joins;
1686 }
a087cc8d 1687}
8363588b 1688// }}}
3f42a6ad 1689
a087cc8d
FB
1690// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1691?>