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