Fix.
[platal.git] / classes / userfilter.php
CommitLineData
a087cc8d
FB
1<?php
2/***************************************************************************
d4c08d89 3 * Copyright (C) 2003-2010 Polytechnique.org *
a087cc8d
FB
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
2d83cac9
RB
28/** This interface describe objects which filter users based
29 * on various parameters.
30 * The parameters of the filter must be given to the constructor.
31 * The buildCondition function is called by UserFilter when
32 * actually building the query. That function must call
33 * $uf->addWheteverFilter so that the UserFilter makes
34 * adequate joins. It must return the 'WHERE' condition to use
35 * with the filter.
36 */
dcc63ed5 37interface UserFilterCondition extends PlFilterCondition
a087cc8d 38{
a087cc8d 39}
8363588b 40// }}}
a087cc8d 41
8363588b 42// {{{ class UFC_Profile
53eae167
RB
43/** Filters users who have a profile
44 */
eb1449b8
FB
45class UFC_Profile implements UserFilterCondition
46{
dcc63ed5 47 public function buildCondition(PlFilter &$uf)
eb1449b8
FB
48 {
49 return '$PID IS NOT NULL';
50 }
51}
8363588b 52// }}}
eb1449b8 53
ddba9d4f
RB
54// {{{ class UFC_Hruid
55/** Filters users based on their hruid
56 * @param $val Either an hruid, or a list of those
57 */
58class UFC_Hruid implements UserFilterCondition
59{
60 private $hruids;
61
62 public function __construct($val)
63 {
64 if (!is_array($val)) {
65 $val = array($val);
66 }
67 $this->hruids = $val;
68 }
69
70 public function buildCondition(PlFilter &$uf)
71 {
72 $ufc->requireAccounts();
73
74 return 'a.hruid IN ' . XDB::formatArray($this->hruids);
75 }
76}
77// }}}
78
d7ddf29b
RB
79// {{{ class UFC_Comment
80class UFC_Comment implements UserFilterCondition
81{
82 private $text;
83
84 public function __construct($text)
85 {
86 $this->text = $text;
87 }
88
89 public function buildCondition(PlFilter &$uf)
90 {
91 $uf->requireProfiles();
92 return 'p.freetext LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->text);
93 }
94}
95// }}}
96
8363588b 97// {{{ class UFC_Promo
5d2e55c7 98/** Filters users based on promotion
53eae167
RB
99 * @param $comparison Comparison operator (>, =, ...)
100 * @param $grade Formation on which to restrict, UserFilter::DISPLAY for "any formation"
5d2e55c7 101 * @param $promo Promotion on which the filter is based
53eae167 102 */
a087cc8d
FB
103class UFC_Promo implements UserFilterCondition
104{
a087cc8d
FB
105
106 private $grade;
107 private $promo;
108 private $comparison;
109
110 public function __construct($comparison, $grade, $promo)
111 {
112 $this->grade = $grade;
113 $this->comparison = $comparison;
114 $this->promo = $promo;
38c6fe96
FB
115 if ($this->grade != UserFilter::DISPLAY) {
116 UserFilter::assertGrade($this->grade);
117 }
a087cc8d
FB
118 }
119
dcc63ed5 120 public function buildCondition(PlFilter &$uf)
a087cc8d 121 {
38c6fe96
FB
122 if ($this->grade == UserFilter::DISPLAY) {
123 $sub = $uf->addDisplayFilter();
1a23a02b 124 return XDB::format('pd' . $sub . '.promo ' . $this->comparison . ' {?}', $this->promo);
38c6fe96
FB
125 } else {
126 $sub = $uf->addEducationFilter(true, $this->grade);
127 $field = 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
128 return $field . ' IS NOT NULL AND ' . $field . ' ' . $this->comparison . ' ' . XDB::format('{?}', $this->promo);
129 }
784745ce
FB
130 }
131}
8363588b 132// }}}
784745ce 133
fb3b6547 134// {{{ class UFC_EducationSchool
d7ddf29b
RB
135/** Filters users by formation
136 * @param $val The formation to search (either ID or array of IDs)
137 */
fb3b6547 138class UFC_EducationSchool implements UserFilterCondition
a7f8e48a 139{
d7ddf29b 140 private $val;
a7f8e48a 141
d7ddf29b 142 public function __construct($val)
a7f8e48a 143 {
d7ddf29b
RB
144 if (!is_array($val)) {
145 $val = array($val);
146 }
147 $this->val = $val;
a7f8e48a
RB
148 }
149
150 public function buildCondition(PlFilter &$uf)
151 {
152 $sub = $uf->addEducationFilter();
d7ddf29b 153 return 'pe' . $sub . '.eduid IN ' . XDB::formatArray($this->val);
a7f8e48a
RB
154 }
155}
156// }}}
157
fb3b6547
RB
158// {{{ class UFC_EducationDegree
159class UFC_EducationDegree implements UserFilterCondition
d7ddf29b
RB
160{
161 private $diploma;
162
163 public function __construct($diploma)
164 {
165 if (! is_array($diploma)) {
166 $diploma = array($diploma);
167 }
168 $this->diploma = $diploma;
169 }
170
171 public function buildCondition(PlFilter &$uf)
172 {
173 $sub = $uf->addEducationFilter();
174 return 'pee' . $sub . '.degreeid IN ' . XDB::formatArray($this->val);
175 }
176}
177// }}}
178
fb3b6547
RB
179// {{{ class UFC_EducationField
180class UFC_EducationField implements UserFilterCondition
d7ddf29b
RB
181{
182 private $val;
183
184 public function __construct($val)
185 {
46e88fe3
RB
186 if (!is_array($val)) {
187 $val = array($val);
188 }
d7ddf29b
RB
189 $this->val = $val;
190 }
191
192 public function buildCondition(PlFilter &$uf)
193 {
194 $sub = $uf->addEducationFilter();
195 return 'pee' . $sub . '.fieldid IN ' . XDB::formatArray($this->val);
196 }
197}
198// }}}
199
8363588b 200// {{{ class UFC_Name
53eae167 201/** Filters users based on name
5d2e55c7 202 * @param $type Type of name field on which filtering is done (firstname, lastname...)
53eae167 203 * @param $text Text on which to filter
5d2e55c7 204 * @param $mode Flag indicating search type (prefix, suffix, with particule...)
53eae167 205 */
784745ce
FB
206class UFC_Name implements UserFilterCondition
207{
208 const PREFIX = 1;
209 const SUFFIX = 2;
210 const PARTICLE = 7;
211 const VARIANTS = 8;
212 const CONTAINS = 3;
213
214 private $type;
215 private $text;
216 private $mode;
217
218 public function __construct($type, $text, $mode)
219 {
220 $this->type = $type;
221 $this->text = $text;
222 $this->mode = $mode;
223 }
224
225 private function buildNameQuery($type, $variant, $where, UserFilter &$uf)
226 {
227 $sub = $uf->addNameFilter($type, $variant);
228 return str_replace('$ME', 'pn' . $sub, $where);
229 }
230
dcc63ed5 231 public function buildCondition(PlFilter &$uf)
784745ce
FB
232 {
233 $left = '$ME.name';
234 $op = ' LIKE ';
235 if (($this->mode & self::PARTICLE) == self::PARTICLE) {
236 $left = 'CONCAT($ME.particle, \' \', $ME.name)';
237 }
238 if (($this->mode & self::CONTAINS) == 0) {
239 $right = XDB::format('{?}', $this->text);
240 $op = ' = ';
241 } else if (($this->mode & self::CONTAINS) == self::PREFIX) {
242 $right = XDB::format('CONCAT({?}, \'%\')', $this->text);
243 } else if (($this->mode & self::CONTAINS) == self::SUFFIX) {
244 $right = XDB::format('CONCAT(\'%\', {?})', $this->text);
245 } else {
246 $right = XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->text);
247 }
248 $cond = $left . $op . $right;
249 $conds = array($this->buildNameQuery($this->type, null, $cond, $uf));
d865c296 250 if (($this->mode & self::VARIANTS) != 0 && isset(UserFilter::$name_variants[$this->type])) {
784745ce
FB
251 foreach (UserFilter::$name_variants[$this->type] as $var) {
252 $conds[] = $this->buildNameQuery($this->type, $var, $cond, $uf);
253 }
254 }
255 return implode(' OR ', $conds);
a087cc8d
FB
256 }
257}
8363588b 258// }}}
a087cc8d 259
40585144
RB
260// {{{ class UFC_NameTokens
261/** Selects users based on tokens in their name (for quicksearch)
262 * @param $tokens An array of tokens to search
263 * @param $flags Flags the tokens must have (e.g 'public' for public search)
264 * @param $soundex (bool) Whether those tokens are fulltext or soundex
265 */
266class UFC_NameTokens implements UserFilterCondition
267{
268 /* Flags */
269 const FLAG_PUBLIC = 'public';
270
271 private $tokens;
272 private $flags;
273 private $soundex;
79a0b464 274 private $exact;
40585144 275
79a0b464 276 public function __construct($tokens, $flags = array(), $soundex = false, $exact = false)
40585144
RB
277 {
278 $this->tokens = $tokens;
279 if (is_array($flags)) {
280 $this->flags = $flags;
281 } else {
282 $this->flags = array($flags);
283 }
284 $this->soundex = $soundex;
79a0b464 285 $this->exact = $exact;
40585144
RB
286 }
287
dcc63ed5 288 public function buildCondition(PlFilter &$uf)
40585144 289 {
79a0b464 290 $sub = $uf->addNameTokensFilter(!($this->exact || $this->soundex));
40585144
RB
291 $conds = array();
292 if ($this->soundex) {
293 $conds[] = $sub . '.soundex IN ' . XDB::formatArray($this->tokens);
79a0b464
RB
294 } else if ($this->exact) {
295 $conds[] = $sub . '.token IN ' . XDB::formatArray($this->tokens);
40585144
RB
296 } else {
297 $tokconds = array();
298 foreach ($this->tokens as $token) {
299 $tokconds[] = $sub . '.token LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $token);
300 }
301 $conds[] = implode(' OR ', $tokconds);
302 }
303
304 if ($this->flags != null) {
305 $conds[] = $sub . '.flags IN ' . XDB::formatArray($this->flags);
306 }
307
308 return implode(' AND ', $conds);
309 }
310}
311// }}}
312
0fb3713c
RB
313// {{{ class UFC_Nationality
314class UFC_Nationality implements UserFilterCondition
315{
d7ddf29b 316 private $val;
0fb3713c 317
d7ddf29b 318 public function __construct($val)
0fb3713c 319 {
d7ddf29b
RB
320 if (!is_array($val)) {
321 $val = array($val);
322 }
323 $this->val = $val;
0fb3713c
RB
324 }
325
326 public function buildCondition(PlFilter &$uf)
327 {
d7ddf29b
RB
328 $uf->requireProfiles();
329 $nat = XDB::formatArray($this->val);
330 $conds = array(
331 'p.nationality1 IN ' . $nat,
332 'p.nationality2 IN ' . $nat,
333 'p.nationality3 IN ' . $nat,
334 );
335 return implode(' OR ', $conds);
0fb3713c
RB
336 }
337}
338// }}}
339
8363588b 340// {{{ class UFC_Dead
53eae167
RB
341/** Filters users based on death date
342 * @param $comparison Comparison operator
343 * @param $date Date to which death date should be compared
344 */
4927ee54
FB
345class UFC_Dead implements UserFilterCondition
346{
38c6fe96
FB
347 private $comparison;
348 private $date;
349
350 public function __construct($comparison = null, $date = null)
4927ee54 351 {
38c6fe96
FB
352 $this->comparison = $comparison;
353 $this->date = $date;
4927ee54
FB
354 }
355
dcc63ed5 356 public function buildCondition(PlFilter &$uf)
4927ee54 357 {
d7ddf29b 358 $uf->requireProfiles();
38c6fe96
FB
359 $str = 'p.deathdate IS NOT NULL';
360 if (!is_null($this->comparison)) {
361 $str .= ' AND p.deathdate ' . $this->comparison . ' ' . XDB::format('{?}', date('Y-m-d', $this->date));
4927ee54 362 }
38c6fe96 363 return $str;
4927ee54
FB
364 }
365}
8363588b 366// }}}
4927ee54 367
8363588b 368// {{{ class UFC_Registered
53eae167
RB
369/** Filters users based on registration state
370 * @param $active Whether we want to use only "active" users (i.e with a valid redirection)
371 * @param $comparison Comparison operator
372 * @param $date Date to which users registration date should be compared
373 */
4927ee54
FB
374class UFC_Registered implements UserFilterCondition
375{
376 private $active;
38c6fe96
FB
377 private $comparison;
378 private $date;
379
380 public function __construct($active = false, $comparison = null, $date = null)
4927ee54 381 {
b2e8fc54 382 $this->active = $active;
38c6fe96
FB
383 $this->comparison = $comparison;
384 $this->date = $date;
4927ee54
FB
385 }
386
dcc63ed5 387 public function buildCondition(PlFilter &$uf)
4927ee54 388 {
d7ddf29b 389 $uf->requireAccounts();
4927ee54 390 if ($this->active) {
38c6fe96 391 $date = 'a.uid IS NOT NULL AND a.state = \'active\'';
4927ee54 392 } else {
38c6fe96
FB
393 $date = 'a.uid IS NOT NULL AND a.state != \'pending\'';
394 }
395 if (!is_null($this->comparison)) {
396 $date .= ' AND a.registration_date ' . $this->comparison . ' ' . XDB::format('{?}', date('Y-m-d', $this->date));
4927ee54 397 }
38c6fe96 398 return $date;
4927ee54
FB
399 }
400}
8363588b 401// }}}
4927ee54 402
8363588b 403// {{{ class UFC_ProfileUpdated
53eae167
RB
404/** Filters users based on profile update date
405 * @param $comparison Comparison operator
406 * @param $date Date to which profile update date must be compared
407 */
7e735012
FB
408class UFC_ProfileUpdated implements UserFilterCondition
409{
410 private $comparison;
411 private $date;
412
413 public function __construct($comparison = null, $date = null)
414 {
415 $this->comparison = $comparison;
416 $this->date = $date;
417 }
418
dcc63ed5 419 public function buildCondition(PlFilter &$uf)
7e735012 420 {
d7ddf29b 421 $uf->requireProfiles();
7e735012
FB
422 return 'p.last_change ' . $this->comparison . XDB::format(' {?}', date('Y-m-d H:i:s', $this->date));
423 }
424}
8363588b 425// }}}
7e735012 426
8363588b 427// {{{ class UFC_Birthday
53eae167
RB
428/** Filters users based on next birthday date
429 * @param $comparison Comparison operator
430 * @param $date Date to which users next birthday date should be compared
431 */
7e735012
FB
432class UFC_Birthday implements UserFilterCondition
433{
434 private $comparison;
435 private $date;
436
437 public function __construct($comparison = null, $date = null)
438 {
439 $this->comparison = $comparison;
440 $this->date = $date;
441 }
442
dcc63ed5 443 public function buildCondition(PlFilter &$uf)
7e735012 444 {
d7ddf29b 445 $uf->requireProfiles();
7e735012
FB
446 return 'p.next_birthday ' . $this->comparison . XDB::format(' {?}', date('Y-m-d', $this->date));
447 }
448}
8363588b 449// }}}
7e735012 450
8363588b 451// {{{ class UFC_Sex
53eae167
RB
452/** Filters users based on sex
453 * @parm $sex One of User::GENDER_MALE or User::GENDER_FEMALE, for selecting users
454 */
4927ee54
FB
455class UFC_Sex implements UserFilterCondition
456{
457 private $sex;
458 public function __construct($sex)
459 {
460 $this->sex = $sex;
461 }
462
dcc63ed5 463 public function buildCondition(PlFilter &$uf)
4927ee54
FB
464 {
465 if ($this->sex != User::GENDER_MALE && $this->sex != User::GENDER_FEMALE) {
466 return self::COND_FALSE;
467 } else {
d7ddf29b 468 $uf->requireProfiles();
24e08e33 469 return XDB::format('p.sex = {?}', $this->sex == User::GENDER_FEMALE ? 'female' : 'male');
4927ee54
FB
470 }
471 }
472}
8363588b 473// }}}
4927ee54 474
8363588b 475// {{{ class UFC_Group
53eae167 476/** Filters users based on group membership
5d2e55c7
RB
477 * @param $group Group whose members we are selecting
478 * @param $anim Whether to restrict selection to animators of that group
53eae167 479 */
4927ee54
FB
480class UFC_Group implements UserFilterCondition
481{
482 private $group;
5d2e55c7
RB
483 private $anim;
484 public function __construct($group, $anim = false)
4927ee54
FB
485 {
486 $this->group = $group;
5d2e55c7 487 $this->anim = $anim;
4927ee54
FB
488 }
489
dcc63ed5 490 public function buildCondition(PlFilter &$uf)
4927ee54
FB
491 {
492 $sub = $uf->addGroupFilter($this->group);
493 $where = 'gpm' . $sub . '.perms IS NOT NULL';
5d2e55c7 494 if ($this->anim) {
4927ee54
FB
495 $where .= ' AND gpm' . $sub . '.perms = \'admin\'';
496 }
497 return $where;
498 }
499}
8363588b 500// }}}
4927ee54 501
0fb3713c 502// {{{ class UFC_Binet
d7ddf29b
RB
503/** Selects users based on their belonging to a given (list of) binet
504 * @param $binet either a binet_id or an array of binet_ids
505 */
0fb3713c
RB
506class UFC_Binet implements UserFilterCondition
507{
d7ddf29b 508 private $val;
0fb3713c 509
d7ddf29b 510 public function __construct($val)
0fb3713c 511 {
d7ddf29b
RB
512 if (!is_array($val)) {
513 $val = array($val);
514 }
515 $this->val = $val;
0fb3713c
RB
516 }
517
518 public function buildCondition(PlFilter &$uf)
519 {
d7ddf29b
RB
520 $sub = $uf->addBinetsFilter();
521 return $sub . '.binet_id IN ' . XDB::formatArray($this->val);
a7f8e48a
RB
522 }
523}
524// }}}
525
526// {{{ class UFC_Section
46e88fe3
RB
527/** Selects users based on section
528 * @param $section ID of the section
529 */
a7f8e48a
RB
530class UFC_Section implements UserFilterCondition
531{
532 private $section;
533
534 public function __construct($section)
535 {
536 $this->section = $section;
537 }
538
539 public function buildCondition(PlFilter &$uf)
540 {
541 $uf->requireProfiles();
542 return 'p.section = ' . XDB::format('{?}', $this->section);
0fb3713c
RB
543 }
544}
545// }}}
546
8363588b 547// {{{ class UFC_Email
53eae167
RB
548/** Filters users based on email address
549 * @param $email Email whose owner we are looking for
550 */
aa21c568
FB
551class UFC_Email implements UserFilterCondition
552{
553 private $email;
554 public function __construct($email)
555 {
556 $this->email = $email;
557 }
558
dcc63ed5 559 public function buildCondition(PlFilter &$uf)
aa21c568
FB
560 {
561 if (User::isForeignEmailAddress($this->email)) {
562 $sub = $uf->addEmailRedirectFilter($this->email);
563 return XDB::format('e' . $sub . '.email IS NOT NULL OR a.email = {?}', $this->email);
21401768
FB
564 } else if (User::isVirtualEmailAddress($this->email)) {
565 $sub = $uf->addVirtualEmailFilter($this->email);
566 return 'vr' . $sub . '.redirect IS NOT NULL';
aa21c568 567 } else {
21401768
FB
568 @list($user, $domain) = explode('@', $this->email);
569 $sub = $uf->addAliasFilter($user);
aa21c568
FB
570 return 'al' . $sub . '.alias IS NOT NULL';
571 }
572 }
573}
8363588b 574// }}}
d865c296 575
8363588b 576// {{{ class UFC_EmailList
5d2e55c7 577/** Filters users based on an email list
53eae167
RB
578 * @param $emails List of emails whose owner must be selected
579 */
21401768
FB
580class UFC_EmailList implements UserFilterCondition
581{
582 private $emails;
583 public function __construct($emails)
584 {
585 $this->emails = $emails;
586 }
587
dcc63ed5 588 public function buildCondition(PlFilter &$uf)
21401768
FB
589 {
590 $email = null;
591 $virtual = null;
592 $alias = null;
593 $cond = array();
594
595 if (count($this->emails) == 0) {
dcc63ed5 596 return PlFilterCondition::COND_TRUE;
21401768
FB
597 }
598
599 foreach ($this->emails as $entry) {
600 if (User::isForeignEmailAddress($entry)) {
601 if (is_null($email)) {
602 $email = $uf->addEmailRedirectFilter();
603 }
604 $cond[] = XDB::format('e' . $email . '.email = {?} OR a.email = {?}', $entry, $entry);
605 } else if (User::isVirtualEmailAddress($entry)) {
606 if (is_null($virtual)) {
607 $virtual = $uf->addVirtualEmailFilter();
608 }
609 $cond[] = XDB::format('vr' . $virtual . '.redirect IS NOT NULL AND v' . $virtual . '.alias = {?}', $entry);
610 } else {
611 if (is_null($alias)) {
612 $alias = $uf->addAliasFilter();
613 }
614 @list($user, $domain) = explode('@', $entry);
615 $cond[] = XDB::format('al' . $alias . '.alias = {?}', $user);
616 }
617 }
618 return '(' . implode(') OR (', $cond) . ')';
619 }
620}
8363588b 621// }}}
d865c296 622
8363588b 623// {{{ class UFC_Address
2b9ca54d 624abstract class UFC_Address implements UserFilterCondition
c4b24511 625{
2b9ca54d 626 /** Valid address type ('hq' is reserved for company addresses)
036d1637 627 */
2b9ca54d
RB
628 const TYPE_HOME = 1;
629 const TYPE_PRO = 2;
630 const TYPE_ANY = 3;
c4b24511 631
2b9ca54d 632 /** Text for these types
036d1637 633 */
2b9ca54d
RB
634 protected static $typetexts = array(
635 self::TYPE_HOME => 'home',
636 self::TYPE_PRO => 'pro',
637 );
638
639 protected $type;
c4b24511 640
036d1637
RB
641 /** Flags for addresses
642 */
643 const FLAG_CURRENT = 0x0001;
644 const FLAG_TEMP = 0x0002;
645 const FLAG_SECOND = 0x0004;
646 const FLAG_MAIL = 0x0008;
647 const FLAG_CEDEX = 0x0010;
648
649 // Binary OR of those flags
650 const FLAG_ANY = 0x001F;
651
652 /** Text of these flags
653 */
2b9ca54d 654 protected static $flagtexts = array(
036d1637
RB
655 self::FLAG_CURRENT => 'current',
656 self::FLAG_TEMP => 'temporary',
657 self::FLAG_SECOND => 'secondary',
658 self::FLAG_MAIL => 'mail',
659 self::FLAG_CEDEX => 'cedex',
660 );
661
2b9ca54d
RB
662 protected $flags;
663
664 public function __construct($type = null, $flags = null)
665 {
666 $this->type = $type;
667 $this->flags = $flags;
668 }
669
670 protected function initConds($sub)
671 {
672 $conds = array();
673 $types = array();
674 foreach (self::$typetexts as $flag => $type) {
675 if ($flag & $this->type) {
676 $types[] = $type;
677 }
678 }
679 if (count($types)) {
680 $conds[] = $sub . '.type IN ' . XDB::formatArray($types);
681 }
682
683 if ($this->flags != self::FLAG_ANY) {
684 foreach(self::$flagtexts as $flag => $text) {
685 if ($flag & $this->flags) {
686 $conds[] = 'FIND_IN_SET(' . XDB::format('{?}', $text) . ', ' . $sub . '.flags)';
687 }
688 }
689 }
690 return $conds;
691 }
692
693}
694// }}}
695
696// {{{ class UFC_AddressText
697/** Select users based on their address, using full text search
698 * @param $text Text for filter in fulltext search
699 * @param $textSearchMode Mode for search (PREFIX, SUFFIX, ...)
700 * @param $type Filter on address type
701 * @param $flags Filter on address flags
702 * @param $country Filter on address country
703 * @param $locality Filter on address locality
704 */
705class UFC_AddressText extends UFC_Address
706{
707 /** Flags for text search
036d1637 708 */
2b9ca54d
RB
709 const PREFIX = 0x0001;
710 const SUFFIX = 0x0002;
711 const CONTAINS = 0x0003;
712
036d1637 713 private $text;
2b9ca54d
RB
714 private $textSearchMode;
715
716 public function __construct($text = null, $textSearchMode = self::CONTAINS,
717 $type = null, $flags = self::FLAG_ANY, $country = null, $locality = null)
718 {
719 parent::__construct($type, $flags);
720 $this->text = $text;
721 $this->textSearchMode = $textSearchMode;
722 $this->country = $country;
723 $this->locality = $locality;
724 }
725
726 private function mkMatch($txt)
727 {
728 $op = ' LIKE ';
729 if (($this->textSearchMode & self::CONTAINS) == 0) {
730 $right = XDB::format('{?}', $this->text);
731 $op = ' = ';
732 } else if (($this->mode & self::CONTAINS) == self::PREFIX) {
733 $right = XDB::format('CONCAT({?}, \'%\')', $this->text);
734 } else if (($this->mode & self::CONTAINS) == self::SUFFIX) {
735 $right = XDB::format('CONCAT(\'%\', {?})', $this->text);
736 } else {
737 $right = XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->text);
738 }
739 return $op . $right;
740 }
741
742 public function buildCondition(PlFilter &$uf)
743 {
744 $sub = $uf->addAddressFilter();
745 $conds = $this->initConds($sub);
746 if ($this->text != null) {
747 $conds[] = $sub . '.text' . $this->mkMatch($this->text);
748 }
749
750 if ($this->country != null) {
751 $subc = $uf->addAddressCountryFilter();
752 $subconds = array();
753 $subconds[] = $subc . '.country' . $this->mkMatch($this->country);
754 $subconds[] = $subc . '.countryFR' . $this->mkMatch($this->country);
755 $conds[] = implode(' OR ', $subconds);
756 }
757
758 if ($this->locality != null) {
759 $subl = $uf->addAddressLocalityFilter();
760 $conds[] = $subl . '.name' . $this->mkMatch($this->locality);
761 }
762
763 return implode(' AND ', $conds);
764 }
765}
766// }}}
767
46e88fe3 768// {{{ class UFC_AddressField
2b9ca54d 769/** Filters users based on their address,
46e88fe3
RB
770 * @param $val Either a code for one of the fields, or an array of such codes
771 * @param $fieldtype The type of field to look for
2b9ca54d
RB
772 * @param $type Filter on address type
773 * @param $flags Filter on address flags
2b9ca54d 774 */
46e88fe3 775class UFC_AddressField extends UFC_Address
2b9ca54d 776{
46e88fe3
RB
777 const FIELD_COUNTRY = 1;
778 const FIELD_ADMAREA = 2;
779 const FIELD_SUBADMAREA = 3;
780 const FIELD_LOCALITY = 4;
781 const FIELD_ZIPCODE = 5;
782
2b9ca54d
RB
783 /** Data of the filter
784 */
46e88fe3
RB
785 private $val;
786 private $fieldtype;
036d1637 787
46e88fe3 788 public function __construct($val, $fieldtype, $type = null, $flags = self::FLAG_ANY)
036d1637 789 {
2b9ca54d 790 parent::__construct($type, $flags);
46e88fe3
RB
791
792 if (!is_array($val)) {
793 $val = array($val);
794 }
795 $this->val = $val;
796 $this->fieldtype = $fieldtype;
c4b24511
RB
797 }
798
dcc63ed5 799 public function buildCondition(PlFilter &$uf)
c4b24511 800 {
036d1637 801 $sub = $uf->addAddressFilter();
d7ddf29b 802 $conds = $this->initConds($sub);
036d1637 803
46e88fe3
RB
804 switch ($this->fieldtype) {
805 case self::FIELD_COUNTRY:
806 $field = 'countryId';
807 break;
808 case self::FIELD_ADMAREA:
809 $field = 'administrativeAreaId';
810 break;
811 case self::FIELD_SUBADMAREA:
812 $field = 'subAdministrativeAreaId';
813 break;
814 case self::FIELD_LOCALITY:
815 $field = 'localityId';
816 break;
817 case self::FIELD_ZIPCODE:
818 $field = 'postalCode';
819 break;
820 default:
61f61261 821 Platal::page()->killError('Invalid address field type: ' . $this->fieldtype);
46e88fe3
RB
822 }
823 $conds[] = $sub . '.' . $field . ' IN ' . XDB::formatArray($this->val);
036d1637
RB
824
825 return implode(' AND ', $conds);
c4b24511
RB
826 }
827}
8363588b 828// }}}
c4b24511 829
8363588b 830// {{{ class UFC_Corps
4083b126
RB
831/** Filters users based on the corps they belong to
832 * @param $corps Corps we are looking for (abbreviation)
833 * @param $type Whether we search for original or current corps
834 */
835class UFC_Corps implements UserFilterCondition
836{
5d2e55c7
RB
837 const CURRENT = 1;
838 const ORIGIN = 2;
4083b126
RB
839
840 private $corps;
841 private $type;
842
843 public function __construct($corps, $type = self::CURRENT)
844 {
845 $this->corps = $corps;
846 $this->type = $type;
847 }
848
dcc63ed5 849 public function buildCondition(PlFilter &$uf)
4083b126 850 {
5d2e55c7
RB
851 /** Tables shortcuts:
852 * pc for profile_corps,
4083b126
RB
853 * pceo for profile_corps_enum - orginal
854 * pcec for profile_corps_enum - current
855 */
856 $sub = $uf->addCorpsFilter($this->type);
857 $cond = $sub . '.abbreviation = ' . $corps;
858 return $cond;
859 }
860}
8363588b 861// }}}
4083b126 862
8363588b 863// {{{ class UFC_Corps_Rank
4083b126
RB
864/** Filters users based on their rank in the corps
865 * @param $rank Rank we are looking for (abbreviation)
866 */
867class UFC_Corps_Rank implements UserFilterCondition
868{
869 private $rank;
870 public function __construct($rank)
871 {
872 $this->rank = $rank;
873 }
874
dcc63ed5 875 public function buildCondition(PlFilter &$uf)
4083b126 876 {
5d2e55c7 877 /** Tables shortcuts:
4083b126
RB
878 * pcr for profile_corps_rank
879 */
880 $sub = $uf->addCorpsRankFilter();
881 $cond = $sub . '.abbreviation = ' . $rank;
882 return $cond;
883 }
884}
8363588b 885// }}}
4083b126 886
6a99c3ac
RB
887// {{{ class UFC_Job_Company
888/** Filters users based on the company they belong to
889 * @param $type The field being searched (self::JOBID, self::JOBNAME or self::JOBACRONYM)
890 * @param $value The searched value
891 */
4e2f2ad2 892class UFC_Job_Company implements UserFilterCondition
6a99c3ac
RB
893{
894 const JOBID = 'id';
895 const JOBNAME = 'name';
896 const JOBACRONYM = 'acronym';
897
898 private $type;
899 private $value;
900
901 public function __construct($type, $value)
902 {
903 $this->assertType($type);
904 $this->type = $type;
905 $this->value = $value;
906 }
907
908 private function assertType($type)
909 {
910 if ($type != self::JOBID && $type != self::JOBNAME && $type != self::JOBACRONYM) {
5d2e55c7 911 Platal::page()->killError("Type de recherche non valide.");
6a99c3ac
RB
912 }
913 }
914
dcc63ed5 915 public function buildCondition(PlFilter &$uf)
6a99c3ac
RB
916 {
917 $sub = $uf->addJobCompanyFilter();
918 $cond = $sub . '.' . $this->type . ' = ' . XDB::format('{?}', $this->value);
919 return $cond;
920 }
921}
922// }}}
923
924// {{{ class UFC_Job_Sectorization
925/** Filters users based on the ((sub)sub)sector they work in
46e88fe3 926 * @param $val The ID of the sector, or an array of such IDs
d7ddf29b 927 * @param $type The kind of search (subsubsector/subsector/sector)
6a99c3ac 928 */
4e2f2ad2 929class UFC_Job_Sectorization implements UserFilterCondition
6a99c3ac 930{
d7ddf29b
RB
931 private $val;
932 private $type;
6a99c3ac 933
d7ddf29b
RB
934 public function __construct($val, $type = UserFilter::JOB_SECTOR)
935 {
936 self::assertType($type);
46e88fe3
RB
937 if (!is_array($val)) {
938 $val = array($val);
939 }
d7ddf29b
RB
940 $this->val = $val;
941 $this->type = $type;
942 }
6a99c3ac 943
d7ddf29b 944 private static function assertType($type)
6a99c3ac 945 {
d7ddf29b
RB
946 if ($type != UserFilter::JOB_SECTOR && $type != UserFilter::JOB_SUBSECTOR && $type != UserFilter::JOB_SUBSUBSECTOR) {
947 Platal::page()->killError("Type de secteur non valide.");
948 }
6a99c3ac
RB
949 }
950
dcc63ed5 951 public function buildCondition(PlFilter &$uf)
6a99c3ac 952 {
d7ddf29b
RB
953 $sub = $uf->addJobSectorizationFilter($this->type);
954 return $sub . '.id = ' . XDB::format('{?}', $this->val);
6a99c3ac
RB
955 }
956}
957// }}}
958
959// {{{ class UFC_Job_Description
960/** Filters users based on their job description
961 * @param $description The text being searched for
962 * @param $fields The fields to search for (user-defined, ((sub|)sub|)sector)
963 */
4e2f2ad2 964class UFC_Job_Description implements UserFilterCondition
6a99c3ac
RB
965{
966
6a99c3ac
RB
967 private $description;
968 private $fields;
969
01cc5f9e 970 public function __construct($description, $fields)
6a99c3ac
RB
971 {
972 $this->fields = $fields;
973 $this->description = $description;
974 }
975
dcc63ed5 976 public function buildCondition(PlFilter &$uf)
6a99c3ac
RB
977 {
978 $conds = array();
979 if ($this->fields & UserFilter::JOB_USERDEFINED) {
980 $sub = $uf->addJobFilter();
981 $conds[] = $sub . '.description LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
982 }
01cc5f9e
RB
983 if ($this->fields & UserFilter::JOB_CV) {
984 $uf->requireProfiles();
985 $conds[] = 'p.cv LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
986 }
6a99c3ac
RB
987 if ($this->fields & UserFilter::JOB_SECTOR) {
988 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SECTOR);
989 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
990 }
991 if ($this->fields & UserFilter::JOB_SUBSECTOR) {
992 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSECTOR);
993 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
994 }
995 if ($this->fields & UserFilter::JOB_SUBSUBSECTOR) {
996 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_SUBSUBSECTOR);
997 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
998 $sub = $uf->addJobSectorizationFilter(UserFilter::JOB_ALTERNATES);
999 $conds[] = $sub . '.name LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->description);
1000 }
1001 return implode(' OR ', $conds);
1002 }
1003}
1004// }}}
1005
0a2e9c74
RB
1006// {{{ class UFC_Networking
1007/** Filters users based on network identity (IRC, ...)
1008 * @param $type Type of network (-1 for any)
1009 * @param $value Value to search
1010 */
4e2f2ad2 1011class UFC_Networking implements UserFilterCondition
0a2e9c74
RB
1012{
1013 private $type;
1014 private $value;
1015
1016 public function __construct($type, $value)
1017 {
1018 $this->type = $type;
1019 $this->value = $value;
1020 }
1021
dcc63ed5 1022 public function buildCondition(PlFilter &$uf)
0a2e9c74
RB
1023 {
1024 $sub = $uf->addNetworkingFilter();
1025 $conds = array();
1026 $conds[] = $sub . '.address = ' . XDB::format('CONCAT(\'%\', {?}, \'%\')', $this->value);
1027 if ($this->type != -1) {
1028 $conds[] = $sub . '.network_type = ' . XDB::format('{?}', $this->type);
1029 }
1030 return implode(' AND ', $conds);
1031 }
1032}
1033// }}}
1034
6d62969e
RB
1035// {{{ class UFC_Phone
1036/** Filters users based on their phone number
1037 * @param $num_type Type of number (pro/user/home)
1038 * @param $phone_type Type of phone (fixed/mobile/fax)
1039 * @param $number Phone number
1040 */
4e2f2ad2 1041class UFC_Phone implements UserFilterCondition
6d62969e
RB
1042{
1043 const NUM_PRO = 'pro';
1044 const NUM_USER = 'user';
1045 const NUM_HOME = 'address';
1046 const NUM_ANY = 'any';
1047
1048 const PHONE_FIXED = 'fixed';
1049 const PHONE_MOBILE = 'mobile';
1050 const PHONE_FAX = 'fax';
1051 const PHONE_ANY = 'any';
1052
1053 private $num_type;
1054 private $phone_type;
1055 private $number;
1056
1057 public function __construct($number, $num_type = self::NUM_ANY, $phone_type = self::PHONE_ANY)
1058 {
9b8e5fb4 1059 require_once('profil.func.inc.php');
6d62969e
RB
1060 $this->number = $number;
1061 $this->num_type = $num_type;
1062 $this->phone_type = format_phone_number($phone_type);
1063 }
1064
dcc63ed5 1065 public function buildCondition(PlFilter &$uf)
6d62969e
RB
1066 {
1067 $sub = $uf->addPhoneFilter();
1068 $conds = array();
1069 $conds[] = $sub . '.search_tel = ' . XDB::format('{?}', $this->number);
1070 if ($this->num_type != self::NUM_ANY) {
1071 $conds[] = $sub . '.link_type = ' . XDB::format('{?}', $this->num_type);
1072 }
1073 if ($this->phone_type != self::PHONE_ANY) {
1074 $conds[] = $sub . '.tel_type = ' . XDB::format('{?}', $this->phone_type);
1075 }
1076 return implode(' AND ', $conds);
1077 }
1078}
1079// }}}
1080
ceb512d2
RB
1081// {{{ class UFC_Medal
1082/** Filters users based on their medals
1083 * @param $medal ID of the medal
1084 * @param $grade Grade of the medal (null for 'any')
1085 */
4e2f2ad2 1086class UFC_Medal implements UserFilterCondition
ceb512d2
RB
1087{
1088 private $medal;
1089 private $grade;
1090
1091 public function __construct($medal, $grade = null)
1092 {
1093 $this->medal = $medal;
1094 $this->grade = $grade;
1095 }
1096
dcc63ed5 1097 public function buildCondition(PlFilter &$uf)
ceb512d2
RB
1098 {
1099 $conds = array();
1100 $sub = $uf->addMedalFilter();
1101 $conds[] = $sub . '.mid = ' . XDB::format('{?}', $this->medal);
1102 if ($this->grade != null) {
1103 $conds[] = $sub . '.gid = ' . XDB::format('{?}', $this->grade);
1104 }
1105 return implode(' AND ', $conds);
1106 }
1107}
1108// }}}
1109
671b7073
RB
1110// {{{ class UFC_Mentor_Expertise
1111/** Filters users by mentoring expertise
1112 * @param $expertise Domain of expertise
1113 */
4e2f2ad2 1114class UFC_Mentor_Expertise implements UserFilterCondition
671b7073
RB
1115{
1116 private $expertise;
1117
1118 public function __construct($expertise)
1119 {
1120 $this->expertise = $expertise;
1121 }
1122
dcc63ed5 1123 public function buildCondition(PlFilter &$uf)
671b7073
RB
1124 {
1125 $sub = $uf->addMentorFilter(UserFilter::MENTOR_EXPERTISE);
1126 return $sub . '.expertise LIKE ' . XDB::format('CONCAT(\'%\', {?}, \'%\'', $this->expertise);
1127 }
1128}
1129// }}}
1130
1131// {{{ class UFC_Mentor_Country
1132/** Filters users by mentoring country
1133 * @param $country Two-letters code of country being searched
1134 */
4e2f2ad2 1135class UFC_Mentor_Country implements UserFilterCondition
671b7073
RB
1136{
1137 private $country;
1138
1139 public function __construct($country)
1140 {
1141 $this->country = $country;
1142 }
1143
dcc63ed5 1144 public function buildCondition(PlFilter &$uf)
671b7073
RB
1145 {
1146 $sub = $uf->addMentorFilter(UserFilter::MENTOR_COUNTRY);
1147 return $sub . '.country = ' . XDB::format('{?}', $this->country);
1148 }
1149}
1150// }}}
1151
1152// {{{ class UFC_Mentor_Sectorization
1153/** Filters users based on mentoring (sub|)sector
c5da8574
RB
1154 * @param $sector ID of (sub)sector
1155 * @param $type Whether we are looking for a sector or a subsector
671b7073 1156 */
4e2f2ad2 1157class UFC_Mentor_Sectorization implements UserFilterCondition
671b7073 1158{
c5da8574
RB
1159 const SECTOR = 1;
1160 const SUBSECTOR = 2;
671b7073 1161 private $sector;
c5da8574 1162 private $type;
671b7073 1163
c5da8574 1164 public function __construct($sector, $type = self::SECTOR)
671b7073
RB
1165 {
1166 $this->sector = $sector;
c5da8574 1167 $this->type = $type;
671b7073
RB
1168 }
1169
dcc63ed5 1170 public function buildCondition(PlFilter &$uf)
671b7073
RB
1171 {
1172 $sub = $uf->addMentorFilter(UserFilter::MENTOR_SECTOR);
c5da8574
RB
1173 if ($this->type == self::SECTOR) {
1174 $field = 'sectorid';
1175 } else {
1176 $field = 'subsectorid';
671b7073 1177 }
c5da8574 1178 return $sub . '.' . $field . ' = ' . XDB::format('{?}', $this->sector);
671b7073
RB
1179 }
1180}
1181// }}}
1182
8363588b 1183// {{{ class UFC_UserRelated
5d2e55c7 1184/** Filters users based on a relation toward a user
53eae167
RB
1185 * @param $user User to which searched users are related
1186 */
4e7bf1e0 1187abstract class UFC_UserRelated implements UserFilterCondition
3f42a6ad 1188{
009b8ab7
FB
1189 protected $user;
1190 public function __construct(PlUser &$user)
1191 {
1192 $this->user =& $user;
3f42a6ad 1193 }
4e7bf1e0 1194}
8363588b 1195// }}}
3f42a6ad 1196
8363588b 1197// {{{ class UFC_Contact
5d2e55c7 1198/** Filters users who belong to selected user's contacts
53eae167 1199 */
4e7bf1e0
FB
1200class UFC_Contact extends UFC_UserRelated
1201{
dcc63ed5 1202 public function buildCondition(PlFilter &$uf)
3f42a6ad 1203 {
009b8ab7 1204 $sub = $uf->addContactFilter($this->user->id());
3f42a6ad
FB
1205 return 'c' . $sub . '.contact IS NOT NULL';
1206 }
1207}
8363588b 1208// }}}
3f42a6ad 1209
8363588b 1210// {{{ class UFC_WatchRegistration
53eae167
RB
1211/** Filters users being watched by selected user
1212 */
4e7bf1e0
FB
1213class UFC_WatchRegistration extends UFC_UserRelated
1214{
dcc63ed5 1215 public function buildCondition(PlFilter &$uf)
4e7bf1e0 1216 {
009b8ab7 1217 if (!$this->user->watch('registration')) {
dcc63ed5 1218 return PlFilterCondition::COND_FALSE;
009b8ab7
FB
1219 }
1220 $uids = $this->user->watchUsers();
1221 if (count($uids) == 0) {
dcc63ed5 1222 return PlFilterCondition::COND_FALSE;
009b8ab7 1223 } else {
07eb5b0e 1224 return '$UID IN ' . XDB::formatArray($uids);
009b8ab7 1225 }
4e7bf1e0
FB
1226 }
1227}
8363588b 1228// }}}
4e7bf1e0 1229
8363588b 1230// {{{ class UFC_WatchPromo
53eae167
RB
1231/** Filters users belonging to a promo watched by selected user
1232 * @param $user Selected user (the one watching promo)
1233 * @param $grade Formation the user is watching
1234 */
4e7bf1e0
FB
1235class UFC_WatchPromo extends UFC_UserRelated
1236{
1237 private $grade;
009b8ab7 1238 public function __construct(PlUser &$user, $grade = UserFilter::GRADE_ING)
4e7bf1e0 1239 {
009b8ab7 1240 parent::__construct($user);
4e7bf1e0
FB
1241 $this->grade = $grade;
1242 }
1243
dcc63ed5 1244 public function buildCondition(PlFilter &$uf)
4e7bf1e0 1245 {
009b8ab7
FB
1246 $promos = $this->user->watchPromos();
1247 if (count($promos) == 0) {
dcc63ed5 1248 return PlFilterCondition::COND_FALSE;
009b8ab7
FB
1249 } else {
1250 $sube = $uf->addEducationFilter(true, $this->grade);
1251 $field = 'pe' . $sube . '.' . UserFilter::promoYear($this->grade);
07eb5b0e 1252 return $field . ' IN ' . XDB::formatArray($promos);
009b8ab7 1253 }
4e7bf1e0
FB
1254 }
1255}
8363588b 1256// }}}
4e7bf1e0 1257
8363588b 1258// {{{ class UFC_WatchContact
53eae167
RB
1259/** Filters users watched by selected user
1260 */
009b8ab7 1261class UFC_WatchContact extends UFC_Contact
4e7bf1e0 1262{
dcc63ed5 1263 public function buildCondition(PlFilter &$uf)
4e7bf1e0 1264 {
009b8ab7 1265 if (!$this->user->watchContacts()) {
dcc63ed5 1266 return PlFilterCondition::COND_FALSE;
009b8ab7
FB
1267 }
1268 return parent::buildCondition($uf);
4e7bf1e0
FB
1269 }
1270}
8363588b 1271// }}}
4e7bf1e0
FB
1272
1273
d865c296
FB
1274/******************
1275 * ORDERS
1276 ******************/
1277
8363588b 1278// {{{ class UserFilterOrder
2d83cac9
RB
1279/** Base class for ordering results of a query.
1280 * Parameters for the ordering must be given to the constructor ($desc for a
1281 * descending order).
1282 * The getSortTokens function is used to get actual ordering part of the query.
1283 */
7ca75030 1284abstract class UserFilterOrder extends PlFilterOrder
d865c296 1285{
2d83cac9
RB
1286 /** This function must return the tokens to use for ordering
1287 * @param &$uf The UserFilter whose results must be ordered
1288 * @return The name of the field to use for ordering results
1289 */
61f61261 1290// abstract protected function getSortTokens(UserFilter &$uf);
d865c296 1291}
8363588b 1292// }}}
d865c296 1293
8363588b 1294// {{{ class UFO_Promo
5d2e55c7
RB
1295/** Orders users by promotion
1296 * @param $grade Formation whose promotion users should be sorted by (restricts results to users of that formation)
53eae167
RB
1297 * @param $desc Whether sort is descending
1298 */
d865c296
FB
1299class UFO_Promo extends UserFilterOrder
1300{
1301 private $grade;
1302
1303 public function __construct($grade = null, $desc = false)
1304 {
009b8ab7 1305 parent::__construct($desc);
d865c296 1306 $this->grade = $grade;
d865c296
FB
1307 }
1308
61f61261 1309 protected function getSortTokens(PlFilter &$uf)
d865c296
FB
1310 {
1311 if (UserFilter::isGrade($this->grade)) {
1312 $sub = $uf->addEducationFilter($this->grade);
1313 return 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
1314 } else {
1315 $sub = $uf->addDisplayFilter();
1316 return 'pd' . $sub . '.promo';
1317 }
1318 }
1319}
8363588b 1320// }}}
d865c296 1321
8363588b 1322// {{{ class UFO_Name
53eae167 1323/** Sorts users by name
5d2e55c7
RB
1324 * @param $type Type of name on which to sort (firstname...)
1325 * @param $variant Variant of that name to use (marital, ordinary...)
53eae167
RB
1326 * @param $particle Set to true if particles should be included in the sorting order
1327 * @param $desc If sort order should be descending
1328 */
d865c296
FB
1329class UFO_Name extends UserFilterOrder
1330{
1331 private $type;
1332 private $variant;
1333 private $particle;
1334
1335 public function __construct($type, $variant = null, $particle = false, $desc = false)
1336 {
009b8ab7 1337 parent::__construct($desc);
d865c296
FB
1338 $this->type = $type;
1339 $this->variant = $variant;
1340 $this->particle = $particle;
d865c296
FB
1341 }
1342
61f61261 1343 protected function getSortTokens(PlFilter &$uf)
d865c296
FB
1344 {
1345 if (UserFilter::isDisplayName($this->type)) {
1346 $sub = $uf->addDisplayFilter();
1347 return 'pd' . $sub . '.' . $this->type;
1348 } else {
1349 $sub = $uf->addNameFilter($this->type, $this->variant);
1350 if ($this->particle) {
1351 return 'CONCAT(pn' . $sub . '.particle, \' \', pn' . $sub . '.name)';
1352 } else {
1353 return 'pn' . $sub . '.name';
1354 }
1355 }
1356 }
1357}
8363588b 1358// }}}
d865c296 1359
40585144
RB
1360// {{{ class UFO_Score
1361class UFO_Score extends UserFilterOrder
1362{
61f61261 1363 protected function getSortTokens(PlFilter &$uf)
40585144
RB
1364 {
1365 $sub = $uf->addNameTokensFilter();
1366 return 'SUM(' . $sub . '.score)';
1367 }
1368}
1369// }}}
1370
8363588b 1371// {{{ class UFO_Registration
53eae167
RB
1372/** Sorts users based on registration date
1373 */
38c6fe96
FB
1374class UFO_Registration extends UserFilterOrder
1375{
61f61261 1376 protected function getSortTokens(PlFilter &$uf)
38c6fe96 1377 {
009b8ab7 1378 return 'a.registration_date';
38c6fe96 1379 }
009b8ab7 1380}
8363588b 1381// }}}
38c6fe96 1382
8363588b 1383// {{{ class UFO_Birthday
53eae167
RB
1384/** Sorts users based on next birthday date
1385 */
009b8ab7
FB
1386class UFO_Birthday extends UserFilterOrder
1387{
61f61261 1388 protected function getSortTokens(PlFilter &$uf)
38c6fe96 1389 {
009b8ab7 1390 return 'p.next_birthday';
38c6fe96
FB
1391 }
1392}
8363588b 1393// }}}
38c6fe96 1394
8363588b 1395// {{{ class UFO_ProfileUpdate
53eae167
RB
1396/** Sorts users based on last profile update
1397 */
009b8ab7
FB
1398class UFO_ProfileUpdate extends UserFilterOrder
1399{
61f61261 1400 protected function getSortTokens(PlFilter &$uf)
009b8ab7
FB
1401 {
1402 return 'p.last_change';
1403 }
1404}
8363588b 1405// }}}
009b8ab7 1406
8363588b 1407// {{{ class UFO_Death
53eae167
RB
1408/** Sorts users based on death date
1409 */
009b8ab7
FB
1410class UFO_Death extends UserFilterOrder
1411{
61f61261 1412 protected function getSortTokens(PlFilter &$uf)
009b8ab7
FB
1413 {
1414 return 'p.deathdate';
1415 }
1416}
8363588b 1417// }}}
009b8ab7
FB
1418
1419
d865c296
FB
1420/***********************************
1421 *********************************
1422 USER FILTER CLASS
1423 *********************************
1424 ***********************************/
1425
8363588b 1426// {{{ class UserFilter
2d83cac9
RB
1427/** This class provides a convenient and centralized way of filtering users.
1428 *
1429 * Usage:
1430 * $uf = new UserFilter(new UFC_Blah($x, $y), new UFO_Coin($z, $t));
1431 *
1432 * Resulting UserFilter can be used to:
1433 * - get a list of User objects matching the filter
1434 * - get a list of UIDs matching the filter
1435 * - get the number of users matching the filter
1436 * - check whether a given User matches the filter
1437 * - filter a list of User objects depending on whether they match the filter
1438 *
1439 * Usage for UFC and UFO objects:
1440 * A UserFilter will call all private functions named XXXJoins.
1441 * These functions must return an array containing the list of join
1442 * required by the various UFC and UFO associated to the UserFilter.
1443 * Entries in those returned array are of the following form:
1444 * 'join_tablealias' => array('join_type', 'joined_table', 'join_criter')
1445 * which will be translated into :
1446 * join_type JOIN joined_table AS join_tablealias ON (join_criter)
1447 * in the final query.
1448 *
1449 * In the join_criter text, $ME is replaced with 'join_tablealias', $PID with
1450 * profile.pid, and $UID with auth_user_md5.user_id.
1451 *
1452 * For each kind of "JOIN" needed, a function named addXXXFilter() should be defined;
1453 * its parameter will be used to set various private vars of the UserFilter describing
1454 * the required joins ; such a function shall return the "join_tablealias" to use
1455 * when referring to the joined table.
1456 *
1457 * For example, if data from profile_job must be available to filter results,
1458 * the UFC object will call $uf-addJobFilter(), which will set the 'with_pj' var and
1459 * return 'pj', the short name to use when referring to profile_job; when building
1460 * the query, calling the jobJoins function will return an array containing a single
1461 * row:
1462 * 'pj' => array('left', 'profile_job', '$ME.pid = $UID');
1463 *
1464 * The 'register_optional' function can be used to generate unique table aliases when
1465 * the same table has to be joined several times with different aliases.
1466 */
9b8e5fb4 1467class UserFilter extends PlFilter
a087cc8d 1468{
9b8e5fb4 1469 protected $joinMethods = array();
7ca75030 1470
61f61261
RB
1471 protected $joinMetas = array(
1472 '$PID' => 'p.pid',
1473 '$UID' => 'a.uid',
9b8e5fb4 1474 );
d865c296 1475
a087cc8d 1476 private $root;
24e08e33 1477 private $sort = array();
784745ce 1478 private $query = null;
24e08e33 1479 private $orderby = null;
784745ce 1480
aa21c568 1481 private $lastcount = null;
d865c296 1482
24e08e33 1483 public function __construct($cond = null, $sort = null)
5dd9d823 1484 {
06598c13 1485 if (empty($this->joinMethods)) {
d865c296
FB
1486 $class = new ReflectionClass('UserFilter');
1487 foreach ($class->getMethods() as $method) {
1488 $name = $method->getName();
1489 if (substr($name, -5) == 'Joins' && $name != 'buildJoins') {
06598c13 1490 $this->joinMethods[] = $name;
d865c296
FB
1491 }
1492 }
1493 }
5dd9d823 1494 if (!is_null($cond)) {
06598c13 1495 if ($cond instanceof PlFilterCondition) {
5dd9d823
FB
1496 $this->setCondition($cond);
1497 }
1498 }
24e08e33
FB
1499 if (!is_null($sort)) {
1500 if ($sort instanceof UserFilterOrder) {
1501 $this->addSort($sort);
d865c296
FB
1502 } else if (is_array($sort)) {
1503 foreach ($sort as $s) {
1504 $this->addSort($s);
1505 }
24e08e33
FB
1506 }
1507 }
5dd9d823
FB
1508 }
1509
784745ce
FB
1510 private function buildQuery()
1511 {
d865c296
FB
1512 if (is_null($this->orderby)) {
1513 $orders = array();
1514 foreach ($this->sort as $sort) {
1515 $orders = array_merge($orders, $sort->buildSort($this));
1516 }
1517 if (count($orders) == 0) {
1518 $this->orderby = '';
1519 } else {
1520 $this->orderby = 'ORDER BY ' . implode(', ', $orders);
1521 }
1522 }
784745ce
FB
1523 if (is_null($this->query)) {
1524 $where = $this->root->buildCondition($this);
f7ea7450
RB
1525 if ($this->with_forced_sn) {
1526 $this->requireProfiles();
1527 $from = 'search_name AS sn';
1528 } else if ($this->with_accounts) {
b8dcf62d
RB
1529 $from = 'accounts AS a';
1530 } else {
1531 $this->requireProfiles();
1532 $from = 'profiles AS p';
1533 }
f7ea7450 1534 $joins = $this->buildJoins();
b8dcf62d 1535 $this->query = 'FROM ' . $from . '
784745ce
FB
1536 ' . $joins . '
1537 WHERE (' . $where . ')';
1538 }
1539 }
1540
7ca75030 1541 private function getUIDList($uids = null, PlLimit &$limit)
d865c296 1542 {
b8dcf62d 1543 $this->requireAccounts();
d865c296 1544 $this->buildQuery();
7ca75030 1545 $lim = $limit->getSql();
d865c296
FB
1546 $cond = '';
1547 if (!is_null($uids)) {
07eb5b0e 1548 $cond = ' AND a.uid IN ' . XDB::formatArray($uids);
d865c296
FB
1549 }
1550 $fetched = XDB::fetchColumn('SELECT SQL_CALC_FOUND_ROWS a.uid
1551 ' . $this->query . $cond . '
1552 GROUP BY a.uid
1553 ' . $this->orderby . '
7ca75030 1554 ' . $lim);
d865c296
FB
1555 $this->lastcount = (int)XDB::fetchOneCell('SELECT FOUND_ROWS()');
1556 return $fetched;
1557 }
1558
043b104b
RB
1559 private function getPIDList($pids = null, PlLimit &$limit)
1560 {
1561 $this->requireProfiles();
1562 $this->buildQuery();
1563 $lim = $limit->getSql();
1564 $cond = '';
1565 if (!is_null($pids)) {
1566 $cond = ' AND p.pid IN ' . XDB::formatArray($pids);
1567 }
1568 $fetched = XDB::fetchColumn('SELECT SQL_CALC_FOUND_ROWS p.pid
1569 ' . $this->query . $cond . '
1570 GROUP BY p.pid
1571 ' . $this->orderby . '
1572 ' . $lim);
1573 $this->lastcount = (int)XDB::fetchOneCell('SELECT FOUND_ROWS()');
1574 return $fetched;
1575 }
1576
434570c4
FB
1577 private static function defaultLimit($limit) {
1578 if ($limit == null) {
1579 return new PlLimit();
1580 } else {
1581 return $limit;
1582 }
1583 }
1584
a087cc8d
FB
1585 /** Check that the user match the given rule.
1586 */
1587 public function checkUser(PlUser &$user)
1588 {
b8dcf62d 1589 $this->requireAccounts();
784745ce
FB
1590 $this->buildQuery();
1591 $count = (int)XDB::fetchOneCell('SELECT COUNT(*)
1592 ' . $this->query . XDB::format(' AND a.uid = {?}', $user->id()));
1593 return $count == 1;
a087cc8d
FB
1594 }
1595
043b104b
RB
1596 /** Check that the profile match the given rule.
1597 */
1598 public function checkProfile(Profile &$profile)
1599 {
1600 $this->requireProfiles();
1601 $this->buildQuery();
1602 $count = (int)XDB::fetchOneCell('SELECT COUNT(*)
1603 ' . $this->query . XDB::format(' AND p.pid = {?}', $profile->id()));
1604 return $count == 1;
1605 }
1606
1607 /** Default filter is on users
a087cc8d 1608 */
434570c4 1609 public function filter(array $users, $limit = null)
a087cc8d 1610 {
434570c4 1611 return $this->filterUsers($users, self::defaultLimit($limit));
043b104b
RB
1612 }
1613
1614 /** Filter a list of users to extract the users matching the rule.
1615 */
434570c4 1616 public function filterUsers(array $users, $limit = null)
043b104b 1617 {
434570c4 1618 $limit = self::defaultLimit($limit);
b8dcf62d 1619 $this->requireAccounts();
4927ee54
FB
1620 $this->buildQuery();
1621 $table = array();
1622 $uids = array();
1623 foreach ($users as $user) {
07eb5b0e
FB
1624 if ($user instanceof PlUser) {
1625 $uid = $user->id();
1626 } else {
1627 $uid = $user;
1628 }
1629 $uids[] = $uid;
1630 $table[$uid] = $user;
4927ee54 1631 }
7ca75030 1632 $fetched = $this->getUIDList($uids, $limit);
a087cc8d 1633 $output = array();
4927ee54
FB
1634 foreach ($fetched as $uid) {
1635 $output[] = $table[$uid];
a087cc8d
FB
1636 }
1637 return $output;
1638 }
1639
043b104b
RB
1640 /** Filter a list of profiles to extract the users matching the rule.
1641 */
434570c4 1642 public function filterProfiles(array $profiles, $limit = null)
043b104b 1643 {
434570c4 1644 $limit = self::defaultLimit($limit);
043b104b
RB
1645 $this->requireProfiles();
1646 $this->buildQuery();
1647 $table = array();
1648 $pids = array();
1649 foreach ($profiles as $profile) {
1650 if ($profile instanceof Profile) {
1651 $pid = $profile->id();
1652 } else {
1653 $pid = $profile;
1654 }
1655 $pids[] = $pid;
1656 $table[$pid] = $profile;
1657 }
1658 $fetched = $this->getPIDList($pids, $limit);
1659 $output = array();
1660 foreach ($fetched as $pid) {
1661 $output[] = $table[$pid];
1662 }
1663 return $output;
1664 }
1665
434570c4 1666 public function getUIDs($limit = null)
7ca75030 1667 {
833a6e86
FB
1668 $limit = self::defaultLimit($limit);
1669 return $this->getUIDList(null, $limit);
7ca75030
RB
1670 }
1671
434570c4 1672 public function getPIDs($limit = null)
043b104b 1673 {
833a6e86
FB
1674 $limit = self::defaultLimit($limit);
1675 return $this->getPIDList(null, $limit);
043b104b
RB
1676 }
1677
434570c4 1678 public function getUsers($limit = null)
4927ee54 1679 {
7ca75030 1680 return User::getBulkUsersWithUIDs($this->getUIDs($limit));
d865c296
FB
1681 }
1682
434570c4 1683 public function getProfiles($limit = null)
043b104b
RB
1684 {
1685 return Profile::getBulkProfilesWithPIDs($this->getPIDs($limit));
1686 }
1687
434570c4 1688 public function get($limit = null)
d865c296 1689 {
7ca75030 1690 return $this->getUsers($limit);
4927ee54
FB
1691 }
1692
d865c296 1693 public function getTotalCount()
4927ee54 1694 {
38c6fe96 1695 if (is_null($this->lastcount)) {
aa21c568 1696 $this->buildQuery();
2b9ca54d 1697 if ($this->with_accounts) {
b8dcf62d
RB
1698 $field = 'a.uid';
1699 } else {
1700 $field = 'p.pid';
1701 }
1702 return (int)XDB::fetchOneCell('SELECT COUNT(DISTINCT ' . $field . ')
7e735012 1703 ' . $this->query);
38c6fe96
FB
1704 } else {
1705 return $this->lastcount;
1706 }
4927ee54
FB
1707 }
1708
9b8e5fb4 1709 public function setCondition(PlFilterCondition &$cond)
a087cc8d
FB
1710 {
1711 $this->root =& $cond;
784745ce 1712 $this->query = null;
a087cc8d
FB
1713 }
1714
9b8e5fb4 1715 public function addSort(PlFilterOrder &$sort)
24e08e33 1716 {
d865c296
FB
1717 $this->sort[] = $sort;
1718 $this->orderby = null;
24e08e33
FB
1719 }
1720
a087cc8d
FB
1721 static public function getLegacy($promo_min, $promo_max)
1722 {
a087cc8d 1723 if ($promo_min != 0) {
784745ce 1724 $min = new UFC_Promo('>=', self::GRADE_ING, intval($promo_min));
5dd9d823
FB
1725 } else {
1726 $min = new UFC_True();
a087cc8d 1727 }
a087cc8d 1728 if ($promo_max != 0) {
784745ce 1729 $max = new UFC_Promo('<=', self::GRADE_ING, intval($promo_max));
a087cc8d 1730 } else {
5dd9d823 1731 $max = new UFC_True();
a087cc8d 1732 }
9b8e5fb4 1733 return new UserFilter(new PFC_And($min, $max));
a087cc8d 1734 }
784745ce 1735
07eb5b0e
FB
1736 static public function sortByName()
1737 {
1738 return array(new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1739 }
1740
1741 static public function sortByPromo()
1742 {
1743 return array(new UFO_Promo(), new UFO_Name(self::LASTNAME), new UFO_Name(self::FIRSTNAME));
1744 }
1745
aa21c568
FB
1746 static private function getDBSuffix($string)
1747 {
1748 return preg_replace('/[^a-z0-9]/i', '', $string);
1749 }
1750
1751
2d83cac9
RB
1752 /** Stores a new (and unique) table alias in the &$table table
1753 * @param &$table Array in which the table alias must be stored
1754 * @param $val Value which will then be used to build the join
1755 * @return Name of the newly created alias
1756 */
aa21c568
FB
1757 private $option = 0;
1758 private function register_optional(array &$table, $val)
1759 {
1760 if (is_null($val)) {
1761 $sub = $this->option++;
1762 $index = null;
1763 } else {
1764 $sub = self::getDBSuffix($val);
1765 $index = $val;
1766 }
1767 $sub = '_' . $sub;
1768 $table[$sub] = $index;
1769 return $sub;
1770 }
784745ce 1771
b8dcf62d
RB
1772 /** PROFILE VS ACCOUNT
1773 */
f7ea7450
RB
1774 private $with_profiles = false;
1775 private $with_accounts = false;
1776 private $with_forced_sn = false;
b8dcf62d
RB
1777 public function requireAccounts()
1778 {
1779 $this->with_accounts = true;
1780 }
1781
1782 public function requireProfiles()
1783 {
1784 $this->with_profiles = true;
1785 }
1786
f7ea7450
RB
1787 /** Forces the "FROM" to use search_name instead of accounts or profiles */
1788 public function forceSearchName()
1789 {
1790 $this->with_forced_sn = true;
1791 }
1792
b8dcf62d
RB
1793 protected function accountJoins()
1794 {
1795 $joins = array();
f7ea7450
RB
1796 /** Quick search is much more efficient with sn first and PID second */
1797 if ($this->with_forced_sn) {
1798 $joins['p'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profiles', '$PID = sn.uid');
1799 if ($this->with_accounts) {
1800 $joins['ap'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'account_profiles', '$ME.pid = $PID');
1801 $joins['a'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'accounts', '$UID = ap.uid');
1802 }
1803 } else if ($this->with_profiles && $this->with_accounts) {
b8dcf62d
RB
1804 $joins['ap'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'account_profiles', '$ME.uid = $UID AND FIND_IN_SET(\'owner\', ap.perms)');
1805 $joins['p'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profiles', '$PID = ap.pid');
1806 }
1807 return $joins;
1808 }
1809
d865c296
FB
1810 /** DISPLAY
1811 */
38c6fe96 1812 const DISPLAY = 'display';
d865c296
FB
1813 private $pd = false;
1814 public function addDisplayFilter()
1815 {
b8dcf62d 1816 $this->requireProfiles();
d865c296
FB
1817 $this->pd = true;
1818 return '';
1819 }
1820
9b8e5fb4 1821 protected function displayJoins()
d865c296
FB
1822 {
1823 if ($this->pd) {
7ca75030 1824 return array('pd' => new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_display', '$ME.pid = $PID'));
d865c296
FB
1825 } else {
1826 return array();
1827 }
1828 }
1829
784745ce
FB
1830 /** NAMES
1831 */
d865c296 1832 /* name tokens */
784745ce
FB
1833 const LASTNAME = 'lastname';
1834 const FIRSTNAME = 'firstname';
1835 const NICKNAME = 'nickname';
1836 const PSEUDONYM = 'pseudonym';
1837 const NAME = 'name';
d865c296 1838 /* name variants */
784745ce
FB
1839 const VN_MARITAL = 'marital';
1840 const VN_ORDINARY = 'ordinary';
1841 const VN_OTHER = 'other';
1842 const VN_INI = 'ini';
d865c296
FB
1843 /* display names */
1844 const DN_FULL = 'directory_name';
1845 const DN_DISPLAY = 'yourself';
1846 const DN_YOURSELF = 'yourself';
1847 const DN_DIRECTORY = 'directory_name';
1848 const DN_PRIVATE = 'private_name';
1849 const DN_PUBLIC = 'public_name';
1850 const DN_SHORT = 'short_name';
1851 const DN_SORT = 'sort_name';
784745ce
FB
1852
1853 static public $name_variants = array(
1854 self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY),
d865c296
FB
1855 self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER)
1856 );
784745ce
FB
1857
1858 static public function assertName($name)
1859 {
1860 if (!Profile::getNameTypeId($name)) {
9b8e5fb4 1861 Platal::page()->kill('Invalid name type: ' . $name);
784745ce
FB
1862 }
1863 }
1864
d865c296
FB
1865 static public function isDisplayName($name)
1866 {
1867 return $name == self::DN_FULL || $name == self::DN_DISPLAY
1868 || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY
1869 || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC
1870 || $name == self::DN_SHORT || $name == self::DN_SORT;
1871 }
1872
784745ce 1873 private $pn = array();
784745ce
FB
1874 public function addNameFilter($type, $variant = null)
1875 {
b8dcf62d 1876 $this->requireProfiles();
784745ce
FB
1877 if (!is_null($variant)) {
1878 $ft = $type . '_' . $variant;
1879 } else {
1880 $ft = $type;
1881 }
1882 $sub = '_' . $ft;
1883 self::assertName($ft);
1884
1885 if (!is_null($variant) && $variant == 'other') {
aa21c568 1886 $sub .= $this->option++;
784745ce
FB
1887 }
1888 $this->pn[$sub] = Profile::getNameTypeId($ft);
1889 return $sub;
1890 }
1891
9b8e5fb4 1892 protected function nameJoins()
784745ce
FB
1893 {
1894 $joins = array();
1895 foreach ($this->pn as $sub => $type) {
7ca75030 1896 $joins['pn' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_name', '$ME.pid = $PID AND $ME.typeid = ' . $type);
784745ce
FB
1897 }
1898 return $joins;
1899 }
1900
40585144
RB
1901 /** NAMETOKENS
1902 */
1903 private $with_sn = false;
f7ea7450
RB
1904 // Set $doingQuickSearch to true if you wish to optimize the query
1905 public function addNameTokensFilter($doingQuickSearch = false)
40585144
RB
1906 {
1907 $this->requireProfiles();
f7ea7450 1908 $this->with_forced_sn = ($this->with_forced_sn || $doingQuickSearch);
40585144
RB
1909 $this->with_sn = true;
1910 return 'sn';
1911 }
1912
1913 protected function nameTokensJoins()
1914 {
f7ea7450
RB
1915 /* We don't return joins, since with_sn forces the SELECT to run on search_name first */
1916 if ($this->with_sn && !$this->with_forced_sn) {
1917 return array(
1918 'sn' => new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'search_name', '$ME.uid = $PID')
1919 );
1920 } else {
1921 return array();
40585144 1922 }
40585144
RB
1923 }
1924
a7f8e48a
RB
1925 /** NATIONALITY
1926 */
1927
1928 private $with_nat = false;
1929 public function addNationalityFilter()
1930 {
1931 $this->with_nat = true;
1932 return 'ngc';
1933 }
1934
1935 protected function nationalityJoins()
1936 {
1937 $joins = array();
1938 if ($this->with_nat) {
1939 $joins['ngc'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'geoloc_countries', '$ME.iso_3166_1_a2 = p.nationality1 OR $ME.iso_3166_1_a2 = p.nationality2 OR $ME.iso_3166_1_a2 = p.nationality3');
1940 }
1941 return $joins;
1942 }
1943
784745ce
FB
1944 /** EDUCATION
1945 */
1946 const GRADE_ING = 'Ing.';
1947 const GRADE_PHD = 'PhD';
1948 const GRADE_MST = 'M%';
1949 static public function isGrade($grade)
1950 {
38c6fe96 1951 return $grade == self::GRADE_ING || $grade == self::GRADE_PHD || $grade == self::GRADE_MST;
784745ce
FB
1952 }
1953
1954 static public function assertGrade($grade)
1955 {
1956 if (!self::isGrade($grade)) {
1957 Platal::page()->killError("Diplôme non valide");
1958 }
1959 }
1960
d865c296
FB
1961 static public function promoYear($grade)
1962 {
1963 // XXX: Definition of promotion for phds and masters might change in near future.
1964 return ($grade == UserFilter::GRADE_ING) ? 'entry_year' : 'grad_year';
1965 }
1966
784745ce
FB
1967 private $pepe = array();
1968 private $with_pee = false;
784745ce
FB
1969 public function addEducationFilter($x = false, $grade = null)
1970 {
b8dcf62d 1971 $this->requireProfiles();
784745ce 1972 if (!$x) {
aa21c568
FB
1973 $index = $this->option;
1974 $sub = $this->option++;
784745ce
FB
1975 } else {
1976 self::assertGrade($grade);
1977 $index = $grade;
1978 $sub = $grade[0];
1979 $this->with_pee = true;
1980 }
1981 $sub = '_' . $sub;
1982 $this->pepe[$index] = $sub;
1983 return $sub;
1984 }
1985
9b8e5fb4 1986 protected function educationJoins()
784745ce
FB
1987 {
1988 $joins = array();
1989 if ($this->with_pee) {
7ca75030 1990 $joins['pee'] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'profile_education_enum', 'pee.abbreviation = \'X\'');
784745ce
FB
1991 }
1992 foreach ($this->pepe as $grade => $sub) {
1993 if ($this->isGrade($grade)) {
7ca75030
RB
1994 $joins['pe' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_education', '$ME.eduid = pee.id AND $ME.uid = $PID');
1995 $joins['pede' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid AND $ME.abbreviation LIKE ' .
784745ce
FB
1996 XDB::format('{?}', $grade));
1997 } else {
7ca75030
RB
1998 $joins['pe' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_education', '$ME.uid = $PID');
1999 $joins['pee' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'profile_education_enum', '$ME.id = pe' . $sub . '.eduid');
2000 $joins['pede' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'profile_education_degree_enum', '$ME.id = pe' . $sub . '.degreeid');
784745ce
FB
2001 }
2002 }
2003 return $joins;
2004 }
4927ee54
FB
2005
2006
2007 /** GROUPS
2008 */
2009 private $gpm = array();
4927ee54
FB
2010 public function addGroupFilter($group = null)
2011 {
b8dcf62d 2012 $this->requireAccounts();
4927ee54
FB
2013 if (!is_null($group)) {
2014 if (ctype_digit($group)) {
2015 $index = $sub = $group;
2016 } else {
2017 $index = $group;
aa21c568 2018 $sub = self::getDBSuffix($group);
4927ee54
FB
2019 }
2020 } else {
aa21c568 2021 $sub = 'group_' . $this->option++;
4927ee54
FB
2022 $index = null;
2023 }
2024 $sub = '_' . $sub;
2025 $this->gpm[$sub] = $index;
2026 return $sub;
2027 }
2028
9b8e5fb4 2029 protected function groupJoins()
4927ee54
FB
2030 {
2031 $joins = array();
2032 foreach ($this->gpm as $sub => $key) {
2033 if (is_null($key)) {
eb41eda9
FB
2034 $joins['gpa' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'groups');
2035 $joins['gpm' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'group_members', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
4927ee54 2036 } else if (ctype_digit($key)) {
eb41eda9 2037 $joins['gpm' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'group_members', '$ME.uid = $UID AND $ME.asso_id = ' . $key);
4927ee54 2038 } else {
eb41eda9
FB
2039 $joins['gpa' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_INNER, 'groups', XDB::format('$ME.diminutif = {?}', $key));
2040 $joins['gpm' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'group_members', '$ME.uid = $UID AND $ME.asso_id = gpa' . $sub . '.id');
4927ee54
FB
2041 }
2042 }
2043 return $joins;
0fb3713c
RB
2044 }
2045
2046 /** BINETS
2047 */
2048
a7f8e48a
RB
2049 private $with_bi = false;
2050 private $with_bd = false;
d7ddf29b 2051 public function addBinetsFilter($with_enum = false)
0fb3713c
RB
2052 {
2053 $this->requireProfiles();
a7f8e48a
RB
2054 $this->with_bi = true;
2055 if ($with_enum) {
2056 $this->with_bd = true;
2057 return 'bd';
2058 } else {
2059 return 'bi';
2060 }
0fb3713c
RB
2061 }
2062
2063 protected function binetsJoins()
2064 {
2065 $joins = array();
a7f8e48a 2066 if ($this->with_bi) {
d7ddf29b 2067 $joins['bi'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'binets_ins', '$ME.user_id = $PID');
0fb3713c 2068 }
a7f8e48a
RB
2069 if ($this->with_bd) {
2070 $joins['bd'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'binets_def', '$ME.id = bi.binet_id');
2071 }
0fb3713c 2072 return $joins;
4927ee54 2073 }
aa21c568
FB
2074
2075 /** EMAILS
2076 */
2077 private $e = array();
2078 public function addEmailRedirectFilter($email = null)
2079 {
b8dcf62d 2080 $this->requireAccounts();
aa21c568
FB
2081 return $this->register_optional($this->e, $email);
2082 }
2083
2084 private $ve = array();
2085 public function addVirtualEmailFilter($email = null)
2086 {
21401768 2087 $this->addAliasFilter(self::ALIAS_FORLIFE);
aa21c568
FB
2088 return $this->register_optional($this->ve, $email);
2089 }
2090
21401768
FB
2091 const ALIAS_BEST = 'bestalias';
2092 const ALIAS_FORLIFE = 'forlife';
aa21c568
FB
2093 private $al = array();
2094 public function addAliasFilter($alias = null)
2095 {
b8dcf62d 2096 $this->requireAccounts();
aa21c568
FB
2097 return $this->register_optional($this->al, $alias);
2098 }
2099
9b8e5fb4 2100 protected function emailJoins()
aa21c568
FB
2101 {
2102 global $globals;
2103 $joins = array();
2104 foreach ($this->e as $sub=>$key) {
2105 if (is_null($key)) {
7ca75030 2106 $joins['e' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'emails', '$ME.uid = $UID AND $ME.flags != \'filter\'');
aa21c568 2107 } else {
7ca75030 2108 $joins['e' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'emails', XDB::format('$ME.uid = $UID AND $ME.flags != \'filter\' AND $ME.email = {?}', $key));
aa21c568
FB
2109 }
2110 }
21401768 2111 foreach ($this->al as $sub=>$key) {
aa21c568 2112 if (is_null($key)) {
7ca75030 2113 $joins['al' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\')');
21401768 2114 } else if ($key == self::ALIAS_BEST) {
7ca75030 2115 $joins['al' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'aliases', '$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND FIND_IN_SET(\'bestalias\', $ME.flags)');
21401768 2116 } else if ($key == self::ALIAS_FORLIFE) {
7ca75030 2117 $joins['al' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'aliases', '$ME.id = $UID AND $ME.type = \'a_vie\'');
aa21c568 2118 } else {
7ca75030 2119 $joins['al' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'aliases', XDB::format('$ME.id = $UID AND $ME.type IN (\'alias\', \'a_vie\') AND $ME.alias = {?}', $key));
aa21c568 2120 }
aa21c568 2121 }
21401768 2122 foreach ($this->ve as $sub=>$key) {
aa21c568 2123 if (is_null($key)) {
7ca75030 2124 $joins['v' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'virtual', '$ME.type = \'user\'');
aa21c568 2125 } else {
7ca75030 2126 $joins['v' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'virtual', XDB::format('$ME.type = \'user\' AND $ME.alias = {?}', $key));
aa21c568 2127 }
7ca75030 2128 $joins['vr' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'virtual_redirect', XDB::format('$ME.vid = v' . $sub . '.vid
21401768
FB
2129 AND ($ME.redirect IN (CONCAT(al_forlife.alias, \'@\', {?}),
2130 CONCAT(al_forlife.alias, \'@\', {?}),
2131 a.email))',
2132 $globals->mail->domain, $globals->mail->domain2));
aa21c568
FB
2133 }
2134 return $joins;
2135 }
3f42a6ad
FB
2136
2137
c4b24511
RB
2138 /** ADDRESSES
2139 */
036d1637 2140 private $with_pa = false;
c4b24511
RB
2141 public function addAddressFilter()
2142 {
b8dcf62d 2143 $this->requireProfiles();
036d1637
RB
2144 $this->with_pa = true;
2145 return 'pa';
c4b24511
RB
2146 }
2147
2b9ca54d
RB
2148 private $with_pac = false;
2149 public function addAddressCountryFilter()
2150 {
2151 $this->requireProfiles();
2152 $this->addAddressFilter();
2153 $this->with_pac = true;
2154 return 'gc';
2155 }
2156
d7ddf29b 2157 private $with_pal = false;
2b9ca54d
RB
2158 public function addAddressLocalityFilter()
2159 {
2160 $this->requireProfiles();
2161 $this->addAddressFilter();
2162 $this->with_pal = true;
2163 return 'gl';
2164 }
2165
9b8e5fb4 2166 protected function addressJoins()
c4b24511
RB
2167 {
2168 $joins = array();
036d1637 2169 if ($this->with_pa) {
d7ddf29b 2170 $joins['pa'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_addresses', '$ME.pid = $PID');
c4b24511 2171 }
2b9ca54d
RB
2172 if ($this->with_pac) {
2173 $joins['gc'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'geoloc_countries', '$ME.iso_3166_1_a2 = pa.countryID');
2174 }
2175 if ($this->with_pal) {
2176 $joins['gl'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'geoloc_localities', '$ME.id = pa.localityID');
2177 }
c4b24511
RB
2178 return $joins;
2179 }
2180
2181
4083b126
RB
2182 /** CORPS
2183 */
2184
2185 private $pc = false;
2186 private $pce = array();
2187 private $pcr = false;
2188 public function addCorpsFilter($type)
2189 {
b8dcf62d 2190 $this->requireProfiles();
4083b126
RB
2191 $this->pc = true;
2192 if ($type == UFC_Corps::CURRENT) {
2193 $pce['pcec'] = 'current_corpsid';
2194 return 'pcec';
2195 } else if ($type == UFC_Corps::ORIGIN) {
2196 $pce['pceo'] = 'original_corpsid';
2197 return 'pceo';
2198 }
2199 }
2200
2201 public function addCorpsRankFilter()
2202 {
b8dcf62d 2203 $this->requireProfiles();
4083b126
RB
2204 $this->pc = true;
2205 $this->pcr = true;
2206 return 'pcr';
2207 }
2208
9b8e5fb4 2209 protected function corpsJoins()
4083b126
RB
2210 {
2211 $joins = array();
2212 if ($this->pc) {
7ca75030 2213 $joins['pc'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_corps', '$ME.uid = $UID');
4083b126
RB
2214 }
2215 if ($this->pcr) {
7ca75030 2216 $joins['pcr'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_corps_rank_enum', '$ME.id = pc.rankid');
4083b126
RB
2217 }
2218 foreach($this->pce as $sub => $field) {
7ca75030 2219 $joins[$sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_corps_enum', '$ME.id = pc.' . $field);
4083b126
RB
2220 }
2221 return $joins;
2222 }
2223
6a99c3ac
RB
2224 /** JOBS
2225 */
2226
61f61261
RB
2227 const JOB_SECTOR = 0x0001;
2228 const JOB_SUBSECTOR = 0x0002;
2229 const JOB_SUBSUBSECTOR = 0x0004;
2230 const JOB_ALTERNATES = 0x0008;
2231 const JOB_USERDEFINED = 0x0010;
2232 const JOB_CV = 0x0020;
2233
2234 const JOB_SECTORIZATION = 0x000F;
2235 const JOB_ANY = 0x003F;
6a99c3ac
RB
2236
2237 /** Joins :
2238 * pj => profile_job
2239 * pje => profile_job_enum
2240 * pjse => profile_job_sector_enum
2241 * pjsse => profile_job_subsector_enum
2242 * pjssse => profile_job_subsubsector_enum
2243 * pja => profile_job_alternates
2244 */
2245 private $with_pj = false;
2246 private $with_pje = false;
2247 private $with_pjse = false;
2248 private $with_pjsse = false;
2249 private $with_pjssse = false;
2250 private $with_pja = false;
2251
2252 public function addJobFilter()
2253 {
b8dcf62d 2254 $this->requireProfiles();
6a99c3ac
RB
2255 $this->with_pj = true;
2256 return 'pj';
2257 }
2258
2259 public function addJobCompanyFilter()
2260 {
2261 $this->addJobFilter();
2262 $this->with_pje = true;
2263 return 'pje';
2264 }
2265
2266 public function addJobSectorizationFilter($type)
2267 {
2268 $this->addJobFilter();
2269 if ($type == self::JOB_SECTOR) {
2270 $this->with_pjse = true;
2271 return 'pjse';
2272 } else if ($type == self::JOB_SUBSECTOR) {
2273 $this->with_pjsse = true;
2274 return 'pjsse';
2275 } else if ($type == self::JOB_SUBSUBSECTOR) {
2276 $this->with_pjssse = true;
2277 return 'pjssse';
2278 } else if ($type == self::JOB_ALTERNATES) {
2279 $this->with_pja = true;
2280 return 'pja';
2281 }
2282 }
2283
9b8e5fb4 2284 protected function jobJoins()
6a99c3ac
RB
2285 {
2286 $joins = array();
2287 if ($this->with_pj) {
7ca75030 2288 $joins['pj'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job', '$ME.uid = $UID');
6a99c3ac
RB
2289 }
2290 if ($this->with_pje) {
7ca75030 2291 $joins['pje'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job_enum', '$ME.id = pj.jobid');
6a99c3ac
RB
2292 }
2293 if ($this->with_pjse) {
7ca75030 2294 $joins['pjse'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job_sector_enum', '$ME.id = pj.sectorid');
6a99c3ac
RB
2295 }
2296 if ($this->with_pjsse) {
7ca75030 2297 $joins['pjsse'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job_subsector_enum', '$ME.id = pj.subsectorid');
6a99c3ac
RB
2298 }
2299 if ($this->with_pjssse) {
7ca75030 2300 $joins['pjssse'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job_subsubsector_enum', '$ME.id = pj.subsubsectorid');
6a99c3ac
RB
2301 }
2302 if ($this->with_pja) {
7ca75030 2303 $joins['pja'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_job_alternates', '$ME.subsubsectorid = pj.subsubsectorid');
6a99c3ac
RB
2304 }
2305 return $joins;
2306 }
2307
0a2e9c74
RB
2308 /** NETWORKING
2309 */
2310
2311 private $with_pnw = false;
2312 public function addNetworkingFilter()
2313 {
b8dcf62d 2314 $this->requireAccounts();
0a2e9c74
RB
2315 $this->with_pnw = true;
2316 return 'pnw';
2317 }
2318
9b8e5fb4 2319 protected function networkingJoins()
0a2e9c74
RB
2320 {
2321 $joins = array();
2322 if ($this->with_pnw) {
7ca75030 2323 $joins['pnw'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_networking', '$ME.uid = $UID');
0a2e9c74
RB
2324 }
2325 return $joins;
2326 }
2327
6d62969e
RB
2328 /** PHONE
2329 */
2330
2d83cac9 2331 private $with_ptel = false;
6d62969e
RB
2332
2333 public function addPhoneFilter()
2334 {
b8dcf62d 2335 $this->requireAccounts();
2d83cac9 2336 $this->with_ptel = true;
6d62969e
RB
2337 return 'ptel';
2338 }
2339
9b8e5fb4 2340 protected function phoneJoins()
6d62969e
RB
2341 {
2342 $joins = array();
2d83cac9 2343 if ($this->with_ptel) {
9b8e5fb4 2344 $joins['ptel'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_phones', '$ME.uid = $UID');
6d62969e
RB
2345 }
2346 return $joins;
2347 }
2348
ceb512d2
RB
2349 /** MEDALS
2350 */
2351
2d83cac9 2352 private $with_pmed = false;
ceb512d2
RB
2353 public function addMedalFilter()
2354 {
b8dcf62d 2355 $this->requireProfiles();
2d83cac9 2356 $this->with_pmed = true;
ceb512d2
RB
2357 return 'pmed';
2358 }
2359
9b8e5fb4 2360 protected function medalJoins()
ceb512d2
RB
2361 {
2362 $joins = array();
2d83cac9 2363 if ($this->with_pmed) {
7ca75030 2364 $joins['pmed'] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'profile_medals_sub', '$ME.uid = $UID');
ceb512d2
RB
2365 }
2366 return $joins;
2367 }
2368
671b7073
RB
2369 /** MENTORING
2370 */
2371
2372 private $pms = array();
2373 const MENTOR_EXPERTISE = 1;
2374 const MENTOR_COUNTRY = 2;
2375 const MENTOR_SECTOR = 3;
2376
2377 public function addMentorFilter($type)
2378 {
b8dcf62d 2379 $this->requireAccounts();
671b7073 2380 switch($type) {
4a93c3a3
RB
2381 case self::MENTOR_EXPERTISE:
2382 $this->pms['pme'] = 'profile_mentor';
671b7073 2383 return 'pme';
4a93c3a3
RB
2384 case self::MENTOR_COUNTRY:
2385 $this->pms['pmc'] = 'profile_mentor_country';
671b7073 2386 return 'pmc';
4a93c3a3
RB
2387 case self::MENTOR_SECTOR:
2388 $this->pms['pms'] = 'profile_mentor_sector';
671b7073
RB
2389 return 'pms';
2390 default:
5d2e55c7 2391 Platal::page()->killError("Undefined mentor filter.");
671b7073
RB
2392 }
2393 }
2394
9b8e5fb4 2395 protected function mentorJoins()
671b7073
RB
2396 {
2397 $joins = array();
2398 foreach ($this->pms as $sub => $tab) {
7ca75030 2399 $joins[$sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, $tab, '$ME.uid = $UID');
671b7073
RB
2400 }
2401 return $joins;
2402 }
2403
3f42a6ad
FB
2404 /** CONTACTS
2405 */
2406 private $cts = array();
2407 public function addContactFilter($uid = null)
2408 {
b8dcf62d 2409 $this->requireAccounts();
3f42a6ad
FB
2410 return $this->register_optional($this->cts, is_null($uid) ? null : 'user_' . $uid);
2411 }
2412
9b8e5fb4 2413 protected function contactJoins()
3f42a6ad
FB
2414 {
2415 $joins = array();
2416 foreach ($this->cts as $sub=>$key) {
2417 if (is_null($key)) {
7ca75030 2418 $joins['c' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'contacts', '$ME.contact = $UID');
3f42a6ad 2419 } else {
7ca75030 2420 $joins['c' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'contacts', XDB::format('$ME.uid = {?} AND $ME.contact = $UID', substr($key, 5)));
3f42a6ad
FB
2421 }
2422 }
2423 return $joins;
2424 }
4e7bf1e0
FB
2425
2426
2427 /** CARNET
2428 */
2429 private $wn = array();
2430 public function addWatchRegistrationFilter($uid = null)
2431 {
b8dcf62d 2432 $this->requireAccounts();
4e7bf1e0
FB
2433 return $this->register_optional($this->wn, is_null($uid) ? null : 'user_' . $uid);
2434 }
2435
2436 private $wp = array();
2437 public function addWatchPromoFilter($uid = null)
2438 {
b8dcf62d 2439 $this->requireAccounts();
4e7bf1e0
FB
2440 return $this->register_optional($this->wp, is_null($uid) ? null : 'user_' . $uid);
2441 }
2442
2443 private $w = array();
2444 public function addWatchFilter($uid = null)
2445 {
b8dcf62d 2446 $this->requireAccounts();
4e7bf1e0
FB
2447 return $this->register_optional($this->w, is_null($uid) ? null : 'user_' . $uid);
2448 }
2449
9b8e5fb4 2450 protected function watchJoins()
4e7bf1e0
FB
2451 {
2452 $joins = array();
2453 foreach ($this->w as $sub=>$key) {
2454 if (is_null($key)) {
7ca75030 2455 $joins['w' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch');
4e7bf1e0 2456 } else {
7ca75030 2457 $joins['w' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch', XDB::format('$ME.uid = {?}', substr($key, 5)));
4e7bf1e0
FB
2458 }
2459 }
2460 foreach ($this->wn as $sub=>$key) {
2461 if (is_null($key)) {
7ca75030 2462 $joins['wn' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_nonins', '$ME.ni_id = $UID');
4e7bf1e0 2463 } else {
7ca75030 2464 $joins['wn' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
4e7bf1e0
FB
2465 }
2466 }
2467 foreach ($this->wn as $sub=>$key) {
2468 if (is_null($key)) {
7ca75030 2469 $joins['wn' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_nonins', '$ME.ni_id = $UID');
4e7bf1e0 2470 } else {
7ca75030 2471 $joins['wn' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_nonins', XDB::format('$ME.uid = {?} AND $ME.ni_id = $UID', substr($key, 5)));
4e7bf1e0
FB
2472 }
2473 }
2474 foreach ($this->wp as $sub=>$key) {
2475 if (is_null($key)) {
7ca75030 2476 $joins['wp' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_promo');
4e7bf1e0 2477 } else {
7ca75030 2478 $joins['wp' . $sub] = new PlSqlJoin(PlSqlJoin::MODE_LEFT, 'watch_promo', XDB::format('$ME.uid = {?}', substr($key, 5)));
4e7bf1e0
FB
2479 }
2480 }
2481 return $joins;
2482 }
a087cc8d 2483}
8363588b 2484// }}}
3f42a6ad 2485
a7d9ab89
RB
2486// {{{ class ProfileFilter
2487class ProfileFilter extends UserFilter
2488{
434570c4 2489 public function get($limit = null)
a7d9ab89
RB
2490 {
2491 return $this->getProfiles($limit);
2492 }
2493}
2494// }}}
2495
a087cc8d
FB
2496// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
2497?>