Adds search on subadministrativearea (Closes #1312).
[platal.git] / include / ufbuilder.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 // {{{ class UserFilterBuilder
23 class UserFilterBuilder
24 {
25 private $envprefix;
26 private $fields;
27 private $valid = true;
28 private $ufc = null;
29 private $orders = array();
30
31 /** Constructor
32 * @param $fields An array of UFB_Field objects
33 * @param $envprefix Prefix to use for parts of the query
34 */
35 public function __construct($fields, $envprefix = '')
36 {
37 $this->fields = $fields;
38 $this->envprefix = $envprefix;
39 }
40
41 /** Builds the UFC; returns as soon as a field says it is invalid
42 */
43 private function buildUFC()
44 {
45 if ($this->ufc != null) {
46 return;
47 }
48 $this->ufc = new PFC_And();
49
50 foreach ($this->fields as $field) {
51 $this->valid = $field->apply(&$this);
52 if (!$this->valid) {
53 return;
54 }
55 }
56 }
57
58 public function addCond(PlFilterCondition &$cond)
59 {
60 $this->ufc->addChild($cond);
61 }
62
63 public function addOrder(PlFilterOrder &$order)
64 {
65 $this->order[] = $order;
66 }
67
68 public function isValid()
69 {
70 $this->buildUFC();
71 return $this->valid;
72 }
73
74 public function isEmpty()
75 {
76 $this->buildUFC();
77 foreach ($this->fields as $field) {
78 if (! $field->isEmpty()) {
79 return false;
80 }
81 }
82 return true;
83 }
84
85 /** Returns the built UFC
86 * @return The UFC, or PFC_False() if an error happened
87 */
88 public function getUFC()
89 {
90 $this->buildUFC();
91 if ($this->valid) {
92 return $this->ufc;
93 } else {
94 return new PFC_False();
95 }
96 }
97
98 /** Returns adequate orders
99 */
100 public function getOrders()
101 {
102 $this->buildUFC();
103 return $this->orders;
104 }
105
106 /** Wrappers around Env::i/s/..., to add envprefix
107 */
108 public function s($key, $def = '')
109 {
110 return Env::s($this->envprefix . $key, $def);
111 }
112
113 public function t($key, $def = '')
114 {
115 return Env::t($this->envprefix . $key, $def);
116 }
117
118 public function i($key, $def = 0)
119 {
120 return Env::i($this->envprefix . $key, $def);
121 }
122
123 public function v($key, $def = null)
124 {
125 return Env::v($this->envprefix . $key, $def);
126 }
127
128 public function b($key, $def = false)
129 {
130 return Env::b($this->envprefix . $key, $def);
131 }
132
133 public function has($key)
134 {
135 return Env::has($this->envprefix . $key);
136 }
137
138 public function blank($key, $strict = false)
139 {
140 return Env::blank($key, $strict);
141 }
142
143 public function hasAlnum($key)
144 {
145 $str = $this->s($key);
146 return preg_match('/[a-z0-9]/i', $str);
147 }
148
149 public function hasAlpha($key)
150 {
151 $str = $this->s($key);
152 return preg_match('/[a-z]/i', $str);
153 }
154
155 public function isOn($key)
156 {
157 return $this->has($key) && $this->t($key) == 'on';
158 }
159 }
160 // }}}
161
162 // {{{ class UFB_QuickSearch
163 class UFB_QuickSearch extends UserFilterBuilder
164 {
165 public function __construct($envprefix = '')
166 {
167 $fields = array(
168 new UFBF_Quick('quick', 'Recherche rapide'),
169 );
170 parent::__construct($fields, $envprefix);
171 }
172 }
173 // }}}
174
175 // {{{ class UFB_AdvancedSearch
176 class UFB_AdvancedSearch extends UserFilterBuilder
177 {
178 public function __construct($envprefix = '')
179 {
180 $fields = array(
181 new UFBF_Name('name', 'Nom'),
182 new UFBF_Promo('promo1', 'Promotion', 'egal1'),
183 new UFBF_Promo('promo2', 'Promotion', 'egal2'),
184 new UFBF_Sex('woman', 'Sexe'),
185 new UFBF_Registered('subscriber', 'Inscrit'),
186 new UFBF_Dead('alive', 'En vie'),
187
188 new UFBF_Town('city', 'Ville / Code Postal'),
189 new UFBF_Country('countryTxt', 'country', 'Pays'),
190 new UFBF_AdminArea('administrativearea', 'Région'),
191 new UFBF_SubAdminArea('subadministrativearea', 'Département'),
192
193 new UFBF_JobCompany('entreprise', 'Entreprise'),
194 new UFBF_JobDescription('jobdescription', 'Fonction'),
195 new UFBF_JobCv('cv', 'CV'),
196 new UFBF_JobTerms('jobterm', 'Mots-clefs'),
197
198 new UFBF_Nationality('nationaliteTxt', 'nationalite', 'Nationalité'),
199 new UFBF_Binet('binetTxt', 'binet', 'Binet'),
200 new UFBF_Group('groupexTxt', 'groupex', 'Groupe X'),
201 new UFBF_Section('sectionTxt', 'section', 'Section'),
202
203 new UFBF_EducationSchool('schoolTxt', 'school', "École d'application"),
204 new UFBF_EducationDegree('diplomaTxt', 'diploma', 'Diplôme'),
205 new UFBF_EducationField('fieldTxt', 'field', "Domaine d'études"),
206
207 new UFBF_Comment('free', 'Commentaire'),
208 new UFBF_Phone('phone_number', 'Téléphone'),
209 new UFBF_Networking('networking_address', 'networking_type', 'Networking et sites webs'),
210
211 new UFBF_Mentor('only_referent', 'Référent'),
212 );
213 parent::__construct($fields, $envprefix);
214 }
215 }
216 // }}}
217
218 // {{{ class UFB_MentorSearch
219 class UFB_MentorSearch extends UserFilterBuilder
220 {
221 public function __construct($envprefix = '')
222 {
223 $fields = array(
224 new UFBF_MentorCountry('country'),
225 new UFBF_MentorTerm('jobterm', 'jobtermText'),
226 new UFBF_MentorExpertise('expertise'),
227 );
228 parent::__construct($fields, $envprefix);
229 }
230 }
231 // }}}
232
233 // {{{ class UFB_Field
234 abstract class UFB_Field
235 {
236 protected $envfield;
237 protected $formtext;
238
239 protected $empty = false;
240 protected $val = null;
241
242 /** Constructor
243 * @param $envfield Name of the field in the environment
244 * @param $formtext User-friendly name of that field
245 */
246 public function __construct($envfield, $formtext = '')
247 {
248 $this->envfield = $envfield;
249 if ($formtext != '') {
250 $this->formtext = $formtext;
251 } else {
252 $formtext = ucfirst($envfield);
253 }
254 }
255
256 /** Prints the given error message to the user, and returns false
257 * in order to be used as return $this->raise('ERROR');
258 *
259 * All %s in the $msg will be replaced with the formtext.
260 */
261 protected function raise($msg)
262 {
263 Platal::page()->trigError(str_replace('%s', $this->formtext, $msg));
264 return false;
265 }
266
267 public function apply(UserFilterBuilder &$ufb) {
268 if (!$this->check($ufb)) {
269 return false;
270 }
271
272 if (!$this->isEmpty()) {
273 $ufc = $this->buildUFC($ufb);
274 if ($ufc != null) {
275 $ufb->addCond($ufc);
276 }
277 }
278 return true;
279 }
280
281 public function isEmpty()
282 {
283 return $this->empty;
284 }
285
286 /** Create the UFC associated to the field; won't be called
287 * if the field is "empty"
288 * @param &$ufb UFB to which fields must be added
289 * @return UFC
290 */
291 abstract protected function buildUFC(UserFilterBuilder &$ufb);
292
293 /** This function is intended to run consistency checks on the value
294 * @return boolean Whether the input is valid
295 */
296 abstract protected function check(UserFilterBuilder &$ufb);
297 }
298 // }}}
299
300 // {{{ class UFBF_Text
301 abstract class UFBF_Text extends UFB_Field
302 {
303 private $minlength;
304 private $maxlength;
305
306 public function __construct($envfield, $formtext = '', $minlength = 2, $maxlength = 255)
307 {
308 parent::__construct($envfield, $formtext);
309 $this->minlength = $minlength;
310 $this->maxlength = $maxlength;
311 }
312
313 protected function check(UserFilterBuilder &$ufb)
314 {
315 if ($ufb->blank($this->envfield)) {
316 $this->empty = true;
317 return true;
318 }
319
320 $this->val = $ufb->t($this->envfield);
321 if (strlen($this->val) < $this->minlength) {
322 return $this->raise("Le champ %s est trop court (minimum {$this->minlength}).");
323 } else if (strlen($this->val) > $this->maxlength) {
324 return $this->raise("Le champ %s est trop long (maximum {$this->maxlength}).");
325 } else if (preg_match(":[\]\[<>{}~§_`|%$^=]|\*\*:u", $this->val)) {
326 return $this->raise('Le champ %s contient un caractère interdit rendant la recherche impossible.');
327 }
328
329 return true;
330 }
331 }
332 // }}}
333
334 // {{{ class UFBF_Range
335 /** Subclass to use for fields which only allow integers within a range
336 */
337 abstract class UFBF_Range extends UFB_Field
338 {
339
340 private $min;
341 private $max;
342
343 public function __construct($envfield, $formtext = '', $min = 0, $max = 65535)
344 {
345 parent::__construct($envfield, $formtext);
346 $this->min = $min;
347 $this->max = $max;
348 }
349
350 protected function check(UserFilterBuilder &$ufb)
351 {
352 if ($ufb->blank($this->envfield)) {
353 $this->empty = true;
354 return true;
355 }
356
357 $this->val = $ufb->i($this->envfield);
358 if ($this->val < $this->min) {
359 return $this->raise("Le champs %s est inférieur au minimum ({$this->min}).");
360 } else if ($this->val > $this->max) {
361 return $this->raise("Le champ %s est supérieur au maximum ({$this->max}).");
362 }
363 return true;
364 }
365 }
366 // }}}
367
368 // {{{ class UFBF_Index
369 /** Subclass to use for indexed fields
370 */
371 abstract class UFBF_Index extends UFB_Field
372 {
373 protected function check(UserFilterBuilder &$ufb)
374 {
375 if ($ufb->blank($this->envfield)) {
376 $this->empty = true;
377 }
378 $this->val = $ufb->i($this->envfield);
379 return true;
380 }
381 }
382 // }}}
383
384 // {{{ class UFBF_Enum
385 /** Subclass to use for fields whose value must belong to a specific set of values
386 */
387 abstract class UFBF_Enum extends UFB_Field
388 {
389 protected $allowedvalues;
390
391 public function __construct($envfield, $formtext = '', $allowedvalues = array(), $strict = false)
392 {
393 parent::__construct($envfield, $formtext);
394 $this->allowedvalues = $allowedvalues;
395 $this->strict = $strict;
396 }
397
398 protected function check(UserFilterBuilder &$ufb)
399 {
400 if ($ufb->blank($this->envfield)) {
401 $this->empty = true;
402 return true;
403 }
404
405 $this->val = $ufb->v($this->envfield);
406 if (! in_array($this->val, $this->allowedvalues)) {
407 if ($this->strict) {
408 return $this->raise("La valeur {$this->val} n'est pas valide pour le champ %s.");
409 } else {
410 $this->empty = true;
411 }
412 }
413 return true;
414 }
415 }
416 // }}}
417
418 // {{{ class UFBF_Bool
419 abstract class UFBF_Bool extends UFB_Field
420 {
421 protected function check(UserFilterBuilder &$ufb)
422 {
423 if ($ufb->blank($this->envfield)) {
424 $this->empty = true;
425 return true;
426 }
427
428 $this->val = $ufb->b($this->envfield);
429 return true;
430 }
431 }
432 // }}}
433
434 // {{{ class UFBF_Mixed
435 /** A class for building UFBFs when the user can input either a text or an ID
436 */
437 abstract class UFBF_Mixed extends UFB_Field
438 {
439 /** Name of the DirEnum on which class is based
440 */
441 protected $direnum;
442
443 protected $envfieldindex;
444
445 public function __construct($envfieldtext, $envfieldindex, $formtext = '')
446 {
447 parent::__construct($envfieldtext, $formtext);
448 $this->envfieldindex = $envfieldindex;
449 }
450
451 protected function check(UserFilterBuilder &$ufb)
452 {
453 if ($ufb->blank($this->envfieldindex) && !$ufb->hasAlnum($this->envfield)) {
454 $this->empty = true;
455 return true;
456 }
457
458 if (!$ufb->blank($this->envfieldindex)) {
459 $index = $ufb->v($this->envfieldindex);
460 if (is_int($index)) {
461 $index = intval($index);
462 } else {
463 $index = strtoupper($index);
464 }
465 $this->val = array($index);
466 } else {
467 $indexes = DirEnum::getIDs($this->direnum, $ufb->t($this->envfield),
468 $ufb->b('exact') ? XDB::WILDCARD_EXACT : XDB::WILDCARD_CONTAINS);
469 if (count($indexes) == 0) {
470 return false;
471 }
472 $this->val = $indexes;
473 }
474 return true;
475 }
476 }
477 // }}}
478
479 // {{{ class UFBF_Quick
480 class UFBF_Quick extends UFB_Field
481 {
482 protected function check(UserFilterBuilder &$ufb)
483 {
484 if ($ufb->blank($this->envfield)) {
485 $this->empty = true;
486 return true;
487 }
488
489 $this->val = str_replace('*', '%', replace_accent($ufb->t($this->envfield)));
490
491 return true;
492 }
493
494 protected function buildUFC(UserFilterBuilder &$ufb)
495 {
496
497 $r = $s = $this->val;
498
499 /** Admin: Email, IP
500 */
501 if (S::admin() && strpos($s, '@') !== false) {
502 return new UFC_Email($s);
503 } else if (S::admin() && preg_match('/[0-9]+\.([0-9]+|%)\.([0-9]+|%)\.([0-9]+|%)/', $s)) {
504 return new UFC_Ip($s);
505 }
506
507 $conds = new PFC_And();
508
509 /** Name
510 */
511 $s = preg_replace('!\d+!', ' ', $s);
512 $strings = preg_split("![^a-zA-Z%]+!",$s, -1, PREG_SPLIT_NO_EMPTY);
513 if (count($strings) > 5) {
514 Platal::page()->trigWarning("Tu as indiqué trop d'éléments dans ta recherche, seuls les 5 premiers seront pris en compte");
515 $strings = array_slice($strings, 0, 5);
516 }
517
518 if (count($strings)) {
519 if (S::logged()) {
520 $flags = array();
521 } else {
522 $flags = array('public');
523 }
524 $exact =$ufb->b('exact');
525 $conds->addChild(new UFC_NameTokens($strings, $flags, $ufb->b('with_soundex'), $exact));
526
527 $ufb->addOrder(new UFO_Score());
528 }
529
530 /** Promo ranges
531 */
532 $s = preg_replace('! *- *!', '-', $r);
533 $s = preg_replace('!([<>]) *!', ' \1', $s);
534 $s = preg_replace('![^0-9\-><]!', ' ', $s);
535 $s = preg_replace('![<>\-] !', '', $s);
536 $ranges = preg_split('! +!', $s, -1, PREG_SPLIT_NO_EMPTY);
537 foreach ($ranges as $r) {
538 if (preg_match('!^\d{4}$!', $r)) {
539 $conds->addChild(new UFC_Promo('=', UserFilter::DISPLAY, 'X' . $r));
540 } elseif (preg_match('!^(\d{4})-(\d{4})$!', $r, $matches)) {
541 $p1=min(intval($matches[1]), intval($matches[2]));
542 $p2=max(intval($matches[1]), intval($matches[2]));
543 $conds->addChild(new PFC_And(
544 new UFC_Promo('>=', UserFilter::DISPLAY, 'X' . $p1),
545 new UFC_Promo('<=', UserFilter::DISPLAY, 'X' . $p2)
546 ));
547 } elseif (preg_match('!^<(\d{4})!', $r, $matches)) {
548 $conds->addChild(new UFC_Promo('<=', UserFilter::DISPLAY, 'X' . $matches[1]));
549 } elseif (preg_match('!^>(\d{4})!', $r, $matches)) {
550 $conds->addChild(new UFC_Promo('>=', UserFilter::DISPLAY, 'X' . $matches[1]));
551 }
552 }
553
554 /** Phone number
555 */
556 $t = preg_replace('!(\d{4}-\d{4}|>\d{4}|<\d{4})!', '', $s);
557 $t = preg_replace('![<>\- ]!', '', $t);
558 if (strlen($t) > 4) {
559 $conds->addChild(new UFC_Phone($t));
560 }
561
562 return $conds;
563 }
564 }
565 // }}}
566
567 // {{{ class UFBF_Name
568 class UFBF_Name extends UFBF_Text
569 {
570 protected function check(UserFilterBuilder &$ufb)
571 {
572 if (!parent::check($ufb)) {
573 return false;
574 }
575
576 $this->val = preg_split('/[[:space:]]/', $this->val);
577 if (count($this->val) == 0) {
578 $this->empty = true;
579 }
580 return true;
581 }
582
583 protected function buildUFC(UserFilterBuilder &$ufb)
584 {
585 return new UFC_NameTokens($this->val, array(), $ufb->b('with_soundex'), $ufb->b('exact'));
586 }
587 }
588 // }}}
589
590 // {{{ class UFBF_Promo
591 class UFBF_Promo extends UFB_Field
592 {
593 private static $validcomps = array('<', '<=', '=', '>=', '>');
594 private $comp;
595 private $envfieldcomp;
596
597 public function __construct($envfield, $fromtext = '', $envfieldcomp)
598 {
599 parent::__construct($envfield, $fromtext);
600 $this->envfieldcomp = $envfieldcomp;
601 }
602
603 protected function check(UserFilterBuilder &$ufb)
604 {
605 if ($ufb->blank($this->envfield) || $ufb->blank($this->envfieldcomp)) {
606 $this->empty = true;
607 return true;
608 }
609
610 $this->val = $ufb->i($this->envfield);
611 $this->comp = $ufb->v($this->envfieldcomp);
612
613 if (!in_array($this->comp, self::$validcomps)) {
614 return $this->raise("Le critère {$this->comp} n'est pas valide pour le champ %s");
615 }
616
617 if (preg_match('/^[0-9]{2}$/', $this->val)) {
618 $this->val += 1900;
619 }
620 if ($this->val < 1900 || $this->val > 9999) {
621 return $this->raise("Le champ %s doit être une année à 4 chiffres.");
622 }
623 return true;
624 }
625
626 protected function buildUFC(UserFilterBuilder &$ufb) {
627 return new UFC_Promo($this->comp, UserFilter::GRADE_ING, $this->val);
628 }
629 }
630 // }}}
631
632 // {{{ class UFBF_Sex
633 class UFBF_Sex extends UFBF_Enum
634 {
635 public function __construct($envfield, $formtext = '')
636 {
637 parent::__construct($envfield, $formtext, array(1, 2));
638 }
639
640 private static function getVal($id)
641 {
642 switch($id) {
643 case 1:
644 return User::GENDER_MALE;
645 break;
646 case 2:
647 return User::GENDER_FEMALE;
648 break;
649 }
650 }
651
652 protected function buildUFC(UserFilterBuilder &$ufb)
653 {
654 return new UFC_Sex(self::getVal($this->val));
655 }
656 }
657 // }}}
658
659 // {{{ class UFBF_Registered
660 class UFBF_Registered extends UFBF_Enum
661 {
662 public function __construct($envfield, $formtext = '')
663 {
664 parent::__construct($envfield, $formtext, array(1, 2));
665 }
666
667 protected function buildUFC(UserFilterBuilder &$ufb)
668 {
669 if ($this->val == 1) {
670 return new UFC_Registered();
671 } else if ($this->val == 2) {
672 return new PFC_Not(new UFC_Registered());
673 }
674 }
675 }
676 // }}}
677
678 // {{{ class UFBF_Dead
679 class UFBF_Dead extends UFBF_Enum
680 {
681 public function __construct($envfield, $formtext = '')
682 {
683 parent::__construct($envfield, $formtext, array(1, 2));
684 }
685
686 protected function buildUFC(UserFilterBuilder &$ufb)
687 {
688 if ($this->val == 1) {
689 return new PFC_Not(new UFC_Dead());
690 } else if ($this->val == 2) {
691 return new UFC_Dead();
692 }
693 }
694 }
695 // }}}
696
697 // {{{ class UFBF_Town
698 /** Retrieves a town, either from a postal code or a town name
699 */
700 class UFBF_Town extends UFBF_Text
701 {
702 const TYPE_TEXT = 1;
703 const TYPE_ZIP = 2;
704 const TYPE_ANY = 3;
705
706 private $type;
707 private $onlycurrentfield;
708
709 public function __construct($envfield, $formtext = '', $type = self::TYPE_ANY, $onlycurrentfield = 'only_current')
710 {
711 $this->type = $type;
712 $this->onlycurrentfield = $onlycurrentfield;
713 parent::__construct($envfield, $formtext, 2, 30);
714 }
715
716 protected function buildUFC(UserFilterBuilder &$ufb)
717 {
718 if ($ufb->isOn($this->onlycurrentfield)) {
719 $flags = UFC_Address::FLAG_CURRENT;
720 } else {
721 $flags = UFC_Address::FLAG_ANY;
722 }
723
724 if (preg_match('/[0-9]/', $this->val)) {
725 if ($this->type & self::TYPE_ZIP) {
726 return new UFC_AddressField($this->val, UFC_AddressField::FIELD_ZIPCODE, UFC_Address::TYPE_ANY, $flags);
727 } else {
728 return new PFC_False();
729 }
730 } else {
731 $byname = new UFC_AddressText(null, XDB::WILDCARD_CONTAINS, UFC_Address::TYPE_ANY, $flags, null, $this->val);
732 $byzip = new UFC_AddressField($this->val, UFC_AddressField::FIELD_ZIPCODE, UFC_Address::TYPE_ANY, $flags);
733 if ($this->type & self::TYPE_ANY) {
734 return new PFC_Or($byname, $byzip);
735 } else if ($this->type & self::TYPE_TEXT) {
736 return $byname;
737 } else {
738 return $byzip;
739 }
740 }
741 }
742 }
743 // }}}
744
745 // {{{ class UFBF_Country
746 class UFBF_Country extends UFBF_Mixed
747 {
748 protected $direnum = DirEnum::COUNTRIES;
749 protected $onlycurrentfield;
750
751 public function __construct($envfieldtext, $envfieldindex, $formtext = '', $onlycurrentfield = 'only_current')
752 {
753 parent::__construct($envfieldtext, $envfieldindex, $formtext);
754 $this->onlycurrentfield = $onlycurrentfield;
755 }
756
757 protected function buildUFC(UserFilterBuilder &$ufb)
758 {
759 if ($ufb->isOn($this->onlycurrentfield)) {
760 $flags = UFC_Address::FLAG_CURRENT;
761 } else {
762 $flags = UFC_Address::FLAG_ANY;
763 }
764
765 return new UFC_AddressField($this->val, UFC_AddressField::FIELD_COUNTRY, UFC_Address::TYPE_ANY, $flags);
766 }
767 }
768 // }}}
769
770 // {{{ class UFBF_AdminArea
771 class UFBF_AdminArea extends UFBF_Index
772 {
773 protected $direnum = DirEnum::ADMINAREAS;
774 protected $onlycurrentfield;
775
776 public function __construct($envfield, $formtext = '', $onlycurrentfield = 'only_current')
777 {
778 parent::__construct($envfield, $formtext);
779 $this->onlycurrentfield = $onlycurrentfield;
780 }
781
782
783 protected function buildUFC(UserFilterBuilder &$ufb)
784 {
785 if ($ufb->isOn($this->onlycurrentfield)) {
786 $flags = UFC_Address::FLAG_CURRENT;
787 } else {
788 $flags = UFC_Address::FLAG_ANY;
789 }
790
791 return new UFC_AddressField($this->val, UFC_AddressField::FIELD_ADMAREA, UFC_Address::TYPE_ANY, $flags);
792 }
793 }
794 // }}}
795
796 // {{{ class UFBF_SubAdminArea
797 class UFBF_SubAdminArea extends UFBF_Index
798 {
799 protected $direnum = DirEnum::SUBADMINAREAS;
800 protected $onlycurrentfield;
801
802 public function __construct($envfield, $formtext = '', $onlycurrentfield = 'only_current')
803 {
804 parent::__construct($envfield, $formtext);
805 $this->onlycurrentfield = $onlycurrentfield;
806 }
807
808
809 protected function buildUFC(UserFilterBuilder &$ufb)
810 {
811 if ($ufb->isOn($this->onlycurrentfield)) {
812 $flags = UFC_Address::FLAG_CURRENT;
813 } else {
814 $flags = UFC_Address::FLAG_ANY;
815 }
816
817 return new UFC_AddressField($this->val, UFC_AddressField::FIELD_SUBADMAREA, UFC_Address::TYPE_ANY, $flags);
818 }
819 }
820 // }}}
821
822 // {{{ class UFBF_JobCompany
823 class UFBF_JobCompany extends UFBF_Text
824 {
825 private $onlymentorfield;
826
827 public function __construct($envfield, $formtext = '', $onlymentorfield = 'only_referent')
828 {
829 parent::__construct($envfield, $formtext);
830 $this->onlymentorfield = $onlymentorfield;
831 }
832
833 public function check(UserFilterBuilder &$ufb) {
834 if (parent::check($ufb)) {
835 # No company check for mentors
836 if ($ufb->isOn($this->onlymentorfield)) {
837 $this->empty = true;
838 }
839 return true;
840 } else {
841 return false;
842 }
843 }
844
845 protected function buildUFC(UserFilterBuilder &$ufb)
846 {
847 return new UFC_Job_Company(UFC_Job_Company::JOBNAME, $this->val);
848 }
849 }
850 // }}}
851
852 // {{{ class UFBF_JobTerms
853 class UFBF_JobTerms extends UFBF_Index
854 {
855 protected function buildUFC(UserFilterBuilder &$ufb)
856 {
857 return new UFC_Job_Terms($this->val);
858 }
859 }
860 // }}}
861
862 // {{{ class UFBF_JobDescription
863 class UFBF_JobDescription extends UFBF_Text
864 {
865 private $onlymentorfield;
866
867 public function __construct($envfield, $formtext = '', $onlymentorfield = 'only_referent')
868 {
869 parent::__construct($envfield, $formtext);
870 $this->onlymentorfield = $onlymentorfield;
871 }
872
873 protected function buildUFC(UserFilterBuilder &$ufb)
874 {
875 if ($ufb->isOn($this->onlymentorfield)) {
876 return new UFC_Mentor_Expertise($this->val);
877 } else {
878 return new UFC_Job_Description($this->val, UserFilter::JOB_USERDEFINED);
879 }
880 }
881 }
882 // }}}
883
884 // {{{ class UFBF_JobCv
885 class UFBF_JobCv extends UFBF_Text
886 {
887 private $onlymentorfield;
888
889 public function __construct($envfield, $formtext = '', $onlymentorfield = 'only_referent')
890 {
891 parent::__construct($envfield, $formtext);
892 $this->onlymentorfield = $onlymentorfield;
893 }
894
895 protected function buildUFC(UserFilterBuilder &$ufb)
896 {
897 if ($ufb->isOn($this->onlymentorfield)) {
898 return new UFC_Mentor_Expertise($this->val);
899 } else {
900 return new UFC_Job_Description($this->val, UserFilter::JOB_CV);
901 }
902 }
903 }
904 // }}}
905
906 // {{{ class UFBF_Nationality
907 class UFBF_Nationality extends UFBF_Mixed
908 {
909 protected $direnum = DirEnum::NATIONALITIES;
910
911 protected function buildUFC(UserFilterBuilder &$ufb)
912 {
913 return new UFC_Nationality($this->val);
914 }
915 }
916 // }}}
917
918 // {{{ class UFBF_Binet
919 class UFBF_Binet extends UFBF_Mixed
920 {
921 protected $direnum = DirEnum::BINETS;
922
923 protected function buildUFC(UserFilterBuilder &$ufb)
924 {
925 return new UFC_Binet($this->val);
926 }
927 }
928 // }}}
929
930 // {{{ class UFBF_Group
931 class UFBF_Group extends UFBF_Mixed
932 {
933 protected $direnum = DirEnum::GROUPESX;
934
935 protected function buildUFC(UserFilterBuilder &$ufb)
936 {
937 if (count($this->val) == 1) {
938 return new UFC_Group($this->val[0]);
939 }
940
941 $or = new PFC_Or();
942 foreach ($this->val as $grp) {
943 $or->addChild(new UFC_Group($grp));
944 }
945 return $or;
946 }
947 }
948 // }}}
949
950 // {{{ class UFBF_Section
951 class UFBF_Section extends UFBF_Mixed
952 {
953 protected $direnum = DirEnum::SECTIONS;
954
955 protected function buildUFC(UserFilterBuilder &$ufb)
956 {
957 return new UFC_Section($this->val);
958 }
959 }
960 // }}}
961
962 // {{{ class UFBF_EducationSchool
963 class UFBF_EducationSchool extends UFBF_Mixed
964 {
965 protected $direnum = DirEnum::EDUSCHOOLS;
966
967 protected function buildUFC(UserFilterBuilder &$ufb)
968 {
969 return new UFC_EducationSchool($this->val);
970 }
971 }
972 // }}}
973
974 // {{{ class UFBF_EducationDegree
975 class UFBF_EducationDegree extends UFBF_Mixed
976 {
977 protected $direnum = DirEnum::EDUDEGREES;
978
979 protected function buildUFC(UserFilterBuilder &$ufb)
980 {
981 return new UFC_EducationDegree($this->val);
982 }
983 }
984 // }}}
985
986 // {{{ class UFBF_EducationField
987 class UFBF_EducationField extends UFBF_Mixed
988 {
989 protected $direnum = DirEnum::EDUFIELDS;
990
991 protected function buildUFC(UserFilterBuilder &$ufb)
992 {
993 return new UFC_EducationField($this->val);
994 }
995 }
996 // }}}
997
998 // {{{ class UFBF_Comment
999 class UFBF_Comment extends UFBF_Text
1000 {
1001 protected function buildUFC(UserFilterBuilder &$ufb)
1002 {
1003 return new UFC_Comment($this->val);
1004 }
1005 }
1006 // }}}
1007
1008 // {{{ class UFBF_Phone
1009 class UFBF_Phone extends UFBF_Text
1010 {
1011 protected function buildUFC(UserFilterBuilder &$ufb)
1012 {
1013 return new UFC_Phone($this->val);
1014 }
1015 }
1016 // }}}
1017
1018 // {{{ class UFBF_Networking
1019 class UFBF_Networking extends UFBF_Text
1020 {
1021 private $networktypefield;
1022 private $nwtype;
1023
1024 public function __construct($envfield, $networktypefield, $formtext = '')
1025 {
1026 parent::__construct($envfield, $formtext);
1027 $this->networktypefield = $networktypefield;
1028 }
1029
1030 public function check(UserFilterBuilder &$ufb)
1031 {
1032 if (parent::check($ufb)) {
1033 $this->nwtype = $ufb->i($this->networktypefield);
1034 return true;
1035 } else {
1036 return false;
1037 }
1038 }
1039
1040 public function isEmpty()
1041 {
1042 return parent::isEmpty() || $this->nwtype == 0;
1043 }
1044
1045 public function buildUFC(UserFilterBuilder &$ufb)
1046 {
1047 return new UFC_Networking($this->nwtype, $this->val);
1048 }
1049 }
1050 // }}}
1051
1052 // {{{ class UFBF_Mentor
1053 class UFBF_Mentor extends UFBF_Bool
1054 {
1055 protected function buildUFC(UserFilterBuilder &$ufb)
1056 {
1057 return new UFC_Mentor();
1058 }
1059 }
1060 // }}}
1061
1062 // {{{ class UFBF_MentorCountry
1063 class UFBF_MentorCountry extends UFBF_Text
1064 {
1065 protected function buildUFC(UserFilterBuilder &$ufb)
1066 {
1067 return new UFC_Mentor_Country($this->val);
1068 }
1069 }
1070 // }}}
1071
1072 // {{{ class UFBF_Mentorterm
1073 class UFBF_MentorTerm extends UFBF_Index
1074 {
1075 protected function buildUFC(UserFilterBuilder &$ufb)
1076 {
1077 return new UFC_Mentor_Terms($this->val);
1078 }
1079 }
1080 // }}}
1081
1082 // {{{ class UFBF_MentorExpertise
1083 class UFBF_MentorExpertise extends UFBF_Text
1084 {
1085 protected function buildUFC(UserFilterBuilder &$ufb)
1086 {
1087 return new UFC_Mentor_Expertise($this->val);
1088 }
1089 }
1090 // }}}
1091
1092 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1093 ?>