Add UFC_Medal
[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
0a2e9c74
RB
750// {{{ class UFC_Networking
751/** Filters users based on network identity (IRC, ...)
752 * @param $type Type of network (-1 for any)
753 * @param $value Value to search
754 */
755class UFC_Networking extends UserFilterCondition
756{
757 private $type;
758 private $value;
759
760 public function __construct($type, $value)
761 {
762 $this->type = $type;
763 $this->value = $value;
764 }
765
766 public function buildCondition(UserFilter &$uf)
767 {
768 $sub = $uf->addNetworkingFilter();
769 $conds = array();
770 $conds[] = $sub . '.address = ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->value);
771 if ($this->type != -1) {
772 $conds[] = $sub . '.network_type = ' . XDB::format('{?}', $this->type);
773 }
774 return implode(' AND ', $conds);
775 }
776}
777// }}}
778
6d62969e
RB
779// {{{ class UFC_Phone
780/** Filters users based on their phone number
781 * @param $num_type Type of number (pro/user/home)
782 * @param $phone_type Type of phone (fixed/mobile/fax)
783 * @param $number Phone number
784 */
785class UFC_Phone extends UserFilterCondition
786{
787 const NUM_PRO = 'pro';
788 const NUM_USER = 'user';
789 const NUM_HOME = 'address';
790 const NUM_ANY = 'any';
791
792 const PHONE_FIXED = 'fixed';
793 const PHONE_MOBILE = 'mobile';
794 const PHONE_FAX = 'fax';
795 const PHONE_ANY = 'any';
796
797 private $num_type;
798 private $phone_type;
799 private $number;
800
801 public function __construct($number, $num_type = self::NUM_ANY, $phone_type = self::PHONE_ANY)
802 {
803 require_once('profil.inc.php');
804 $this->number = $number;
805 $this->num_type = $num_type;
806 $this->phone_type = format_phone_number($phone_type);
807 }
808
809 public function buildCondition(UserFilter &$uf)
810 {
811 $sub = $uf->addPhoneFilter();
812 $conds = array();
813 $conds[] = $sub . '.search_tel = ' . XDB::format('{?}', $this->number);
814 if ($this->num_type != self::NUM_ANY) {
815 $conds[] = $sub . '.link_type = ' . XDB::format('{?}', $this->num_type);
816 }
817 if ($this->phone_type != self::PHONE_ANY) {
818 $conds[] = $sub . '.tel_type = ' . XDB::format('{?}', $this->phone_type);
819 }
820 return implode(' AND ', $conds);
821 }
822}
823// }}}
824
ceb512d2
RB
825// {{{ class UFC_Medal
826/** Filters users based on their medals
827 * @param $medal ID of the medal
828 * @param $grade Grade of the medal (null for 'any')
829 */
830class UFC_Medal extends UserFilterCondition
831{
832 private $medal;
833 private $grade;
834
835 public function __construct($medal, $grade = null)
836 {
837 $this->medal = $medal;
838 $this->grade = $grade;
839 }
840
841 public function buildCondition(UserFilter &$uf)
842 {
843 $conds = array();
844 $sub = $uf->addMedalFilter();
845 $conds[] = $sub . '.mid = ' . XDB::format('{?}', $this->medal);
846 if ($this->grade != null) {
847 $conds[] = $sub . '.gid = ' . XDB::format('{?}', $this->grade);
848 }
849 return implode(' AND ', $conds);
850 }
851}
852// }}}
853
8363588b 854// {{{ class UFC_UserRelated
53eae167
RB
855/** Filters users based on a relation toward on user
856 * @param $user User to which searched users are related
857 */
4e7bf1e0 858abstract class UFC_UserRelated implements UserFilterCondition
3f42a6ad 859{
009b8ab7
FB
860 protected $user;
861 public function __construct(PlUser &$user)
862 {
863 $this->user =& $user;
3f42a6ad 864 }
4e7bf1e0 865}
8363588b 866// }}}
3f42a6ad 867
8363588b 868// {{{ class UFC_Contact
53eae167
RB
869/** Filters users who belongs to selected user's contacts
870 */
4e7bf1e0
FB
871class UFC_Contact extends UFC_UserRelated
872{
3f42a6ad
FB
873 public function buildCondition(UserFilter &$uf)
874 {
009b8ab7 875 $sub = $uf->addContactFilter($this->user->id());
3f42a6ad
FB
876 return 'c' . $sub . '.contact IS NOT NULL';
877 }
878}
8363588b 879// }}}
3f42a6ad 880
8363588b 881// {{{ class UFC_WatchRegistration
53eae167
RB
882/** Filters users being watched by selected user
883 */
4e7bf1e0
FB
884class UFC_WatchRegistration extends UFC_UserRelated
885{
886 public function buildCondition(UserFilter &$uf)
887 {
009b8ab7
FB
888 if (!$this->user->watch('registration')) {
889 return UserFilterCondition::COND_FALSE;
890 }
891 $uids = $this->user->watchUsers();
892 if (count($uids) == 0) {
893 return UserFilterCondition::COND_FALSE;
894 } else {
07eb5b0e 895 return '$UID IN ' . XDB::formatArray($uids);
009b8ab7 896 }
4e7bf1e0
FB
897 }
898}
8363588b 899// }}}
4e7bf1e0 900
8363588b 901// {{{ class UFC_WatchPromo
53eae167
RB
902/** Filters users belonging to a promo watched by selected user
903 * @param $user Selected user (the one watching promo)
904 * @param $grade Formation the user is watching
905 */
4e7bf1e0
FB
906class UFC_WatchPromo extends UFC_UserRelated
907{
908 private $grade;
009b8ab7 909 public function __construct(PlUser &$user, $grade = UserFilter::GRADE_ING)
4e7bf1e0 910 {
009b8ab7 911 parent::__construct($user);
4e7bf1e0
FB
912 $this->grade = $grade;
913 }
914
915 public function buildCondition(UserFilter &$uf)
916 {
009b8ab7
FB
917 $promos = $this->user->watchPromos();
918 if (count($promos) == 0) {
919 return UserFilterCondition::COND_FALSE;
920 } else {
921 $sube = $uf->addEducationFilter(true, $this->grade);
922 $field = 'pe' . $sube . '.' . UserFilter::promoYear($this->grade);
07eb5b0e 923 return $field . ' IN ' . XDB::formatArray($promos);
009b8ab7 924 }
4e7bf1e0
FB
925 }
926}
8363588b 927// }}}
4e7bf1e0 928
8363588b 929// {{{ class UFC_WatchContact
53eae167
RB
930/** Filters users watched by selected user
931 */
009b8ab7 932class UFC_WatchContact extends UFC_Contact
4e7bf1e0
FB
933{
934 public function buildCondition(UserFilter &$uf)
935 {
009b8ab7
FB
936 if (!$this->user->watchContacts()) {
937 return UserFilterCondition::COND_FALSE;
938 }
939 return parent::buildCondition($uf);
4e7bf1e0
FB
940 }
941}
8363588b 942// }}}
4e7bf1e0
FB
943
944
d865c296
FB
945/******************
946 * ORDERS
947 ******************/
948
8363588b 949// {{{ class UserFilterOrder
d865c296
FB
950abstract class UserFilterOrder
951{
952 protected $desc = false;
009b8ab7
FB
953 public function __construct($desc = false)
954 {
955 $this->desc = $desc;
956 }
d865c296
FB
957
958 public function buildSort(UserFilter &$uf)
959 {
960 $sel = $this->getSortTokens($uf);
961 if (!is_array($sel)) {
962 $sel = array($sel);
963 }
964 if ($this->desc) {
965 foreach ($sel as $k=>$s) {
966 $sel[$k] = $s . ' DESC';
967 }
968 }
969 return $sel;
970 }
971
972 abstract protected function getSortTokens(UserFilter &$uf);
973}
8363588b 974// }}}
d865c296 975
8363588b 976// {{{ class UFO_Promo
53eae167
RB
977/** Orders users by promo
978 * @param $grade Formation whose promo users should be sorted by (restricts results to users of that formation)
979 * @param $desc Whether sort is descending
980 */
d865c296
FB
981class UFO_Promo extends UserFilterOrder
982{
983 private $grade;
984
985 public function __construct($grade = null, $desc = false)
986 {
009b8ab7 987 parent::__construct($desc);
d865c296 988 $this->grade = $grade;
d865c296
FB
989 }
990
991 protected function getSortTokens(UserFilter &$uf)
992 {
993 if (UserFilter::isGrade($this->grade)) {
994 $sub = $uf->addEducationFilter($this->grade);
995 return 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
996 } else {
997 $sub = $uf->addDisplayFilter();
998 return 'pd' . $sub . '.promo';
999 }
1000 }
1001}
8363588b 1002// }}}
d865c296 1003
8363588b 1004// {{{ class UFO_Name
53eae167
RB
1005/** Sorts users by name
1006 * @param $type Type of name on which to sort (firstname, ...)
1007 * @param $variant Variant of that name to user (marital, ordinary, ...)
1008 * @param $particle Set to true if particles should be included in the sorting order
1009 * @param $desc If sort order should be descending
1010 */
d865c296
FB
1011class UFO_Name extends UserFilterOrder
1012{
1013 private $type;
1014 private $variant;
1015 private $particle;
1016
1017 public function __construct($type, $variant = null, $particle = false, $desc = false)
1018 {
009b8ab7 1019 parent::__construct($desc);
d865c296
FB
1020 $this->type = $type;
1021 $this->variant = $variant;
1022 $this->particle = $particle;
d865c296
FB
1023 }
1024
1025 protected function getSortTokens(UserFilter &$uf)
1026 {
1027 if (UserFilter::isDisplayName($this->type)) {
1028 $sub = $uf->addDisplayFilter();
1029 return 'pd' . $sub . '.' . $this->type;
1030 } else {
1031 $sub = $uf->addNameFilter($this->type, $this->variant);
1032 if ($this->particle) {
1033 return 'CONCAT(pn' . $sub . '.particle, \' \', pn' . $sub . '.name)';
1034 } else {
1035 return 'pn' . $sub . '.name';
1036 }
1037 }
1038 }
1039}
8363588b 1040// }}}
d865c296 1041
8363588b 1042// {{{ class UFO_Registration
53eae167
RB
1043/** Sorts users based on registration date
1044 */
38c6fe96
FB
1045class UFO_Registration extends UserFilterOrder
1046{
009b8ab7 1047 protected function getSortTokens(UserFilter &$uf)
38c6fe96 1048 {
009b8ab7 1049 return 'a.registration_date';
38c6fe96 1050 }
009b8ab7 1051}
8363588b 1052// }}}
38c6fe96 1053
8363588b 1054// {{{ class UFO_Birthday
53eae167
RB
1055/** Sorts users based on next birthday date
1056 */
009b8ab7
FB
1057class UFO_Birthday extends UserFilterOrder
1058{
38c6fe96
FB
1059 protected function getSortTokens(UserFilter &$uf)
1060 {
009b8ab7 1061 return 'p.next_birthday';
38c6fe96
FB
1062 }
1063}
8363588b 1064// }}}
38c6fe96 1065
8363588b 1066// {{{ class UFO_ProfileUpdate
53eae167
RB
1067/** Sorts users based on last profile update
1068 */
009b8ab7
FB
1069class UFO_ProfileUpdate extends UserFilterOrder
1070{
1071 protected function getSortTokens(UserFilter &$uf)
1072 {
1073 return 'p.last_change';
1074 }
1075}
8363588b 1076// }}}
009b8ab7 1077
8363588b 1078// {{{ class UFO_Death
53eae167
RB
1079/** Sorts users based on death date
1080 */
009b8ab7
FB
1081class UFO_Death extends UserFilterOrder
1082{
1083 protected function getSortTokens(UserFilter &$uf)
1084 {
1085 return 'p.deathdate';
1086 }
1087}
8363588b 1088// }}}
009b8ab7
FB
1089
1090
d865c296
FB
1091/***********************************
1092 *********************************
1093 USER FILTER CLASS
1094 *********************************
1095 ***********************************/
1096
8363588b 1097// {{{ class UserFilter
a087cc8d
FB
1098class UserFilter
1099{
d865c296
FB
1100 static private $joinMethods = array();
1101
a087cc8d 1102 private $root;
24e08e33 1103 private $sort = array();
784745ce 1104 private $query = null;
24e08e33 1105 private $orderby = null;
784745ce 1106
aa21c568 1107 private $lastcount = null;
d865c296 1108
24e08e33 1109 public function __construct($cond = null, $sort = null)
5dd9d823 1110 {
d865c296
FB
1111 if (empty(self::$joinMethods)) {
1112 $class = new ReflectionClass('UserFilter');
1113 foreach ($class->getMethods() as $method) {
1114 $name = $method->getName();
1115 if (substr($name, -5) == 'Joins' && $name != 'buildJoins') {
1116 self::$joinMethods[] = $name;
1117 }
1118 }
1119 }
5dd9d823
FB
1120 if (!is_null($cond)) {
1121 if ($cond instanceof UserFilterCondition) {
1122 $this->setCondition($cond);
1123 }
1124 }
24e08e33
FB
1125 if (!is_null($sort)) {
1126 if ($sort instanceof UserFilterOrder) {
1127 $this->addSort($sort);
d865c296
FB
1128 } else if (is_array($sort)) {
1129 foreach ($sort as $s) {
1130 $this->addSort($s);
1131 }
24e08e33
FB
1132 }
1133 }
5dd9d823
FB
1134 }
1135
784745ce
FB
1136 private function buildQuery()
1137 {
d865c296
FB
1138 if (is_null($this->orderby)) {
1139 $orders = array();
1140 foreach ($this->sort as $sort) {
1141 $orders = array_merge($orders, $sort->buildSort($this));
1142 }
1143 if (count($orders) == 0) {
1144 $this->orderby = '';
1145 } else {
1146 $this->orderby = 'ORDER BY ' . implode(', ', $orders);
1147 }
1148 }
784745ce
FB
1149 if (is_null($this->query)) {
1150 $where = $this->root->buildCondition($this);
1151 $joins = $this->buildJoins();
1152 $this->query = 'FROM accounts AS a
eb1449b8
FB
1153 LEFT JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET(\'owner\', ap.perms))
1154 LEFT JOIN profiles AS p ON (p.pid = ap.pid)
784745ce
FB
1155 ' . $joins . '
1156 WHERE (' . $where . ')';
1157 }
1158 }
1159
1160 private function formatJoin(array $joins)
1161 {
1162 $str = '';
1163 foreach ($joins as $key => $infos) {
1164 $mode = $infos[0];
1165 $table = $infos[1];
1166 if ($mode == 'inner') {
1167 $str .= 'INNER JOIN ';
1168 } else if ($mode == 'left') {
1169 $str .= 'LEFT JOIN ';
1170 } else {
1171 Platal::page()->kill("Join mode error");
1172 }
1173 $str .= $table . ' AS ' . $key;
1174 if (isset($infos[2])) {
4927ee54 1175 $str .= ' ON (' . str_replace(array('$ME', '$PID', '$UID'), array($key, 'p.pid', 'a.uid'), $infos[2]) . ')';
784745ce
FB
1176 }
1177 $str .= "\n";
1178 }
1179 return $str;
1180 }
1181
1182 private function buildJoins()
1183 {
d865c296
FB
1184 $joins = array();
1185 foreach (self::$joinMethods as $method) {
1186 $joins = array_merge($joins, $this->$method());
1187 }
784745ce
FB
1188 return $this->formatJoin($joins);
1189 }
a087cc8d 1190
d865c296
FB
1191 private function getUIDList($uids = null, $count = null, $offset = null)
1192 {
1193 $this->buildQuery();
1194 $limit = '';
1195 if (!is_null($count)) {
1196 if (!is_null($offset)) {
76cbe885 1197 $limit = XDB::format('LIMIT {?}, {?}', (int)$offset, (int)$count);
d865c296 1198 } else {
76cbe885 1199 $limit = XDB::format('LIMIT {?}', (int)$count);
d865c296
FB
1200 }
1201 }
1202 $cond = '';
1203 if (!is_null($uids)) {
07eb5b0e 1204 $cond = ' AND a.uid IN ' . XDB::formatArray($uids);
d865c296
FB
1205 }
1206 $fetched = XDB::fetchColumn('SELECT SQL_CALC_FOUND_ROWS a.uid
1207 ' . $this->query . $cond . '
1208 GROUP BY a.uid
1209 ' . $this->orderby . '
1210 ' . $limit);
1211 $this->lastcount = (int)XDB::fetchOneCell('SELECT FOUND_ROWS()');
1212 return $fetched;
1213 }
1214
a087cc8d
FB
1215 /** Check that the user match the given rule.
1216 */
1217 public function checkUser(PlUser &$user)
1218 {
784745ce
FB
1219 $this->buildQuery();
1220 $count = (int)XDB::fetchOneCell('SELECT COUNT(*)
1221 ' . $this->query . XDB::format(' AND a.uid = {?}', $user->id()));
1222 return $count == 1;
a087cc8d
FB
1223 }
1224
1225 /** Filter a list of user to extract the users matching the rule.
1226 */
d865c296 1227 public function filter(array $users, $count = null, $offset = null)
a087cc8d 1228 {
4927ee54
FB
1229 $this->buildQuery();
1230 $table = array();
1231 $uids = array();
1232 foreach ($users as $user) {
07eb5b0e
FB
1233 if ($user instanceof PlUser) {
1234 $uid = $user->id();
1235 } else {
1236 $uid = $user;
1237 }
1238 $uids[] = $uid;
1239 $table[$uid] = $user;
4927ee54 1240 }
d865c296 1241 $fetched = $this->getUIDList($uids, $count, $offset);
a087cc8d 1242 $output = array();
4927ee54
FB
1243 foreach ($fetched as $uid) {
1244 $output[] = $table[$uid];
a087cc8d
FB
1245 }
1246 return $output;
1247 }
1248
d865c296 1249 public function getUIDs($count = null, $offset = null)
4927ee54 1250 {
d865c296
FB
1251 return $this->getUIDList(null, $count, $offset);
1252 }
1253
1254 public function getUsers($count = null, $offset = null)
1255 {
1256 return User::getBulkUsersWithUIDs($this->getUIDs($count, $offset));
4927ee54
FB
1257 }
1258
d865c296 1259 public function getTotalCount()
4927ee54 1260 {
38c6fe96 1261 if (is_null($this->lastcount)) {
aa21c568 1262 $this->buildQuery();
7e735012
FB
1263 return (int)XDB::fetchOneCell('SELECT COUNT(DISTINCT a.uid)
1264 ' . $this->query);
38c6fe96
FB
1265 } else {
1266 return $this->lastcount;
1267 }
4927ee54
FB
1268 }
1269
a087cc8d
FB
1270 public function setCondition(UserFilterCondition &$cond)
1271 {
1272 $this->root =& $cond;
784745ce 1273 $this->query = null;
a087cc8d
FB
1274 }
1275
24e08e33
FB
1276 public function addSort(UserFilterOrder &$sort)
1277 {
d865c296
FB
1278 $this->sort[] = $sort;
1279 $this->orderby = null;
24e08e33
FB
1280 }
1281
a087cc8d
FB
1282 static public function getLegacy($promo_min, $promo_max)
1283 {
a087cc8d 1284 if ($promo_min != 0) {
784745ce 1285 $min = new UFC_Promo('>=', self::GRADE_ING, intval($promo_min));
5dd9d823
FB
1286 } else {
1287 $min = new UFC_True();
a087cc8d 1288 }
a087cc8d 1289 if ($promo_max != 0) {
784745ce 1290 $max = new UFC_Promo('<=', self::GRADE_ING, intval($promo_max));
a087cc8d 1291 } else {
5dd9d823 1292 $max = new UFC_True();
a087cc8d 1293 }
5dd9d823 1294 return new UserFilter(new UFC_And($min, $max));
a087cc8d 1295 }
784745ce 1296
07eb5b0e
FB
1297 static public function sortByName()
1298 {
1299 return array(new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1300 }
1301
1302 static public function sortByPromo()
1303 {
1304 return array(new UFO_Promo(), new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1305 }
1306
aa21c568
FB
1307 static private function getDBSuffix($string)
1308 {
1309 return preg_replace('/[^a-z0-9]/i', '', $string);
1310 }
1311
1312
1313 private $option = 0;
1314 private function register_optional(array &$table, $val)
1315 {
1316 if (is_null($val)) {
1317 $sub = $this->option++;
1318 $index = null;
1319 } else {
1320 $sub = self::getDBSuffix($val);
1321 $index = $val;
1322 }
1323 $sub = '_' . $sub;
1324 $table[$sub] = $index;
1325 return $sub;
1326 }
784745ce 1327
d865c296
FB
1328 /** DISPLAY
1329 */
38c6fe96 1330 const DISPLAY = 'display';
d865c296
FB
1331 private $pd = false;
1332 public function addDisplayFilter()
1333 {
1334 $this->pd = true;
1335 return '';
1336 }
1337
1338 private function displayJoins()
1339 {
1340 if ($this->pd) {
1341 return array('pd' => array('left', 'profile_display', '$ME.pid = $PID'));
1342 } else {
1343 return array();
1344 }
1345 }
1346
784745ce
FB
1347 /** NAMES
1348 */
d865c296 1349 /* name tokens */
784745ce
FB
1350 const LASTNAME = 'lastname';
1351 const FIRSTNAME = 'firstname';
1352 const NICKNAME = 'nickname';
1353 const PSEUDONYM = 'pseudonym';
1354 const NAME = 'name';
d865c296 1355 /* name variants */
784745ce
FB
1356 const VN_MARITAL = 'marital';
1357 const VN_ORDINARY = 'ordinary';
1358 const VN_OTHER = 'other';
1359 const VN_INI = 'ini';
d865c296
FB
1360 /* display names */
1361 const DN_FULL = 'directory_name';
1362 const DN_DISPLAY = 'yourself';
1363 const DN_YOURSELF = 'yourself';
1364 const DN_DIRECTORY = 'directory_name';
1365 const DN_PRIVATE = 'private_name';
1366 const DN_PUBLIC = 'public_name';
1367 const DN_SHORT = 'short_name';
1368 const DN_SORT = 'sort_name';
784745ce
FB
1369
1370 static public $name_variants = array(
1371 self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY),
d865c296
FB
1372 self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER)
1373 );
784745ce
FB
1374
1375 static public function assertName($name)
1376 {
1377 if (!Profile::getNameTypeId($name)) {
1378 Platal::page()->kill('Invalid name type');
1379 }
1380 }
1381
d865c296
FB
1382 static public function isDisplayName($name)
1383 {
1384 return $name == self::DN_FULL || $name == self::DN_DISPLAY
1385 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
1386 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
1387 || $name == self::DN_SHORT || $name == self::DN_SORT;
1388 }
1389
784745ce 1390 private $pn = array();
784745ce
FB
1391 public function addNameFilter($type, $variant = null)
1392 {
1393 if (!is_null($variant)) {
1394 $ft = $type . '_' . $variant;
1395 } else {
1396 $ft = $type;
1397 }
1398 $sub = '_' . $ft;
1399 self::assertName($ft);
1400
1401 if (!is_null($variant) && $variant == 'other') {
aa21c568 1402 $sub .= $this->option++;
784745ce
FB
1403 }
1404 $this->pn[$sub] = Profile::getNameTypeId($ft);
1405 return $sub;
1406 }
1407
1408 private function nameJoins()
1409 {
1410 $joins = array();
1411 foreach ($this->pn as $sub => $type) {
1412 $joins['pn' . $sub] = array('left', 'profile_name', '$ME.pid = $PID AND $ME.typeid = ' . $type);
1413 }
1414 return $joins;
1415 }
1416
1417
1418 /** EDUCATION
1419 */
1420 const GRADE_ING = 'Ing.';
1421 const GRADE_PHD = 'PhD';
1422 const GRADE_MST = 'M%';
1423 static public function isGrade($grade)
1424 {
38c6fe96 1425 return $grade == self::GRADE_ING || $grade == self::GRADE_PHD || $grade == self::GRADE_MST;
784745ce
FB
1426 }
1427
1428 static public function assertGrade($grade)
1429 {
1430 if (!self::isGrade($grade)) {
1431 Platal::page()->killError("Diplôme non valide");
1432 }
1433 }
1434
d865c296
FB
1435 static public function promoYear($grade)
1436 {
1437 // XXX: Definition of promotion for phds and masters might change in near future.
1438 return ($grade == UserFilter::GRADE_ING) ? 'entry_year' : 'grad_year';
1439 }
1440
784745ce
FB
1441 private $pepe = array();
1442 private $with_pee = false;
784745ce
FB
1443 public function addEducationFilter($x = false, $grade = null)
1444 {
1445 if (!$x) {
aa21c568
FB
1446 $index = $this->option;
1447 $sub = $this->option++;
784745ce
FB
1448 } else {
1449 self::assertGrade($grade);
1450 $index = $grade;
1451 $sub = $grade[0];
1452 $this->with_pee = true;
1453 }
1454 $sub = '_' . $sub;
1455 $this->pepe[$index] = $sub;
1456 return $sub;
1457 }
1458
1459 private function educationJoins()
1460 {
1461 $joins = array();
1462 if ($this->with_pee) {
1463 $joins['pee'] = array('inner', 'profile_education_enum', 'pee.abbreviation = \'X\'');
1464 }
1465 foreach ($this->pepe as $grade => $sub) {
1466 if ($this->isGrade($grade)) {
1467 $joins['pe' . $sub] = array('left', 'profile_education', '$ME.eduid = pee.id AND $ME.uid = $PID');
1468 $joins['pede' . $sub] = array('inner', 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid AND $ME.abbreviation LIKE ' .
1469 XDB::format('{?}', $grade));
1470 } else {
1471 $joins['pe' . $sub] = array('left', 'profile_education', '$ME.uid = $PID');
1472 $joins['pee' . $sub] = array('inner', 'profile_education_enum', '$ME.id = pe' . $sub . '.eduid');
1473 $joins['pede' . $sub] = array('inner', 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid');
1474 }
1475 }
1476 return $joins;
1477 }
4927ee54
FB
1478
1479
1480 /** GROUPS
1481 */
1482 private $gpm = array();
4927ee54
FB
1483 public function addGroupFilter($group = null)
1484 {
1485 if (!is_null($group)) {
1486 if (ctype_digit($group)) {
1487 $index = $sub = $group;
1488 } else {
1489 $index = $group;
aa21c568 1490 $sub = self::getDBSuffix($group);
4927ee54
FB
1491 }
1492 } else {
aa21c568 1493 $sub = 'group_' . $this->option++;
4927ee54
FB
1494 $index = null;
1495 }
1496 $sub = '_' . $sub;
1497 $this->gpm[$sub] = $index;
1498 return $sub;
1499 }
1500
1501 private function groupJoins()
1502 {
1503 $joins = array();
1504 foreach ($this->gpm as $sub => $key) {
1505 if (is_null($key)) {
1506 $joins['gpa' . $sub] = array('inner', 'groupex.asso');
1507 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
1508 } else if (ctype_digit($key)) {
1509 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = ' . $key);
1510 } else {
1511 $joins['gpa' . $sub] = array('inner', 'groupex.asso', XDB::format('$ME.diminutif = {?}', $key));
1512 $joins['gpm' . $sub] = array('left', 'groupex.membres', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
1513 }
1514 }
1515 return $joins;
1516 }
aa21c568
FB
1517
1518 /** EMAILS
1519 */
1520 private $e = array();
1521 public function addEmailRedirectFilter($email = null)
1522 {
1523 return $this->register_optional($this->e, $email);
1524 }
1525
1526 private $ve = array();
1527 public function addVirtualEmailFilter($email = null)
1528 {
21401768 1529 $this->addAliasFilter(self::ALIAS_FORLIFE);
aa21c568
FB
1530 return $this->register_optional($this->ve, $email);
1531 }
1532
21401768
FB
1533 const ALIAS_BEST = 'bestalias';
1534 const ALIAS_FORLIFE = 'forlife';
aa21c568
FB
1535 private $al = array();
1536 public function addAliasFilter($alias = null)
1537 {
1538 return $this->register_optional($this->al, $alias);
1539 }
1540
1541 private function emailJoins()
1542 {
1543 global $globals;
1544 $joins = array();
1545 foreach ($this->e as $sub=>$key) {
1546 if (is_null($key)) {
1547 $joins['e' . $sub] = array('left', 'emails', '$ME.uid = $UID AND $ME.flags != \'filter\'');
1548 } else {
1549 $joins['e' . $sub] = array('left', 'emails', XDB::format('$ME.uid = $UID AND $ME.flags != \'filter\' AND $ME.email = {?}', $key));
1550 }
1551 }
21401768 1552 foreach ($this->al as $sub=>$key) {
aa21c568 1553 if (is_null($key)) {
21401768
FB
1554 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\')');
1555 } else if ($key == self::ALIAS_BEST) {
1556 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND FIND_IN_SET(\'bestalias\', $ME.flags)');
1557 } else if ($key == self::ALIAS_FORLIFE) {
1558 $joins['al' . $sub] = array('left', 'aliases', '$ME.id = $UID AND $ME.type = \'a_vie\'');
aa21c568 1559 } else {
21401768 1560 $joins['al' . $sub] = array('left', 'aliases', XDB::format('$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND $ME.alias = {?}', $key));
aa21c568 1561 }
aa21c568 1562 }
21401768 1563 foreach ($this->ve as $sub=>$key) {
aa21c568 1564 if (is_null($key)) {
21401768 1565 $joins['v' . $sub] = array('left', 'virtual', '$ME.type = \'user\'');
aa21c568 1566 } else {
21401768 1567 $joins['v' . $sub] = array('left', 'virtual', XDB::format('$ME.type = \'user\' AND $ME.alias = {?}', $key));
aa21c568 1568 }
21401768
FB
1569 $joins['vr' . $sub] = array('left', 'virtual_redirect', XDB::format('$ME.vid = v' . $sub . '.vid
1570 AND ($ME.redirect IN (CONCAT(al_forlife.alias, \'@\', {?}),
1571 CONCAT(al_forlife.alias, \'@\', {?}),
1572 a.email))',
1573 $globals->mail->domain, $globals->mail->domain2));
aa21c568
FB
1574 }
1575 return $joins;
1576 }
3f42a6ad
FB
1577
1578
c4b24511
RB
1579 /** ADDRESSES
1580 */
1581 private $pa = false;
1582 public function addAddressFilter()
1583 {
1584 $this->pa = true;
1585 }
1586
1587 private function addressJoins()
1588 {
1589 $joins = array();
1590 if ($this->pa) {
1591 $joins['pa'] = array('left', 'profile_address', '$ME.PID = $PID');
1592 }
1593 return $joins;
1594 }
1595
1596
4083b126
RB
1597 /** CORPS
1598 */
1599
1600 private $pc = false;
1601 private $pce = array();
1602 private $pcr = false;
1603 public function addCorpsFilter($type)
1604 {
1605 $this->pc = true;
1606 if ($type == UFC_Corps::CURRENT) {
1607 $pce['pcec'] = 'current_corpsid';
1608 return 'pcec';
1609 } else if ($type == UFC_Corps::ORIGIN) {
1610 $pce['pceo'] = 'original_corpsid';
1611 return 'pceo';
1612 }
1613 }
1614
1615 public function addCorpsRankFilter()
1616 {
1617 $this->pc = true;
1618 $this->pcr = true;
1619 return 'pcr';
1620 }
1621
1622 private function corpsJoins()
1623 {
1624 $joins = array();
1625 if ($this->pc) {
1626 $joins['pc'] = array('left', 'profile_corps', '$ME.uid = $UID');
1627 }
1628 if ($this->pcr) {
1629 $joins['pcr'] = array('left', 'profile_corps_rank_enum', '$ME.id = pc.rankid');
1630 }
1631 foreach($this->pce as $sub => $field) {
1632 $joins[$sub] = array('left', 'profile_corps_enum', '$ME.id = pc.' . $field);
1633 }
1634 return $joins;
1635 }
1636
6a99c3ac
RB
1637 /** JOBS
1638 */
1639
1640 const JOB_SECTOR = 1;
1641 const JOB_SUBSECTOR = 2;
1642 const JOB_SUBSUBSECTOR = 4;
1643 const JOB_ALTERNATES = 8;
1644 const JOB_USERDEFINED = 16;
1645
1646 /** Joins :
1647 * pj => profile_job
1648 * pje => profile_job_enum
1649 * pjse => profile_job_sector_enum
1650 * pjsse => profile_job_subsector_enum
1651 * pjssse => profile_job_subsubsector_enum
1652 * pja => profile_job_alternates
1653 */
1654 private $with_pj = false;
1655 private $with_pje = false;
1656 private $with_pjse = false;
1657 private $with_pjsse = false;
1658 private $with_pjssse = false;
1659 private $with_pja = false;
1660
1661 public function addJobFilter()
1662 {
1663 $this->with_pj = true;
1664 return 'pj';
1665 }
1666
1667 public function addJobCompanyFilter()
1668 {
1669 $this->addJobFilter();
1670 $this->with_pje = true;
1671 return 'pje';
1672 }
1673
1674 public function addJobSectorizationFilter($type)
1675 {
1676 $this->addJobFilter();
1677 if ($type == self::JOB_SECTOR) {
1678 $this->with_pjse = true;
1679 return 'pjse';
1680 } else if ($type == self::JOB_SUBSECTOR) {
1681 $this->with_pjsse = true;
1682 return 'pjsse';
1683 } else if ($type == self::JOB_SUBSUBSECTOR) {
1684 $this->with_pjssse = true;
1685 return 'pjssse';
1686 } else if ($type == self::JOB_ALTERNATES) {
1687 $this->with_pja = true;
1688 return 'pja';
1689 }
1690 }
1691
1692 private function jobJoins()
1693 {
1694 $joins = array();
1695 if ($this->with_pj) {
1696 $joins['pj'] = array('left', 'profile_job', '$ME.uid = $UID');
1697 }
1698 if ($this->with_pje) {
1699 $joins['pje'] = array('left', 'profile_job_enum', '$ME.id = pj.jobid');
1700 }
1701 if ($this->with_pjse) {
1702 $joins['pjse'] = array('left', 'profile_job_sector_enum', '$ME.id = pj.sectorid');
1703 }
1704 if ($this->with_pjsse) {
1705 $joins['pjsse'] = array('left', 'profile_job_subsector_enum', '$ME.id = pj.subsectorid');
1706 }
1707 if ($this->with_pjssse) {
1708 $joins['pjssse'] = array('left', 'profile_job_subsubsector_enum', '$ME.id = pj.subsubsectorid');
1709 }
1710 if ($this->with_pja) {
1711 $joins['pja'] = array('left', 'profile_job_alternates', '$ME.subsubsectorid = pj.subsubsectorid');
1712 }
1713 return $joins;
1714 }
1715
0a2e9c74
RB
1716 /** NETWORKING
1717 */
1718
1719 private $with_pnw = false;
1720 public function addNetworkingFilter()
1721 {
1722 $this->with_pnw = true;
1723 return 'pnw';
1724 }
1725
1726 private function networkingJoins()
1727 {
1728 $joins = array();
1729 if ($this->with_pnw) {
1730 $joins['pnw'] = array('left', 'profile_networking', '$ME.uid = $UID');
1731 }
1732 return $joins;
1733 }
1734
6d62969e
RB
1735 /** PHONE
1736 */
1737
1738 private $with_phone = false;
1739
1740 public function addPhoneFilter()
1741 {
1742 $this->with_phone = true;
1743 return 'ptel';
1744 }
1745
1746 private function phoneJoins()
1747 {
1748 $joins = array();
1749 if ($this->with_phone) {
1750 $joins['ptel'] = array('left', 'profile_phone', '$ME.uid = $UID');
1751 }
1752 return $joins;
1753 }
1754
ceb512d2
RB
1755 /** MEDALS
1756 */
1757
1758 private $with_medals = false;
1759 public function addMedalFilter()
1760 {
1761 $this->with_medals = true;
1762 return 'pmed';
1763 }
1764
1765 private function medalJoins()
1766 {
1767 $joins = array();
1768 if ($this->with_medals) {
1769 $joins['pmed'] = array('left', 'profile_medals_sub', '$ME.uid = $UID');
1770 }
1771 return $joins;
1772 }
1773
3f42a6ad
FB
1774 /** CONTACTS
1775 */
1776 private $cts = array();
1777 public function addContactFilter($uid = null)
1778 {
1779 return $this->register_optional($this->cts, is_null($uid) ? null : 'user_' . $uid);
1780 }
1781
1782 private function contactJoins()
1783 {
1784 $joins = array();
1785 foreach ($this->cts as $sub=>$key) {
1786 if (is_null($key)) {
1787 $joins['c' . $sub] = array('left', 'contacts', '$ME.contact = $UID');
1788 } else {
1789 $joins['c' . $sub] = array('left', 'contacts', XDB::format('$ME.uid = {?} AND $ME.contact = $UID', substr($key, 5)));
1790 }
1791 }
1792 return $joins;
1793 }
4e7bf1e0
FB
1794
1795
1796 /** CARNET
1797 */
1798 private $wn = array();
1799 public function addWatchRegistrationFilter($uid = null)
1800 {
1801 return $this->register_optional($this->wn, is_null($uid) ? null : 'user_' . $uid);
1802 }
1803
1804 private $wp = array();
1805 public function addWatchPromoFilter($uid = null)
1806 {
1807 return $this->register_optional($this->wp, is_null($uid) ? null : 'user_' . $uid);
1808 }
1809
1810 private $w = array();
1811 public function addWatchFilter($uid = null)
1812 {
1813 return $this->register_optional($this->w, is_null($uid) ? null : 'user_' . $uid);
1814 }
1815
1816 private function watchJoins()
1817 {
1818 $joins = array();
1819 foreach ($this->w as $sub=>$key) {
1820 if (is_null($key)) {
1821 $joins['w' . $sub] = array('left', 'watch');
1822 } else {
1823 $joins['w' . $sub] = array('left', 'watch', XDB::format('$ME.uid = {?}', substr($key, 5)));
1824 }
1825 }
1826 foreach ($this->wn as $sub=>$key) {
1827 if (is_null($key)) {
1828 $joins['wn' . $sub] = array('left', 'watch_nonins', '$ME.ni_id = $UID');
1829 } else {
1830 $joins['wn' . $sub] = array('left', 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
1831 }
1832 }
1833 foreach ($this->wn as $sub=>$key) {
1834 if (is_null($key)) {
1835 $joins['wn' . $sub] = array('left', 'watch_nonins', '$ME.ni_id = $UID');
1836 } else {
1837 $joins['wn' . $sub] = array('left', 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
1838 }
1839 }
1840 foreach ($this->wp as $sub=>$key) {
1841 if (is_null($key)) {
1842 $joins['wp' . $sub] = array('left', 'watch_promo');
1843 } else {
1844 $joins['wp' . $sub] = array('left', 'watch_promo', XDB::format('$ME.uid = {?}', substr($key, 5)));
1845 }
1846 }
1847 return $joins;
1848 }
a087cc8d 1849}
8363588b 1850// }}}
3f42a6ad 1851
a087cc8d
FB
1852// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1853?>