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