Fix address lookup.
[platal.git] / classes / userfilter / conditions.inc.php
CommitLineData
cd0c2ac4
FB
1<?php
2/***************************************************************************
ba6ae046 3 * Copyright (C) 2003-2013 Polytechnique.org *
cd0c2ac4
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
22// {{{ abstract class UserFilterCondition
23/** This class describe objects which filter users based
24 * on various parameters.
25 * The parameters of the filter must be given to the constructor.
26 * The buildCondition function is called by UserFilter when
27 * actually building the query. That function must call
28 * $uf->addWheteverFilter so that the UserFilter makes
29 * adequate joins. It must return the 'WHERE' condition to use
30 * with the filter.
31 */
32abstract class UserFilterCondition implements PlFilterCondition
33{
57a4162e 34 const OP_EQUALS = '=';
b3deda78
FB
35 const OP_GREATER = '>';
36 const OP_NOTGREATER = '<=';
37 const OP_LESSER = '<';
38 const OP_NOTLESSER = '>=';
39 const OP_NULL = 'null';
40 const OP_NOTNULL = 'not null';
41 const OP_CONTAINS = 'contains';
42 const OP_PREFIX = 'prefix';
43 const OP_SUFFIX = 'suffix';
44
45 protected function buildExport($type)
46 {
47 $export = array('type' => $type);
48 return $export;
49 }
50
cd0c2ac4
FB
51 public function export()
52 {
53 throw new Exception("This class is not exportable");
54 }
b3deda78
FB
55
56 public static function comparisonFromXDBWildcard($wildcard)
57 {
58 switch ($wildcard) {
59 case XDB::WILDCARD_EXACT:
60 return self::OP_EQUALS;
61 case XDB::WILDCARD_PREFIX:
62 return self::OP_PREFIX;
63 case XDB::WILDCARD_SUFFIX:
64 return self::OP_SUFFIX;
65 case XDB::WILDCARD_CONTAINS:
66 return self::OP_CONTAINS;
67 }
68 throw new Exception("Unknown wildcard mode: $wildcard");
69 }
70
71 public static function xdbWildcardFromComparison($comparison)
72 {
73 if (!self::isStringComparison($comparison)) {
74 throw new Exception("Unknown string coparison: $comparison");
75 }
76 switch ($comparison) {
77 case self::OP_EQUALS:
78 return XDB::WILDCARD_EXACT;
79 case self::OP_PREFIX:
80 return XDB::WILDCARD_PREFIX;
81 case self::OP_SUFFIX:
82 return XDB::WILDCARD_SUFFIX;
83 case self::OP_CONTAINS:
84 return XDB::WILDCARD_CONTAINS;
85 }
86 }
87
88 private static function isNumericComparison($comparison)
89 {
90 return $comparison == self::OP_EQUALS
91 || $comparison == self::OP_GREATER
92 || $comparison == self::OP_NOTGREATER
93 || $comparison == self::OP_LESSER
94 || $comparison == self::OP_NOTLESSER;
95 }
96
97 private static function isStringComparison($comparison)
98 {
99 return $comparison == self::OP_EQUALS
100 || $comparison == self::OP_CONTAINS
101 || $comparison == self::OP_PREFIX
102 || $comparison == self::OP_SUFFIX;
103 }
104
105 public static function fromExport(array $export)
106 {
107 $export = new PlDict($export);
108 if (!$export->has('type')) {
109 throw new Exception("Missing type in export");
110 }
111 $type = $export->s('type');
112 $cond = null;
113 switch ($type) {
114 case 'and':
115 case 'or':
116 case 'not':
117 case 'true':
118 case 'false':
119 $class = 'pfc_' . $type;
120 $cond = new $class();
121 break;
122
123 case 'host':
124 if ($export->has('ip')) {
125 $cond = new UFC_Ip($export->s('ip'));
126 }
127 break;
128
129 case 'comment':
130 if ($export->has('text') && $export->s('comparison') == self::OP_CONTAINS) {
131 $cond = new UFC_Comment($export->s('text'));
132 }
133 break;
134
135 case 'promo':
136 if ($export->has('promo') && self::isNumericComparison($export->s('comparison'))) {
137 $cond = new UFC_Promo($export->s('comparison'),
138 $export->s('grade', UserFilter::DISPLAY),
139 $export->s('promo'));
140 }
141 break;
142
143 case 'lastname':
144 case 'name':
145 case 'firstname':
146 case 'nickname':
147 case 'pseudonym':
148 if ($export->has('text')) {
149 $flag = self::xdbWildcardFromComparison($export->s('comparison'));
150 if ($export->b('search_in_variants')) {
151 $flag |= UFC_Name::VARIANTS;
152 }
153 if ($export->b('search_in_particle')) {
154 $flag |= UFC_Name::PARTICLE;
155 }
156 $cond = new UFC_Name($type, $export->s('text'), $flag);
157 }
158 break;
159
160 case 'account_type':
161 case 'account_perm':
162 case 'hrpid':
163 case 'hruid':
164 $values = $export->v('values', array());
165 $class = 'ufc_' . str_replace('_', '', $type);
166 $cond = new $class($values);
167 break;
168
7563eb0c
RB
169 case 'school_id':
170 $values = $export->v('values', array());
171 $school_type = $export->s('school_type');
172 $cond = new UFC_SchoolId($school_type, $values);
173 break;
174
b3deda78 175 case 'has_profile':
df6d9034
RB
176 case 'has_email_redirect':
177 case 'has_valid_email':
b3deda78
FB
178 $class = 'ufc_' . str_replace('_', '', $type);
179 $cond = new $class();
180 break;
181
182 default:
183 throw new Exception("Unknown condition type: $type");
184 }
185 if (is_null($cond)) {
186 throw new Exception("Unsupported $type definition");
187 }
188 if ($cond instanceof PFC_NChildren) {
189 $children = $export->v('children', array());
190 foreach ($children as $child) {
191 $cond->addChild(self::fromExport($child));
192 }
193 } else if ($cond instanceof PFC_OneChild) {
194 if ($export->has('child')) {
195 $cond->setChild(self::fromExport($export->v('child')));
196 }
197 }
198 return $cond;
199 }
cd0c2ac4
FB
200}
201// }}}
cd0c2ac4
FB
202// {{{ class UFC_HasProfile
203/** Filters users who have a profile
204 */
205class UFC_HasProfile extends UserFilterCondition
206{
207 public function buildCondition(PlFilter $uf)
208 {
209 $uf->requireProfiles();
210 return '$PID IS NOT NULL';
211 }
b3deda78
FB
212
213 public function export()
214 {
215 return $this->buildExport('has_profile');
216 }
cd0c2ac4
FB
217}
218// }}}
cd0c2ac4
FB
219// {{{ class UFC_AccountType
220/** Filters users who have one of the given account types
221 */
222class UFC_AccountType extends UserFilterCondition
223{
224 private $types;
225
226 public function __construct()
227 {
228 $this->types = pl_flatten(func_get_args());
229 }
230
231 public function buildCondition(PlFilter $uf)
232 {
233 $uf->requireAccounts();
234 return XDB::format('a.type IN {?}', $this->types);
235 }
b3deda78
FB
236
237 public function export()
238 {
239 $export = $this->buildExport('account_type');
240 $export['values'] = $this->types;
241 return $export;
242 }
cd0c2ac4
FB
243}
244// }}}
cd0c2ac4
FB
245// {{{ class UFC_AccountPerm
246/** Filters users who have one of the given permissions
247 */
248class UFC_AccountPerm extends UserFilterCondition
249{
250 private $perms;
251
252 public function __construct()
253 {
254 $this->perms = pl_flatten(func_get_args());
255 }
256
257 public function buildCondition(PlFilter $uf)
258 {
259 $uf->requirePerms();
260 $conds = array();
261 foreach ($this->perms as $perm) {
262 $conds[] = XDB::format('FIND_IN_SET({?}, IF(a.user_perms IS NULL, at.perms,
263 CONCAT(at.perms, \',\', a.user_perms)))',
264 $perm);
265 }
266 if (empty($conds)) {
267 return self::COND_TRUE;
268 } else {
269 return implode(' OR ', $conds);
270 }
271 }
b3deda78
FB
272
273 public function export()
274 {
275 $export = $this->buildExport('account_perm');
276 $export['values'] = $this->perms;
277 return $export;
278 }
cd0c2ac4
FB
279}
280// }}}
cd0c2ac4
FB
281// {{{ class UFC_Hruid
282/** Filters users based on their hruid
283 * @param $val Either an hruid, or a list of those
284 */
285class UFC_Hruid extends UserFilterCondition
286{
287 private $hruids;
288
289 public function __construct()
290 {
291 $this->hruids = pl_flatten(func_get_args());
292 }
293
294 public function buildCondition(PlFilter $uf)
295 {
296 $uf->requireAccounts();
297 return XDB::format('a.hruid IN {?}', $this->hruids);
298 }
b3deda78
FB
299
300 public function export()
301 {
302 $export = $this->buildExport('hruid');
303 $export['values'] = $this->hruids;
304 return $export;
305 }
cd0c2ac4
FB
306}
307// }}}
cd0c2ac4
FB
308// {{{ class UFC_Hrpid
309/** Filters users based on the hrpid of their profiles
310 * @param $val Either an hrpid, or a list of those
311 */
312class UFC_Hrpid extends UserFilterCondition
313{
314 private $hrpids;
315
316 public function __construct()
317 {
318 $this->hrpids = pl_flatten(func_get_args());
319 }
320
321 public function buildCondition(PlFilter $uf)
322 {
323 $uf->requireProfiles();
324 return XDB::format('p.hrpid IN {?}', $this->hrpids);
325 }
b3deda78
FB
326
327 public function export()
328 {
329 $export = $this->buildExport('hrpid');
330 $export['values'] = $this->hrpids;
331 return $export;
332 }
cd0c2ac4
FB
333}
334// }}}
57a4162e 335// {{{ class UFC_HasEmailRedirect
df6d9034 336/** Filters users, keeping only those with a valid email redirection (only X.org accounts).
57a4162e
RB
337 */
338class UFC_HasEmailRedirect extends UserFilterCondition
339{
340 public function buildCondition(PlFilter $uf)
341 {
0702af29
SJ
342 $sub_redirect = $uf->addActiveEmailRedirectFilter();
343 return 'rf.redirect IS NOT NULL';
57a4162e 344 }
df6d9034
RB
345
346 public function export()
347 {
348 $export = $this->buildExport('has_email_redirect');
349 return $export;
350 }
351}
352// }}}
353// {{{ class UFC_HasValidEmail
354/** Filters users, keeping only those with a valid email address (all accounts).
355 */
356class UFC_HasValidEmail extends UserFilterCondition
357{
358 public function buildCondition(PlFilter $uf)
359 {
360 $sub_redirect = $uf->addEmailRedirectFilter();
361 $uf->requireAccounts();
362 return 'ra' . $sub_redirect . '.flags = \'active\' OR a.email IS NOT NULL';
363 }
364
365 public function export()
366 {
367 $export = $this->buildExport('has_valid_email');
368 return $export;
369 }
57a4162e
RB
370}
371// }}}
cd0c2ac4
FB
372// {{{ class UFC_Ip
373/** Filters users based on one of their last IPs
374 * @param $ip IP from which connection are checked
375 */
376class UFC_Ip extends UserFilterCondition
377{
378 private $ip;
379
380 public function __construct($ip)
381 {
382 $this->ip = $ip;
383 }
384
385 public function buildCondition(PlFilter $uf)
386 {
387 $sub = $uf->addLoggerFilter();
388 $ip = ip_to_uint($this->ip);
389 return XDB::format($sub . '.ip = {?} OR ' . $sub . '.forward_ip = {?}', $ip, $ip);
390 }
b3deda78
FB
391
392 public function export()
393 {
394 $export = $this->buildExport('host');
395 $export['ip'] = $this->ip;
396 return $export;
397 }
cd0c2ac4
FB
398}
399// }}}
cd0c2ac4
FB
400// {{{ class UFC_Comment
401class UFC_Comment extends UserFilterCondition
402{
403 private $text;
404
405 public function __construct($text)
406 {
407 $this->text = $text;
408 }
409
410 public function buildCondition(PlFilter $uf)
411 {
412 $uf->requireProfiles();
22771578 413 return $uf->getVisibilityConditionForField('p.freetext_pub') . ' AND p.freetext ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->text);
cd0c2ac4 414 }
b3deda78
FB
415
416 public function export()
417 {
418 $export = $this->buildExport('comment');
419 $export['comparison'] = self::OP_CONTAINS;
420 $export['text'] = $this->text;
421 return $export;
422 }
cd0c2ac4
FB
423}
424// }}}
cd0c2ac4
FB
425// {{{ class UFC_Promo
426/** Filters users based on promotion
427 * @param $comparison Comparison operator (>, =, ...)
428 * @param $grade Formation on which to restrict, UserFilter::DISPLAY for "any formation"
429 * @param $promo Promotion on which the filter is based
430 */
431class UFC_Promo extends UserFilterCondition
432{
433
434 private $grade;
435 private $promo;
436 private $comparison;
437
438 public function __construct($comparison, $grade, $promo)
439 {
440 $this->grade = $grade;
441 $this->comparison = $comparison;
442 $this->promo = $promo;
443 if ($this->grade != UserFilter::DISPLAY) {
444 UserFilter::assertGrade($this->grade);
445 }
446 if ($this->grade == UserFilter::DISPLAY && $this->comparison != '=') {
447 // XXX: we might try to guess the grade from the first char of the promo and forbid only '<= 2004', but allow '<= X2004'
448 Platal::page()->killError("Il n'est pas possible d'appliquer la comparaison '" . $this->comparison . "' aux promotions sans spécifier de formation (X/M/D)");
449 }
450 }
451
452 public function buildCondition(PlFilter $uf)
453 {
454 if ($this->grade == UserFilter::DISPLAY) {
455 $sub = $uf->addDisplayFilter();
456 return XDB::format('pd' . $sub . '.promo ' . $this->comparison . ' {?}', $this->promo);
457 } else {
458 $sub = $uf->addEducationFilter(true, $this->grade);
459 $field = 'pe' . $sub . '.' . UserFilter::promoYear($this->grade);
460 return $field . ' IS NOT NULL AND ' . $field . ' ' . $this->comparison . ' ' . XDB::format('{?}', $this->promo);
461 }
462 }
b3deda78
FB
463
464 public function export()
465 {
45a46551 466 $export = $this->buildExport('promo');
b3deda78
FB
467 $export['comparison'] = $this->comparison;
468 if ($this->grade != UserFilter::DISPLAY) {
469 $export['grade'] = $this->grade;
470 }
471 $export['promo'] = $this->promo;
472 return $export;
473 }
cd0c2ac4
FB
474}
475// }}}
cd0c2ac4
FB
476// {{{ class UFC_SchoolId
477/** Filters users based on their shoold identifier
478 * @param type Parameter type (Xorg, AX, School)
479 * @param value Array of school ids
480 */
481class UFC_SchoolId extends UserFilterCondition
482{
483 const AX = 'ax';
484 const Xorg = 'xorg';
485 const School = 'school';
486
487 private $type;
488 private $id;
489
490 static public function assertType($type)
491 {
492 if ($type != self::AX && $type != self::Xorg && $type != self::School) {
493 Platal::page()->killError("Type de matricule invalide: $type");
494 }
495 }
496
497 /** Construct a UFC_SchoolId
498 * The first argument is the type, all following arguments can be either ids
499 * or arrays of ids to use:
500 * $ufc = new UFC_SchoolId(UFC_SchoolId::AX, $id1, $id2, array($id3, $id4));
501 */
502 public function __construct($type)
503 {
504 $this->type = $type;
505 $ids = func_get_args();
506 array_shift($ids);
507 $this->ids = pl_flatten($ids);
508 self::assertType($type);
509 }
510
511 public function buildCondition(PlFilter $uf)
512 {
513 $uf->requireProfiles();
514 $ids = $this->ids;
515 $type = $this->type;
516 if ($type == self::School) {
517 $type = self::Xorg;
518 $ids = array_map(array('Profile', 'getXorgId'), $ids);
519 }
520 return XDB::format('p.' . $type . '_id IN {?}', $ids);
521 }
7563eb0c
RB
522
523 public function export()
524 {
525 $export = $this->buildExport('school_id');
526 $export['school_type'] = $this->type;
527 $export['values'] = $this->ids;
528 return $export;
529 }
cd0c2ac4
FB
530}
531// }}}
cd0c2ac4
FB
532// {{{ class UFC_EducationSchool
533/** Filters users by formation
534 * @param $val The formation to search (either ID or array of IDs)
535 */
536class UFC_EducationSchool extends UserFilterCondition
537{
538 private $val;
539
540 public function __construct()
541 {
542 $this->val = pl_flatten(func_get_args());
543 }
544
545 public function buildCondition(PlFilter $uf)
546 {
547 $sub = $uf->addEducationFilter();
548 return XDB::format('pe' . $sub . '.eduid IN {?}', $this->val);
549 }
550}
551// }}}
cd0c2ac4
FB
552// {{{ class UFC_EducationDegree
553class UFC_EducationDegree extends UserFilterCondition
554{
555 private $diploma;
556
557 public function __construct()
558 {
559 $this->diploma = pl_flatten(func_get_args());
560 }
561
562 public function buildCondition(PlFilter $uf)
563 {
564 $sub = $uf->addEducationFilter();
565 return XDB::format('pe' . $sub . '.degreeid IN {?}', $this->diploma);
566 }
567}
568// }}}
cd0c2ac4
FB
569// {{{ class UFC_EducationField
570class UFC_EducationField extends UserFilterCondition
571{
572 private $val;
573
574 public function __construct()
575 {
576 $this->val = pl_flatten(func_get_args());
577 }
578
579 public function buildCondition(PlFilter $uf)
580 {
581 $sub = $uf->addEducationFilter();
582 return XDB::format('pe' . $sub . '.fieldid IN {?}', $this->val);
583 }
584}
585// }}}
3e6ab778
SJ
586// {{{ class UFC_NameInitial
587/** Filters users based on sort_name
588 * @param $initial Initial on which to filter
cd0c2ac4 589 */
3e6ab778 590class UFC_NameInitial extends UserFilterCondition
cd0c2ac4 591{
3e6ab778 592 private $initial;
cd0c2ac4 593
3e6ab778 594 public function __construct($initial)
cd0c2ac4 595 {
3e6ab778 596 $this->initial = $initial;
cd0c2ac4
FB
597 }
598
599 public function buildCondition(PlFilter $uf)
600 {
93f014c4
SJ
601 $table = 'sort_name';
602 if ($uf->accountsRequired()) {
603 $table = Profile::getAccountEquivalentName($table);
604 $sub = 'a';
605 } else {
606 $uf->addDisplayFilter();
607 $sub = 'pd';
608 }
609 return 'SUBSTRING(' . $sub . '.' . $table . ', 1, 1) ' . XDB::formatWildcards(XDB::WILDCARD_PREFIX, $this->initial);
cd0c2ac4 610 }
b3deda78
FB
611
612 public function export()
613 {
3e6ab778 614 $export = $this->buildExport($this->initial);
b3deda78
FB
615 return $export;
616 }
cd0c2ac4
FB
617}
618// }}}
cd0c2ac4
FB
619// {{{ class UFC_NameTokens
620/** Selects users based on tokens in their name (for quicksearch)
621 * @param $tokens An array of tokens to search
622 * @param $flags Flags the tokens must have (e.g 'public' for public search)
623 * @param $soundex (bool) Whether those tokens are fulltext or soundex
624 */
625class UFC_NameTokens extends UserFilterCondition
626{
627 /* Flags */
628 const FLAG_PUBLIC = 'public';
629
630 private $tokens;
631 private $flags;
632 private $soundex;
633 private $exact;
5600b2fe 634 private $general_type;
cd0c2ac4 635
5600b2fe 636 public function __construct($tokens, $flags = array(), $soundex = false, $exact = false, $general_type = '')
cd0c2ac4
FB
637 {
638 if (is_array($tokens)) {
639 $this->tokens = $tokens;
640 } else {
641 $this->tokens = array($tokens);
642 }
643 if (is_array($flags)) {
644 $this->flags = $flags;
645 } else {
646 $this->flags = array($flags);
647 }
648 $this->soundex = $soundex;
649 $this->exact = $exact;
5600b2fe 650 $this->general_type = $general_type;
cd0c2ac4
FB
651 }
652
653 public function buildCondition(PlFilter $uf)
654 {
655 $conds = array();
656 foreach ($this->tokens as $i => $token) {
657 $sub = $uf->addNameTokensFilter($token);
658 if ($this->soundex) {
659 $c = XDB::format($sub . '.soundex = {?}', soundex_fr($token));
660 } else if ($this->exact) {
661 $c = XDB::format($sub . '.token = {?}', $token);
662 } else {
663 $c = $sub . '.token ' . XDB::formatWildcards(XDB::WILDCARD_PREFIX, $token);
664 }
665 if ($this->flags != null) {
666 $c .= XDB::format(' AND ' . $sub . '.flags IN {?}', $this->flags);
667 }
5600b2fe
SJ
668 if ($this->general_type) {
669 $c .= XDB::format(' AND ' . $sub . '.general_type = {?}', $this->general_type);
670 }
22771578 671 $c .= ' AND (' . $uf->getVisibilityConditionAbsolute(Visibility::EXPORT_PRIVATE) . ' OR ' . $sub . '.general_type != \'nickname\')';
cd0c2ac4
FB
672 $conds[] = $c;
673 }
674
675 return implode(' AND ', $conds);
676 }
677}
678// }}}
cd0c2ac4
FB
679// {{{ class UFC_Nationality
680class UFC_Nationality extends UserFilterCondition
681{
682 private $val;
683
684 public function __construct()
685 {
686 $this->val = pl_flatten(func_get_args());
687 }
688
689 public function buildCondition(PlFilter $uf)
690 {
691 $uf->requireProfiles();
692 $nat = XDB::formatArray($this->val);
693 $conds = array(
694 'p.nationality1 IN ' . $nat,
695 'p.nationality2 IN ' . $nat,
696 'p.nationality3 IN ' . $nat,
697 );
698 return implode(' OR ', $conds);
699 }
700}
701// }}}
cd0c2ac4
FB
702// {{{ class UFC_Dead
703/** Filters users based on death date
704 * @param $comparison Comparison operator
705 * @param $date Date to which death date should be compared (DateTime object, string or timestamp)
706 */
707class UFC_Dead extends UserFilterCondition
708{
709 private $comparison;
710 private $date;
711
712 public function __construct($comparison = null, $date = null)
713 {
714 $this->comparison = $comparison;
715 $this->date = make_datetime($date);
716 }
717
718 public function buildCondition(PlFilter $uf)
719 {
720 $uf->requireProfiles();
721 $str = 'p.deathdate IS NOT NULL';
722 if (!is_null($this->comparison)) {
723 $str .= ' AND p.deathdate ' . $this->comparison . ' ' . XDB::format('{?}', $this->date->format('Y-m-d'));
724 }
725 return $str;
726 }
727}
728// }}}
cd0c2ac4
FB
729// {{{ class UFC_Registered
730/** Filters users based on registration state
731 * @param $active Whether we want to use only "active" users (i.e with a valid redirection)
732 * @param $comparison Comparison operator
733 * @param $date Date to which users registration date should be compared
734 */
735class UFC_Registered extends UserFilterCondition
736{
737 private $active;
738 private $comparison;
739 private $date;
740
741 public function __construct($active = false, $comparison = null, $date = null)
742 {
743 $this->active = $active;
744 $this->comparison = $comparison;
745 $this->date = make_datetime($date);
746 }
747
748 public function buildCondition(PlFilter $uf)
749 {
750 $uf->requireAccounts();
751 if ($this->active) {
752 $date = '$UID IS NOT NULL AND a.state = \'active\'';
753 } else {
754 $date = '$UID IS NOT NULL AND a.state != \'pending\'';
755 }
756 if (!is_null($this->comparison)) {
757 $date .= ' AND a.registration_date != \'0000-00-00 00:00:00\' AND a.registration_date ' . $this->comparison . ' ' . XDB::format('{?}', $this->date->format('Y-m-d'));
758 }
759 return $date;
760 }
761}
762// }}}
cd0c2ac4
FB
763// {{{ class UFC_ProfileUpdated
764/** Filters users based on profile update date
765 * @param $comparison Comparison operator
766 * @param $date Date to which profile update date must be compared
767 */
768class UFC_ProfileUpdated extends UserFilterCondition
769{
770 private $comparison;
771 private $date;
772
773 public function __construct($comparison = null, $date = null)
774 {
775 $this->comparison = $comparison;
776 $this->date = $date;
777 }
778
779 public function buildCondition(PlFilter $uf)
780 {
781 $uf->requireProfiles();
782 return 'p.last_change ' . $this->comparison . XDB::format(' {?}', date('Y-m-d H:i:s', $this->date));
783 }
784}
785// }}}
cd0c2ac4
FB
786// {{{ class UFC_Birthday
787/** Filters users based on next birthday date
788 * @param $comparison Comparison operator
789 * @param $date Date to which users next birthday date should be compared
790 */
791class UFC_Birthday extends UserFilterCondition
792{
793 private $comparison;
794 private $date;
795
796 public function __construct($comparison = null, $date = null)
797 {
798 $this->comparison = $comparison;
799 $this->date = $date;
800 }
801
802 public function buildCondition(PlFilter $uf)
803 {
804 $uf->requireProfiles();
805 return 'p.next_birthday ' . $this->comparison . XDB::format(' {?}', date('Y-m-d', $this->date));
806 }
807}
808// }}}
cd0c2ac4
FB
809// {{{ class UFC_Sex
810/** Filters users based on sex
811 * @parm $sex One of User::GENDER_MALE or User::GENDER_FEMALE, for selecting users
812 */
813class UFC_Sex extends UserFilterCondition
814{
815 private $sex;
816 public function __construct($sex)
817 {
818 $this->sex = $sex;
819 }
820
821 public function buildCondition(PlFilter $uf)
822 {
823 if ($this->sex != User::GENDER_MALE && $this->sex != User::GENDER_FEMALE) {
824 return self::COND_FALSE;
825 } else {
826 $uf->requireProfiles();
827 return XDB::format('p.sex = {?}', $this->sex == User::GENDER_FEMALE ? 'female' : 'male');
828 }
829 }
830}
831// }}}
57a4162e
RB
832// {{{ class UFC_NLSubscribed
833/** Filters users based on NL subscription
834 * @param $nlid NL whose subscribers we are selecting
835 * @param $issue Select only subscribers who have not yet received that issue
836 */
837class UFC_NLSubscribed extends UserFilterCondition
838{
839 private $nlid;
840 private $issue_id;
821198c7 841 public function __construct($nlid, $issue_id = null)
57a4162e
RB
842 {
843 $this->nlid = $nlid;
844 $this->issue_id = $issue_id;
845 }
846
847 public function buildCondition(PlFilter $uf)
848 {
849 $sub = $uf->addNewsLetterFilter($this->nlid);
821198c7
SJ
850 $cond = $sub . '.nlid IS NOT NULL';
851 if (!is_null($this->issue_id)) {
852 $cond = XDB::format($cond . ' AND ( ' . $sub . '.last IS NULL OR ' . $sub . '.last < {?})', $this->issue_id);
853 }
854 return $cond;
57a4162e
RB
855 }
856}
857// }}}
cd0c2ac4
FB
858// {{{ class UFC_Group
859/** Filters users based on group membership
860 * @param $group Group whose members we are selecting
861 * @param $anim Whether to restrict selection to animators of that group
862 */
863class UFC_Group extends UserFilterCondition
864{
efef6e67
SJ
865 const BOTH = 0;
866 const NOTIFIED = 1;
867 const UNNOTIFIED = 2;
868
cd0c2ac4
FB
869 private $group;
870 private $anim;
efef6e67
SJ
871 private $notified;
872
873 public function __construct($group, $anim = false, $notified = self::BOTH)
cd0c2ac4
FB
874 {
875 $this->group = $group;
876 $this->anim = $anim;
efef6e67 877 $this->notified = $notified;
cd0c2ac4
FB
878 }
879
880 public function buildCondition(PlFilter $uf)
881 {
2e982801
SJ
882 // Groups are only visible for users with perm 'groups'.
883 if (!S::user()->checkPerms(User::PERM_GROUPS)) {
884 return self::COND_FALSE;
cd0c2ac4
FB
885 }
886 $sub = $uf->addGroupFilter($this->group);
887 $where = 'gpm' . $sub . '.perms IS NOT NULL';
888 if ($this->anim) {
889 $where .= ' AND gpm' . $sub . '.perms = \'admin\'';
890 }
efef6e67
SJ
891 if ($this->notified != self::BOTH) {
892 $where .= ' AND ' . ($this->notified == self::UNNOTIFIED ? 'NOT ' : '')
893 . "FIND_IN_SET('notify', gpm" . $sub . '.flags)';
894 }
cd0c2ac4
FB
895 return $where;
896 }
897}
898// }}}
486bc076
SJ
899// {{{ class UFC_GroupFormerMember
900/** Filters users based on group former membership
901 * @param $group Group whose former members we are selecting
902 */
903class UFC_GroupFormerMember extends UserFilterCondition
904{
905 private $group;
906
907 public function __construct($group)
908 {
909 $this->group = $group;
910 }
911
912 public function buildCondition(PlFilter $uf)
913 {
914 // Groups are only visible for users with perm 'groups'.
915 if (!S::user()->checkPerms(User::PERM_GROUPS)) {
916 return self::COND_FALSE;
917 }
918 $sub = $uf->addGroupFormerMemberFilter();
919 return XDB::format('gpfm' . $sub . '.asso_id = {?}', $this->group);
920 }
921}
922// }}}
cd0c2ac4
FB
923// {{{ class UFC_Binet
924/** Selects users based on their belonging to a given (list of) binet
925 * @param $binet either a binet_id or an array of binet_ids
926 */
927class UFC_Binet extends UserFilterCondition
928{
929 private $val;
930
931 public function __construct()
932 {
933 $this->val = pl_flatten(func_get_args());
934 }
935
936 public function buildCondition(PlFilter $uf)
937 {
cd0c2ac4 938 $sub = $uf->addBinetsFilter();
22771578
RB
939 // Binets are private.
940 return XDB::format($uf->getVisibilityConditionAbsolute(Visibility::EXPORT_PRIVATE) . ' AND ' . $sub . '.binet_id IN {?}', $this->val);
cd0c2ac4
FB
941 }
942}
943// }}}
cd0c2ac4
FB
944// {{{ class UFC_Section
945/** Selects users based on section
946 * @param $section ID of the section
947 */
948class UFC_Section extends UserFilterCondition
949{
950 private $section;
951
952 public function __construct()
953 {
954 $this->section = pl_flatten(func_get_args());
955 }
956
957 public function buildCondition(PlFilter $uf)
958 {
959 // Sections are private.
cd0c2ac4 960 $uf->requireProfiles();
22771578 961 return XDB::format($uf->getVisibilityConditionAbsolute(Visibility::EXPORT_PRIVATE) . ' AND p.section IN {?}', $this->section);
cd0c2ac4
FB
962 }
963}
964// }}}
cd0c2ac4
FB
965// {{{ class UFC_Email
966/** Filters users based on an email or a list of emails
967 * @param $emails List of emails whose owner must be selected
968 */
969class UFC_Email extends UserFilterCondition
970{
971 private $emails;
972 public function __construct()
973 {
974 $this->emails = pl_flatten(func_get_args());
975 }
976
977 public function buildCondition(PlFilter $uf)
978 {
979 $foreign = array();
e338c7e8
SJ
980 $local = array();
981 $cond = array();
cd0c2ac4
FB
982
983 if (count($this->emails) == 0) {
bb72e95a 984 return PlFilterCondition::COND_FALSE;
cd0c2ac4
FB
985 }
986
987 foreach ($this->emails as $entry) {
988 if (User::isForeignEmailAddress($entry)) {
989 $foreign[] = $entry;
cd0c2ac4 990 } else {
e338c7e8
SJ
991 list($local_part, ) = explode('@', $entry);
992 $local[] = $local_part;
cd0c2ac4
FB
993 }
994 }
995
996 if (count($foreign) > 0) {
997 $sub = $uf->addEmailRedirectFilter($foreign);
63bd7d2f 998 $cond[] = XDB::format('ra' . $sub . '.redirect IS NOT NULL OR ra' . $sub . '.redirect IN {?} OR a.email IN {?}', $foreign, $foreign);
cd0c2ac4 999 }
e338c7e8
SJ
1000 if (count($local) > 0) {
1001 $sub = $uf->addAliasFilter($local);
1002 $cond[] = 'sa' . $sub . '.email IS NOT NULL';
cd0c2ac4
FB
1003 }
1004 return '(' . implode(') OR (', $cond) . ')';
1005 }
1006}
1007// }}}
cd0c2ac4
FB
1008// {{{ class UFC_Address
1009abstract class UFC_Address extends UserFilterCondition
1010{
3a2985f9 1011 /** Valid address type
cd0c2ac4 1012 */
3a2985f9
SJ
1013 const TYPE_HOME = 1;
1014 const TYPE_PRO = 2;
1015 const TYPE_NON_HQ = 3;
1016 const TYPE_HQ = 4;
1017 const TYPE_ANY = 7;
cd0c2ac4
FB
1018
1019 /** Text for these types
1020 */
1021 protected static $typetexts = array(
1022 self::TYPE_HOME => 'home',
1023 self::TYPE_PRO => 'pro',
3a2985f9 1024 self::TYPE_HQ => 'hq',
cd0c2ac4
FB
1025 );
1026
1027 protected $type;
1028
1029 /** Flags for addresses
1030 */
f540a626 1031 const FLAG_NONE = 0x0000;
cd0c2ac4
FB
1032 const FLAG_CURRENT = 0x0001;
1033 const FLAG_TEMP = 0x0002;
1034 const FLAG_SECOND = 0x0004;
1035 const FLAG_MAIL = 0x0008;
1036 const FLAG_CEDEX = 0x0010;
f540a626 1037 const FLAG_AX_MAIL = 0x0020;
cd0c2ac4
FB
1038
1039 // Binary OR of those flags
f540a626 1040 const FLAG_ANY = 0x003F;
cd0c2ac4
FB
1041
1042 /** Text of these flags
1043 */
1044 protected static $flagtexts = array(
1045 self::FLAG_CURRENT => 'current',
1046 self::FLAG_TEMP => 'temporary',
1047 self::FLAG_SECOND => 'secondary',
1048 self::FLAG_MAIL => 'mail',
1049 self::FLAG_CEDEX => 'cedex',
f540a626 1050 self::FLAG_AX_MAIL => 'ax_mail',
cd0c2ac4
FB
1051 );
1052
1053 protected $flags;
1054
1055 public function __construct($type = null, $flags = null)
1056 {
1057 $this->type = $type;
1058 $this->flags = $flags;
1059 }
1060
1061 protected function initConds($sub, $vis_cond)
1062 {
1063 $conds = array($vis_cond);
1064
1065 $types = array();
1066 foreach (self::$typetexts as $flag => $type) {
1067 if ($flag & $this->type) {
1068 $types[] = $type;
1069 }
1070 }
1071 if (count($types)) {
3a2985f9 1072 $conds[] = XDB::format('pa' . $sub . '.type IN {?}', $types);
cd0c2ac4
FB
1073 }
1074
1075 if ($this->flags != self::FLAG_ANY) {
1076 foreach(self::$flagtexts as $flag => $text) {
1077 if ($flag & $this->flags) {
3a2985f9 1078 $conds[] = 'FIND_IN_SET(' . XDB::format('{?}', $text) . ', pa' . $sub . '.flags)';
cd0c2ac4
FB
1079 }
1080 }
1081 }
1082 return $conds;
1083 }
1084
1085}
1086// }}}
cd0c2ac4
FB
1087// {{{ class UFC_AddressField
1088/** Filters users based on their address,
1089 * @param $val Either a code for one of the fields, or an array of such codes
1090 * @param $fieldtype The type of field to look for
1091 * @param $type Filter on address type
1092 * @param $flags Filter on address flags
1093 */
3a2985f9 1094class UFC_AddressComponent extends UFC_Address
cd0c2ac4 1095{
e76e94fb 1096 static $components = array('postal_code', 'locality', 'administrative_area_level_3', 'administrative_area_level_2', 'administrative_area_level_1', 'country');
cd0c2ac4
FB
1097
1098 /** Data of the filter
1099 */
1100 private $val;
1101 private $fieldtype;
3a2985f9 1102 private $exact;
cd0c2ac4 1103
b66ba81c 1104 public function __construct($val, $fieldtype, $type = null, $flags = self::FLAG_ANY)
cd0c2ac4 1105 {
3a2985f9
SJ
1106 if (!in_array($fieldtype, self::$components)) {
1107 Platal::page()->killError('Invalid address field type: ' . $this->fieldtype);
1108 }
cd0c2ac4 1109
3a2985f9 1110 parent::__construct($type, $flags);
cd0c2ac4
FB
1111 if (!is_array($val)) {
1112 $val = array($val);
1113 }
1114 $this->val = $val;
1115 $this->fieldtype = $fieldtype;
1116 }
1117
1118 public function buildCondition(PlFilter $uf)
1119 {
3a2985f9 1120 $sub = $uf->addAddressFilter($this->fieldtype);
22771578 1121 $conds = $this->initConds($sub, $uf->getVisibilityConditionForField('pa' . $sub . '.pub'));
a67a14b4 1122 $conds[] = XDB::format('pace' . $sub . '.id IN {?}', $this->val);
cd0c2ac4
FB
1123
1124 return implode(' AND ', $conds);
1125 }
1126}
1127// }}}
cd0c2ac4
FB
1128// {{{ class UFC_Corps
1129/** Filters users based on the corps they belong to
1130 * @param $corps Corps we are looking for (abbreviation)
1131 * @param $type Whether we search for original or current corps
1132 */
1133class UFC_Corps extends UserFilterCondition
1134{
1135 const CURRENT = 1;
1136 const ORIGIN = 2;
1137
1138 private $corps;
00f25ab1 1139 private $id;
cd0c2ac4
FB
1140 private $type;
1141
00f25ab1 1142 public function __construct($corps, $id = null, $type = self::CURRENT)
cd0c2ac4
FB
1143 {
1144 $this->corps = $corps;
00f25ab1 1145 $this->id = $id;
cd0c2ac4
FB
1146 $this->type = $type;
1147 }
1148
1149 public function buildCondition(PlFilter $uf)
1150 {
1151 /** Tables shortcuts:
1152 * pc for profile_corps,
1153 * pceo for profile_corps_enum - orginal
1154 * pcec for profile_corps_enum - current
1155 */
1156 $sub = $uf->addCorpsFilter($this->type);
00f25ab1
SJ
1157 if (is_null($this->id)) {
1158 $cond = $sub . '.abbreviation = ' . $this->corps;
1159 } else {
1160 $cond = $sub . '.id = ' . $this->id;
1161 }
1162 // XXX(x2006barrois): find a way to get rid of that hardcoded
1163 // reference to 'pc'.
22771578 1164 $cond .= ' AND ' . $uf->getVisibilityConditionForField('pc.corps_pub');
cd0c2ac4
FB
1165 return $cond;
1166 }
1167}
1168// }}}
cd0c2ac4
FB
1169// {{{ class UFC_Corps_Rank
1170/** Filters users based on their rank in the corps
1171 * @param $rank Rank we are looking for (abbreviation)
1172 */
1173class UFC_Corps_Rank extends UserFilterCondition
1174{
1175 private $rank;
00f25ab1
SJ
1176 private $id;
1177
1178 public function __construct($rank, $id = null)
cd0c2ac4
FB
1179 {
1180 $this->rank = $rank;
00f25ab1 1181 $this->id = $id;
cd0c2ac4
FB
1182 }
1183
1184 public function buildCondition(PlFilter $uf)
1185 {
1186 /** Tables shortcuts:
1187 * pc for profile_corps
1188 * pcr for profile_corps_rank
1189 */
1190 $sub = $uf->addCorpsRankFilter();
00f25ab1
SJ
1191 if (is_null($this->id)) {
1192 $cond = $sub . '.abbreviation = ' . $this->rank;
1193 } else {
1194 $cond = $sub . '.id = ' . $this->id;
1195 }
cd0c2ac4
FB
1196 // XXX(x2006barrois): find a way to get rid of that hardcoded
1197 // reference to 'pc'.
22771578 1198 $cond .= ' AND ' . $uf->getVisibilityConditionForField('pc.corps_pub');
cd0c2ac4
FB
1199 return $cond;
1200 }
1201}
1202// }}}
cd0c2ac4
FB
1203// {{{ class UFC_Job_Company
1204/** Filters users based on the company they belong to
1205 * @param $type The field being searched (self::JOBID, self::JOBNAME or self::JOBACRONYM)
1206 * @param $value The searched value
1207 */
1208class UFC_Job_Company extends UserFilterCondition
1209{
1210 const JOBID = 'id';
1211 const JOBNAME = 'name';
1212 const JOBACRONYM = 'acronym';
1213
1214 private $type;
1215 private $value;
1216
1217 public function __construct($type, $value)
1218 {
1219 $this->assertType($type);
1220 $this->type = $type;
1221 $this->value = $value;
1222 }
1223
1224 private function assertType($type)
1225 {
1226 if ($type != self::JOBID && $type != self::JOBNAME && $type != self::JOBACRONYM) {
1227 Platal::page()->killError("Type de recherche non valide.");
1228 }
1229 }
1230
1231 public function buildCondition(PlFilter $uf)
1232 {
1233 $sub = $uf->addJobCompanyFilter();
1234 $cond = $sub . '.' . $this->type . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->value);
1235 $jsub = $uf->addJobFilter();
22771578 1236 $cond .= ' AND ' . $uf->getVisibilityConditionForField($jsub . '.pub');
cd0c2ac4
FB
1237 return $cond;
1238 }
1239}
1240// }}}
cd0c2ac4
FB
1241// {{{ class UFC_Job_Terms
1242/** Filters users based on the job terms they assigned to one of their
1243 * jobs.
1244 * @param $val The ID of the job term, or an array of such IDs
1245 */
1246class UFC_Job_Terms extends UserFilterCondition
1247{
1248 private $val;
1249
1250 public function __construct($val)
1251 {
1252 if (!is_array($val)) {
1253 $val = array($val);
1254 }
1255 $this->val = $val;
1256 }
1257
1258 public function buildCondition(PlFilter $uf)
1259 {
1260 $sub = $uf->addJobTermsFilter(count($this->val));
1261 $conditions = array();
1262 foreach ($this->val as $i => $jtid) {
1263 $conditions[] = $sub[$i] . '.jtid_1 = ' . XDB::escape($jtid);
1264 }
1265 $jsub = $uf->addJobFilter();
22771578 1266 $conditions[] = $uf->getVisibilityConditionForField($jsub . '.pub');
cd0c2ac4
FB
1267 return implode(' AND ', $conditions);
1268 }
1269}
1270// }}}
cd0c2ac4
FB
1271// {{{ class UFC_Job_Description
1272/** Filters users based on their job description
1273 * @param $description The text being searched for
1274 * @param $fields The fields to search for (CV, user-defined)
1275 */
1276class UFC_Job_Description extends UserFilterCondition
1277{
1278
1279 private $description;
1280 private $fields;
1281
1282 public function __construct($description, $fields)
1283 {
1284 $this->fields = $fields;
1285 $this->description = $description;
1286 }
1287
1288 public function buildCondition(PlFilter $uf)
1289 {
1290 $conds = array();
1291
1292 $jsub = $uf->addJobFilter();
cd0c2ac4
FB
1293 if ($this->fields & UserFilter::JOB_USERDEFINED) {
1294 $conds[] = $jsub . '.description ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->description);
1295 }
22771578 1296 if ($this->fields & UserFilter::JOB_CV) {
cd0c2ac4 1297 $uf->requireProfiles();
22771578
RB
1298 // CV is private
1299 $conds[] = '( ' . $uf->getVisibilityConditionAbsolute(Visibility::EXPORT_PRIVATE) . ' AND p.cv ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->description) . ')';
cd0c2ac4 1300 }
f3bfd6c9
RB
1301 if (count($conds) == 0) {
1302 return self::COND_TRUE;
1303 }
22771578 1304 return $uf->getVisibilityConditionForField($jsub . '.pub') . ' AND ( ' . implode(' OR ', $conds) . ' )';
cd0c2ac4
FB
1305 }
1306}
1307// }}}
cd0c2ac4
FB
1308// {{{ class UFC_Networking
1309/** Filters users based on network identity (IRC, ...)
1310 * @param $type Type of network (-1 for any)
1311 * @param $value Value to search
1312 */
1313class UFC_Networking extends UserFilterCondition
1314{
1315 private $type;
1316 private $value;
1317
1318 public function __construct($type, $value)
1319 {
1320 $this->type = $type;
1321 $this->value = $value;
1322 }
1323
1324 public function buildCondition(PlFilter $uf)
1325 {
1326 $sub = $uf->addNetworkingFilter();
1327 $conds = array();
22771578 1328 $conds[] = $uf->getVisibilityConditionForField($sub . '.pub');
cd0c2ac4
FB
1329 $conds[] = $sub . '.address ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->value);
1330 if ($this->type != -1) {
1331 $conds[] = $sub . '.nwid = ' . XDB::format('{?}', $this->type);
1332 }
1333 return implode(' AND ', $conds);
1334 }
1335}
1336// }}}
cd0c2ac4
FB
1337// {{{ class UFC_Phone
1338/** Filters users based on their phone number
1339 * @param $num_type Type of number (pro/user/home)
1340 * @param $phone_type Type of phone (fixed/mobile/fax)
1341 * @param $number Phone number
1342 */
1343class UFC_Phone extends UserFilterCondition
1344{
1345 const NUM_PRO = 'pro';
1346 const NUM_USER = 'user';
1347 const NUM_HOME = 'address';
1348 const NUM_ANY = 'any';
1349
1350 const PHONE_FIXED = 'fixed';
1351 const PHONE_MOBILE = 'mobile';
1352 const PHONE_FAX = 'fax';
1353 const PHONE_ANY = 'any';
1354
1355 private $num_type;
1356 private $phone_type;
1357 private $number;
1358
1359 public function __construct($number, $num_type = self::NUM_ANY, $phone_type = self::PHONE_ANY)
1360 {
1361 $phone = new Phone(array('display' => $number));
1362 $phone->format();
14f9a5c3 1363 $this->number = $phone->search;
cd0c2ac4
FB
1364 $this->num_type = $num_type;
1365 $this->phone_type = $phone_type;
1366 }
1367
1368 public function buildCondition(PlFilter $uf)
1369 {
1370 $sub = $uf->addPhoneFilter();
1371 $conds = array();
1372
22771578 1373 $conds[] = $uf->getVisibilityConditionForField($sub . '.pub');
cd0c2ac4
FB
1374
1375 $conds[] = $sub . '.search_tel = ' . XDB::format('{?}', $this->number);
1376 if ($this->num_type != self::NUM_ANY) {
1377 $conds[] = $sub . '.link_type = ' . XDB::format('{?}', $this->num_type);
1378 }
1379 if ($this->phone_type != self::PHONE_ANY) {
1380 $conds[] = $sub . '.tel_type = ' . XDB::format('{?}', $this->phone_type);
1381 }
1382 return implode(' AND ', $conds);
1383 }
1384}
1385// }}}
cd0c2ac4
FB
1386// {{{ class UFC_Medal
1387/** Filters users based on their medals
1388 * @param $medal ID of the medal
1389 * @param $grade Grade of the medal (null for 'any')
1390 */
1391class UFC_Medal extends UserFilterCondition
1392{
1393 private $medal;
1394 private $grade;
1395
1396 public function __construct($medal, $grade = null)
1397 {
1398 $this->medal = $medal;
1399 $this->grade = $grade;
1400 }
1401
1402 public function buildCondition(PlFilter $uf)
1403 {
1404 $conds = array();
1405
1406 // This will require profiles => table 'p' will be available.
1407 $sub = $uf->addMedalFilter();
1408
22771578 1409 $conds[] = $uf->getVisibilityConditionForField('p.medals_pub');
cd0c2ac4
FB
1410
1411 $conds[] = $sub . '.mid = ' . XDB::format('{?}', $this->medal);
1412 if ($this->grade != null) {
1413 $conds[] = $sub . '.gid = ' . XDB::format('{?}', $this->grade);
1414 }
1415 return implode(' AND ', $conds);
1416 }
1417}
1418// }}}
cd0c2ac4
FB
1419// {{{ class UFC_Photo
1420/** Filters profiles with photo
1421 */
1422class UFC_Photo extends UserFilterCondition
1423{
1424 public function buildCondition(PlFilter $uf)
1425 {
1426 $sub = $uf->addPhotoFilter();
22771578 1427 return $sub . '.attach IS NOT NULL AND ' . $uf->getVisibilityConditionForField($sub . '.pub');
cd0c2ac4
FB
1428 }
1429}
1430// }}}
cd0c2ac4
FB
1431// {{{ class UFC_Mentor
1432class UFC_Mentor extends UserFilterCondition
1433{
1434 public function buildCondition(PlFilter $uf)
1435 {
1436 $sub = $uf->addMentorFilter(UserFilter::MENTOR);
1437 return $sub . '.expertise IS NOT NULL';
1438 }
1439}
1440// }}}
cd0c2ac4
FB
1441// {{{ class UFC_Mentor_Expertise
1442/** Filters users by mentoring expertise
1443 * @param $expertise Domain of expertise
1444 */
1445class UFC_Mentor_Expertise extends UserFilterCondition
1446{
1447 private $expertise;
1448
1449 public function __construct($expertise)
1450 {
1451 $this->expertise = $expertise;
1452 }
1453
1454 public function buildCondition(PlFilter $uf)
1455 {
1456 $sub = $uf->addMentorFilter(UserFilter::MENTOR_EXPERTISE);
1457 return $sub . '.expertise ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->expertise);
1458 }
1459}
1460// }}}
cd0c2ac4
FB
1461// {{{ class UFC_Mentor_Country
1462/** Filters users by mentoring country
1463 * @param $country Two-letters code of country being searched
1464 */
1465class UFC_Mentor_Country extends UserFilterCondition
1466{
1467 private $country;
1468
1469 public function __construct()
1470 {
1471 $this->country = pl_flatten(func_get_args());
1472 }
1473
1474 public function buildCondition(PlFilter $uf)
1475 {
1476 $sub = $uf->addMentorFilter(UserFilter::MENTOR_COUNTRY);
1477 return $sub . '.country IN ' . XDB::format('{?}', $this->country);
1478 }
1479}
1480// }}}
cd0c2ac4
FB
1481// {{{ class UFC_Mentor_Terms
1482/** Filters users based on the job terms they used in mentoring.
1483 * @param $val The ID of the job term, or an array of such IDs
1484 */
1485class UFC_Mentor_Terms extends UserFilterCondition
1486{
1487 private $val;
1488
1489 public function __construct($val)
1490 {
1491 $this->val = $val;
1492 }
1493
1494 public function buildCondition(PlFilter $uf)
1495 {
1496 $sub = $uf->addMentorFilter(UserFilter::MENTOR_TERM);
1497 return $sub . '.jtid_1 = ' . XDB::escape($this->val);
1498 }
1499}
1500// }}}
cd0c2ac4
FB
1501// {{{ class UFC_UserRelated
1502/** Filters users based on a relation toward a user
1503 * @param $user User to which searched users are related
1504 */
1505abstract class UFC_UserRelated extends UserFilterCondition
1506{
1507 protected $user;
26ba053e 1508 public function __construct(PlUser $user)
cd0c2ac4
FB
1509 {
1510 $this->user =& $user;
1511 }
1512}
1513// }}}
49707d3b
RB
1514// {{{ class UFC_DeltaTen
1515class UFC_DeltaTen extends UserFilterCondition
1516{
1517 public function buildCondition(PlFilter $uf)
1518 {
1519 $sub = $uf->addDeltaTenFilter(UserFilter::DELTATEN);
1520 return $sub . '.message IS NOT NULL';
1521 }
1522}
1523// }}}
1524// {{{ class UFC_DeltaTen_Message
1525/** Filters users by deltaten message
1526 * @param $message Message for the DeltaTen program
1527 */
1528class UFC_DeltaTen_Message extends UserFilterCondition
1529{
1530 private $message;
1531
1532 public function __construct($message)
1533 {
1534 $this->message = $message;
1535 }
1536
1537 public function buildCondition(PlFilter $uf)
1538 {
1539 $sub = $uf->addDeltaTenFilter(UserFilter::DELTATEN_MESSAGE);
1540 return $sub . '.message ' . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, $this->message);
1541 }
1542}
1543// }}}
cd0c2ac4
FB
1544// {{{ class UFC_Contact
1545/** Filters users who belong to selected user's contacts
1546 */
1547class UFC_Contact extends UFC_UserRelated
1548{
1549 public function buildCondition(PlFilter $uf)
1550 {
1551 $sub = $uf->addContactFilter($this->user->id());
1552 return 'c' . $sub . '.contact IS NOT NULL';
1553 }
1554}
1555// }}}
cd0c2ac4
FB
1556// {{{ class UFC_WatchRegistration
1557/** Filters users being watched by selected user
1558 */
1559class UFC_WatchRegistration extends UFC_UserRelated
1560{
1561 public function buildCondition(PlFilter $uf)
1562 {
1563 if (!$this->user->watchType('registration')) {
1564 return PlFilterCondition::COND_FALSE;
1565 }
1566 $uids = $this->user->watchUsers();
1567 if (count($uids) == 0) {
1568 return PlFilterCondition::COND_FALSE;
1569 } else {
1570 return XDB::format('$UID IN {?}', $uids);
1571 }
1572 }
1573}
1574// }}}
cd0c2ac4
FB
1575// {{{ class UFC_WatchPromo
1576/** Filters users belonging to a promo watched by selected user
1577 * @param $user Selected user (the one watching promo)
1578 * @param $grade Formation the user is watching
1579 */
1580class UFC_WatchPromo extends UFC_UserRelated
1581{
1582 private $grade;
26ba053e 1583 public function __construct(PlUser $user, $grade = UserFilter::GRADE_ING)
cd0c2ac4
FB
1584 {
1585 parent::__construct($user);
1586 $this->grade = $grade;
1587 }
1588
1589 public function buildCondition(PlFilter $uf)
1590 {
1591 $promos = $this->user->watchPromos();
1592 if (count($promos) == 0) {
1593 return PlFilterCondition::COND_FALSE;
1594 } else {
1595 $sube = $uf->addEducationFilter(true, $this->grade);
1596 $field = 'pe' . $sube . '.' . UserFilter::promoYear($this->grade);
1597 return XDB::format($field . ' IN {?}', $promos);
1598 }
1599 }
1600}
1601// }}}
fe286e5f
SJ
1602// {{{ class UFC_WatchGroup
1603/** Filters users belonging to a group watched by selected user
1604 * @param $user Selected user (the one watching group)
1605 */
1606class UFC_WatchGroup extends UFC_UserRelated
1607{
1608 public function buildCondition(PlFilter $uf)
1609 {
1610 $groups = $this->user->watchGroups();
1611 if (count($groups) == 0) {
1612 return PlFilterCondition::COND_FALSE;
1613 }
1614 $conditions = array();
1615 foreach ($groups as $group) {
1616 $sub = $uf->addGroupFilter($group);
1617 $conditions[] = 'gpm' . $sub . '.perms IS NOT NULL';
1618 }
1619 return implode(' OR ', $conditions);
1620 }
1621}
1622// }}}
cd0c2ac4
FB
1623// {{{ class UFC_WatchContact
1624/** Filters users watched by selected user
1625 */
1626class UFC_WatchContact extends UFC_Contact
1627{
1628 public function buildCondition(PlFilter $uf)
1629 {
1630 if (!$this->user->watchContacts()) {
1631 return PlFilterCondition::COND_FALSE;
1632 }
1633 return parent::buildCondition($uf);
1634 }
1635}
1636// }}}
cd0c2ac4
FB
1637// {{{ class UFC_MarketingHash
1638/** Filters users using the hash generated
1639 * to send marketing emails to him.
1640 */
1641class UFC_MarketingHash extends UserFilterCondition
1642{
1643 private $hash;
1644
1645 public function __construct($hash)
1646 {
1647 $this->hash = $hash;
1648 }
1649
1650 public function buildCondition(PlFilter $uf)
1651 {
1652 $table = $uf->addMarketingHash();
1653 return XDB::format('rm.hash = {?}', $this->hash);
1654 }
1655}
1656// }}}
148af7a9
RB
1657// {{{ class UFC_PartnerSharing
1658/** Filters users, keeping only those sharing data with a given partner.
1659 */
1660class UFC_PartnerSharing extends UserFilterCondition
1661{
1662 const PTA = 'pta';
1663
db492b02 1664 private $partner_id;
148af7a9 1665
db492b02 1666 public function __construct($partner_id)
148af7a9 1667 {
db492b02 1668 $this->partner_id = $partner_id;
148af7a9
RB
1669 }
1670
1671 public function buildCondition(PlFilter $uf)
1672 {
db492b02 1673 $sub = $uf->addPartnerSharingFilter($this->partner_id);
148af7a9
RB
1674 return XDB::format("$sub.exposed_uid IS NOT NULL");
1675 }
1676}
1677// }}}
1678// {{{ class UFC_PartnerSharingEmail
1679/** Filters users, keeping only those allowing emails to be sent by
1680 * a given partner.
1681 */
1682class UFC_PartnerSharingEmail extends UserFilterCondition
1683{
db492b02 1684 private $partner_id;
148af7a9 1685
db492b02 1686 public function __construct($partner_id)
148af7a9 1687 {
db492b02 1688 $this->partner_id = $partner_id;
148af7a9
RB
1689 }
1690
1691 public function buildCondition(PlFilter $uf)
1692 {
db492b02 1693 $sub = $uf->addPartnerSharingFilter($this->partner_id);
148af7a9
RB
1694 return XDB::format("$sub.allow_email IN ('digest', 'direct')");
1695 }
1696}
1697// }}}
1698// {{{ class UFC_PartnerSharingID
1699/** Filters users according to a list of partner-known IDs
1700 */
1701class UFC_PartnerSharingID extends UserFilterCondition
1702{
db492b02 1703 private $partner_id;
148af7a9
RB
1704 private $ids;
1705
db492b02 1706 public function __construct($partner_id)
148af7a9 1707 {
db492b02 1708 $this->partner_id = $partner_id;
148af7a9
RB
1709 $ids = func_get_args();
1710 array_shift($ids);
1711 $this->ids = pl_flatten($ids);
1712 }
1713
1714 public function buildCondition(PlFilter $uf)
1715 {
1716 $uf->requireProfiles();
1717 $ids = $this->ids;
db492b02 1718 $sub = $uf->addPartnerSharingFilter($this->partner_id);
148af7a9
RB
1719 return XDB::format("$sub.exposed_uid IN {?}", $ids);
1720 }
1721}
1722// }}}
cd0c2ac4
FB
1723
1724// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1725?>