+++ /dev/null
-<?php
-/***************************************************************************
- * Copyright (C) 2003-2010 Polytechnique.org *
- * http://opensource.polytechnique.org/ *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the Free Software *
- * Foundation, Inc., *
- * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
- ***************************************************************************/
-
-// {{{ Global variables used for the search Queries
-
-@$globals->search->result_fields = '
- u.user_id, u.promo, u.matricule, u.matricule_ax,
- if(u.nom_usage=\'\', u.nom, u.nom_usage) AS NomSortKey,
- u.nom_usage,u.date,
- u.deces!=0 AS dcd,u.deces,
- u.perms IN (\'admin\',\'user\', \'disabled\') AS inscrit,
- u.perms != \'pending\' AS wasinscrit,
- FIND_IN_SET(\'femme\', u.flags) AS sexe,
- ede0.name AS eduname0, ede0.url AS eduurl0, edd0.degree AS edudegree0,
- edu0.grad_year AS edugrad_year0, f0.field AS edufield0, edu0.program AS eduprogram0,
- ede1.name AS eduname1, ede1.url AS eduurl1, edd1.degree AS edudegree1,
- edu1.grad_year AS edugrad_year1, f1.field AS edufield1, edu1.program AS eduprogram1,
- ede2.name AS eduname2, ede2.url AS eduurl2, edd2.degree AS edudegree2,
- edu2.grad_year AS edugrad_year2, f2.field AS edufield2, edu2.program AS eduprogram2,
- ede3.name AS eduname3, ede3.url AS eduurl3, edd3.degree AS edudegree3,
- edu3.grad_year AS edugrad_year3, f3.field AS edufield3, edu3.program AS eduprogram3,
- es.name AS secteur, ef.fonction_fr AS fonction,
- IF(n1.nat=\'\',n1.pays,n1.nat) AS nat1, n1.a2 AS iso3166_1,
- IF(n2.nat=\'\',n2.pays,n2.nat) AS nat2, n2.a2 AS iso3166_2,
- IF(n3.nat=\'\',n3.pays,n3.nat) AS nat3, n3.a2 AS iso3166_3,
- (COUNT(em.email) > 0 OR FIND_IN_SET("googleapps", u.mail_storage) > 0) AS actif,';
-// hide private information if not logged
-if (S::logged())
- $globals->search->result_fields .='
- q.profile_freetext AS freetext,
- adr.city, gp.pays AS countrytxt, gr.name AS region,
- ee.name,
- nw.address AS networking_address,
- nwe.name AS networking_name,';
-else
- $globals->search->result_fields .="
- IF(q.profile_freetext_pub='public', q.profile_freetext, '') AS freetext,
- IF(adr.pub='public', adr.city, '') AS city,
- IF(adr.pub='public', gp.pays, '') AS countrytxt,
- IF(adr.pub='public', gr.name, '') AS region,
- IF(e.pub='public', je.name, '') AS entreprise,
- IF(nw.pub='public', nw.address, '') AS networking_address,
- IF(nw.pub='public', nwe.name, '') AS networking_name,";
-@$globals->search->result_where_statement = "
- LEFT JOIN profile_education AS edu0 ON (u.user_id = edu0.pid AND edu0.id = 0)
- LEFT JOIN profile_education_enum AS ede0 ON (ede0.id = edu0.eduid)
- LEFT JOIN profile_education_degree_enum AS edd0 ON (edd0.id = edu0.degreeid)
- LEFT JOIN profile_education_field_enum AS f0 ON (f0.id = edu0.fieldid)
- LEFT JOIN profile_education AS edu1 ON (u.user_id = edu1.pid AND edu1.id = 1)
- LEFT JOIN profile_education_enum AS ede1 ON (ede1.id = edu1.eduid)
- LEFT JOIN profile_education_degree_enum AS edd1 ON (edd1.id = edu1.degreeid)
- LEFT JOIN profile_education_field_enum AS f1 ON (f1.id = edu1.fieldid)
- LEFT JOIN profile_education AS edu2 ON (u.user_id = edu2.pid AND edu2.id = 2)
- LEFT JOIN profile_education_enum AS ede2 ON (ede2.id = edu2.eduid)
- LEFT JOIN profile_education_degree_enum AS edd2 ON (edd2.id = edu2.degreeid)
- LEFT JOIN profile_education_field_enum AS f2 ON (f2.id = edu2.fieldid)
- LEFT JOIN profile_education AS edu3 ON (u.user_id = edu3.pid AND edu3.id = 3)
- LEFT JOIN profile_education_enum AS ede3 ON (ede3.id = edu3.eduid)
- LEFT JOIN profile_education_degree_enum AS edd3 ON (edd3.id = edu3.degreeid)
- LEFT JOIN profile_education_field_enum AS f3 ON (f3.id = edu3.fieldid)
- LEFT JOIN profile_job AS e ON (e.pid = u.user_id)
- LEFT JOIN profile_job_enum AS ee ON (e.jobid = ee.id)
- LEFT JOIN profile_job_sector_enum AS es ON (es.id = e.sectorid)
- LEFT JOIN fonctions_def AS ef ON (e.fonction = ef.id)
- LEFT JOIN geoloc_countries AS n1 ON (u.nationalite = n1.iso_3166_1_a2)
- LEFT JOIN geoloc_countries AS n2 ON (u.nationalite2 = n2.iso_3166_1_a2)
- LEFT JOIN geoloc_countries AS n3 ON (u.nationalite3 = n3.iso_3166_1_a2)
- LEFT JOIN profile_addresses AS adr ON (u.user_id = adr.pid
- AND FIND_IN_SET('current', adr.flags))
- LEFT JOIN geoloc_countries AS gp ON (adr.countryId = gp.iso_3166_1_a2)
- LEFT JOIN geoloc_administrativeareas AS gr ON (adr.countryId = gr.country
- AND adr.administrativeAreaId = gr.id)
- LEFT JOIN emails AS em ON (em.uid = u.user_id AND em.flags = 'active')
- LEFT JOIN profile_networking AS nw ON (nw.pid = u.user_id)
- LEFT JOIN profile_networking_enum AS nwe ON (nwe.network_type = nw.network_type)";
-
-// }}}
-// {{{ class ThrowError
-
-/** handle errors for end-users queries
- * assign the error message and runs the templates
- *
- * @author Jean-Sebastien Bedo
- */
-class ThrowError
-{
- public static $throwHook = array('ThrowError', 'defaultHandler');
-
- /** constuctor
- * @param $explain string the error (in natural language)
- */
- public function __construct($explain)
- {
- call_user_func(ThrowError::$throwHook, $explain);
- }
-
- /** defaut error handler
- */
- private static function defaultHandler($explain)
- {
- global $globals;
- $page =& Platal::page();
- $page->changeTpl('search/index.tpl');
- $page->setTitle('Polytechnique.org - Annuaire');
- $page->assign('baseurl', $globals->baseurl);
- $page->trigError($explain);
- $page->run();
- }
-}
-
-// }}}
-// {{{ class SField [Base class]
-
-/** classe de base représentant un champ de recherche
- * (correspond à un champ du formulaire mais peut être à plusieurs champs de la bdd)
- * interface étendue pour chaque type de champ particulier
- */
-class SField
-{
- // {{{ properties
-
- /** le nom du champ dans le formulaire HTML */
- var $fieldFormName;
- /** champs de la bdd correspondant à ce champ sous forme d'un tableau */
- var $fieldDbName;
- /** champ résultat dans la requête MySQL correspondant à ce champ
- * (alias utilisé pour la clause ORDER BY) */
- var $fieldResultName;
- /** valeur du champ instanciée par l'utilisateur */
- var $value;
-
- // }}}
- // {{{ constructor
-
- /** constructeur
- * (récupère la requête de l'utilisateur pour ce champ) */
- function SField($_fieldFormName, $_fieldDbName='', $_fieldResultName='')
- {
- $this->fieldFormName = $_fieldFormName;
- $this->fieldDbName = $_fieldDbName;
- $this->fieldResultName = $_fieldResultName;
- $this->get_request();
- }
-
- // }}}
- // {{{ function get_request()
-
- /** récupérer la requête de l'utilisateur
- * on met une chaîne vide si le champ n'a pas été complété */
- function get_request()
- {
- $this->value = trim(Env::v($this->fieldFormName));
- }
-
- // }}}
- // {{{ function get_where_statement()
-
- /** récupérer la clause correspondant au champ dans la clause WHERE de la requête
- * on parcourt l'ensemble des champs de la bdd de $fieldDbName et on associe
- * à chacun d'entre eux une clause spécifique
- * la clause totale et la disjonction de ces clauses spécifiques */
- function get_where_statement()
- {
- if ($this->value=='') {
- return false;
- }
- $res = implode(' OR ', array_filter(array_map(array($this, 'get_single_where_statement'), $this->fieldDbName)));
- return empty($res) ? '' : "($res)";
- }
-
- // }}}
- // {{{ function get_order_statement()
-
- /** récupérer la clause correspondant au champ dans la clause ORDER BY de la requête
- * utilisé par exemple pour placer d'abord le nom égal à la requête avant les approximations */
- function get_order_statement()
- {
- return false;
- }
-
- // }}}
- // {{{ function get_select_statement()
-
- function get_select_statement()
- {
- return false;
- }
-
- // }}}
- // {{{ function get_url()
-
- /** récupérer le bout d'URL correspondant aux paramètres permettant d'imiter une requête d'un
- * utilisateur assignant la valeur $this->value à ce champ */
- function get_url()
- {
- if (empty($this->value)) {
- return false;
- } else {
- return $this->fieldFormName.'='.urlencode($this->value);
- }
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class QuickSearch [Google Like]
-
-class QuickSearch extends SField
-{
- // {{{ properties
-
- /** stores tokens */
- var $strings;
- /** stores numerical ranges */
- var $ranges;
- /** stores admin searches */
- var $email;
- var $ip;
- /** stores phone number */
- var $phone;
-
- // }}}
- // {{{ constructor
-
- function QuickSearch($_fieldFormName)
- {
- $this->fieldFormName = $_fieldFormName;
- $this->get_request();
- if (preg_match(":[\]\[{}~/§_`|%$^=+]|\*\*:u", $this->value)) {
- new ThrowError('Un champ contient un caractère interdit rendant la recherche impossible.');
- }
- }
-
- // }}}
- // {{{ function isempty()
-
- function isempty()
- {
- return empty($this->strings) && empty($this->ranges) && empty($this->email) && empty($this->ip) && empty($this->phone);
- }
-
- // }}}
- // {{{ function get_request()
-
- function get_request()
- {
- parent::get_request();
- $s = replace_accent(trim($this->value));
- $r = $s = str_replace('*','%',$s);
-
- if (S::admin() && strpos($s, '@') !== false) {
- $this->email = $s;
- } else if (S::admin() && preg_match('/[0-9]+\.([0-9]+|%)\.([0-9]+|%)\.([0-9]+|%)/', $s)) {
- $this->ip = $s;
- }
- if ($this->email || $this->ip) {
- $this->strings = $this->ranges = array();
- return;
- }
-
- $s = preg_replace('!\d+!', ' ', $s);
- $this->strings = preg_split("![^a-zA-Z%]+!",$s, -1, PREG_SPLIT_NO_EMPTY);
- if (count($this->strings) > 5) {
- Platal::page()->trigWarning("Tu as indiqué trop d'éléments dans ta recherche, seuls les 5 premiers seront pris en compte");
- $this->strings = array_slice($this->strings, 0, 5);
- }
-
- $s = preg_replace('! *- *!', '-', $r);
- $s = preg_replace('!([<>]) *!', ' \1', $s);
- $s = preg_replace('![^0-9\-><]!', ' ', $s);
- $s = preg_replace('![<>\-] !', '', $s);
- $ranges = preg_split('! +!', $s, -1, PREG_SPLIT_NO_EMPTY);
- $this->ranges=Array();
- foreach ($ranges as $r) {
- if (preg_match('!^([<>]\d{4}|\d{4}(-\d{4})?)$!', $r)) $this->ranges[] = $r;
- }
-
- $t = preg_replace('!(\d{4}-\d{4}|>\d{4}|<\d{4})!', '', $s);
- $t = preg_replace('![<>\- ]!', '', $t);
- if (strlen($t) > 4) {
- $this->phone = $t;
- }
- }
-
- // }}}
- // {{{ function get_where_statement()
-
- function get_where_statement()
- {
- $where = Array();
- foreach ($this->strings as $i => $s) {
- if (Env::i('with_soundex') && strlen($s) > 1) {
- $t = soundex_fr($s);
- $where[] = "sn$i.soundex = '$t'";
- } elseif (Env::i('exact')) {
- $where[] = "sn$i.token = '$s'";
- } else {
- $t = str_replace('*', '%', $s).'%';
- $t = str_replace('%%', '%', $t);
- $where[] = "sn$i.token LIKE '$t'";
- }
- }
-
- $wherep = Array();
- foreach ($this->ranges as $r) {
- if (preg_match('!^\d{4}$!', $r)) {
- $wherep[] = "u.promo=$r";
- } elseif (preg_match('!^(\d{4})-(\d{4})$!', $r, $matches)) {
- $p1=min(intval($matches[1]), intval($matches[2]));
- $p2=max(intval($matches[1]), intval($matches[2]));
- $wherep[] = "(u.promo>=$p1 AND u.promo<=$p2)";
- } elseif (preg_match('!^<(\d{4})!', $r, $matches)) {
- $wherep[] = "u.promo<={$matches[1]}";
- } elseif (preg_match('!^>(\d{4})!', $r, $matches)) {
- $wherep[] = "u.promo>={$matches[1]}";
- }
- }
- if (!empty($wherep)) {
- $where[] = '('.join(' OR ',$wherep).')';
- }
- if (!empty($this->email)) {
- $where[] = 'ems.email = ' . XDB::escape($this->email);
- }
- if (!empty($this->ip)) {
- $ip = ip_to_uint($this->ip);
-
- // If the IP address requested for the search cannot be translated,
- // the predicate should always be valued to false.
- if ($ip != null) {
- $where[] = "( ls.ip = $ip OR ls.forward_ip = $ip ) AND ls.suid = 0";
- } else {
- $where[] = "false";
- }
- }
- if (!empty($this->phone)){
- require_once("profil.func.inc.php");
- $phone = format_phone_number($this->phone) . "%";
- $where[] = 't.search_tel LIKE ' . XDB::escape($phone);
- }
-
- return join(" AND ", $where);
- }
-
- // }}}
- // {{{ get_select_statement
- function get_select_statement()
- {
- $join = "";
- $and = '';
- $uniq = '';
- foreach ($this->strings as $i => $s) {
- if (!S::logged()) {
- $and = "AND FIND_IN_SET('public', sn$i.flags)";
- }
- $myu = str_replace('snv', "sn$i", $uniq);
- $join .= "INNER JOIN search_name AS sn$i ON (u.user_id = sn$i.pid $and$myu)\n";
- $uniq .= " AND sn$i.token != snv.token";
- }
- if (!empty($this->email)) {
- $join .= "LEFT JOIN emails AS ems ON (ems.uid = u.user_id)";
- }
- if (!empty($this->ip)) {
- $join .= "INNER JOIN log_sessions AS ls ON (ls.uid = u.user_id)\n";
- }
- if (!empty($this->phone)) {
- if (!S::logged()) {
- $join .= "INNER JOIN profile_phones AS t ON (t.pid = u.user_id AND t.pub = 'public')";
- } else {
- $join .= "INNER JOIN profile_phones AS t ON (t.pid = u.user_id)";
- }
- }
- return $join;
- }
- // }}}
- // {{{ function get_order_statement()
-
- function get_order_statement()
- {
- return false;
- }
-
- // }}}
- // {{{ function get_score_statement
-
- function get_score_statement()
- {
- $sum = array('0');
- foreach ($this->strings as $i => $s) {
- $sum[] .= "SUM(sn$i.score + IF('$s'=sn$i.token,5,0))";
- }
- return join('+', $sum).' AS score';
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class NumericSField [Integer fields]
-
-/** classe de champ numérique entier (offset par exemple)
- */
-class NumericSField extends SField
-{
- // {{{ constructor
-
- /** constructeur
- * (récupère la requête de l'utilisateur pour ce champ) */
- function NumericSField($_fieldFormName)
- {
- $this->fieldFormName = $_fieldFormName;
- $this->get_request();
- }
-
- // }}}
- // {{{ function get_request()
-
- /** récupère la requête de l'utilisateur et échoue s'il ne s'agit pas d'un entier */
- function get_request()
- {
- parent::get_request();
- if (empty($this->value)) {
- $this->value = 0;
- }
- if (!preg_match("/^[0-9]+$/", $this->value)) {
- new ThrowError('Un champ numérique contient des caractères alphanumériques.');
- }
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class RefSField [ ??? ]
-
-class RefSField extends SField
-{
- // {{{ properties
-
- var $refTable;
- var $refAlias;
- var $refCondition;
- var $exact = true;
-
- // }}}
- // {{{ constructor
-
- function RefSField($_fieldFormName, $_fieldDbName='', $_refTable, $_refAlias, $_refCondition, $_exact=true)
- {
- $this->fieldFormName = $_fieldFormName;
- $this->fieldDbName = $_fieldDbName;
- $this->refTable = $_refTable;
- $this->refAlias = $_refAlias;
- $this->refCondition = $_refCondition;
- $this->exact = $_exact;
- $this->get_request();
- }
-
- // }}}
- // {{{ function get_request()
-
- function get_request() {
- parent::get_request();
- if ($this->value=='00' || $this->value=='0') {
- $this->value='';
- }
- }
-
- // }}}
- // {{{ function too_large()
-
- function too_large()
- {
- return ($this->value == '');
- }
-
- // }}}
- // {{{ function compare()
-
- function compare()
- {
- $val = addslashes($this->value);
- if (Env::i('exact')) return "='$val'";
- return $this->exact ? "='$val'" : " LIKE '%$val%'";
- }
-
- // }}}
- // {{{ function get_single_match_statement()
-
- function get_single_match_statement($field)
- {
- return $field.$this->compare();
- }
-
- // }}}
- // {{{ function get_single_where_statement()
-
- function get_single_where_statement($field)
- {
- return $this->refTable=='' ? $this->get_single_match_statement($field) : false;
- }
-
- // }}}
- // {{{ function get_select_statement()
-
- function get_select_statement()
- {
- if ($this->value=='' || $this->refTable=='') {
- return false;
- }
- $res = implode(' OR ', array_filter(array_map(array($this, 'get_single_match_statement'), $this->fieldDbName)));
- if (is_array($this->refTable)) {
- foreach ($this->refTable as $i => $refT)
- $last = $i;
- $inner = "";
- foreach ($this->refTable as $i => $refT)
- $inner .= " INNER JOIN {$refT} AS {$this->refAlias[$i]} ON ({$this->refCondition[$i]} ".(($i == $last)?"AND ($res) ":"").")\n";
- return $inner;
- } else {
- return "INNER JOIN {$this->refTable} AS {$this->refAlias} ON ({$this->refCondition} AND ($res) )";
- }
- }
-
- // }}}
-}
-
-// }}}
-
-// {{{ class RefSFieldMultipleTable
-class PhoneSField extends RefSField
-{
- function PhoneSField($_fieldFormName, $_fieldDbName='', $_refTable, $_refAlias, $_refCondition)
- {
- $this->RefSField($_fieldFormName, $_fieldDbName, $_refTable, $_refAlias, $_refCondition, true);
- }
-
- function get_request()
- {
- require_once("profil.func.inc.php");
- $this->value = trim(Env::v($this->fieldFormName));
- $this->value = format_phone_number($this->value);
- }
-
- function compare()
- {
- return " LIKE '" . addslashes($this->value) . "%'";
- }
-}
-
-class IndexSField extends RefSField
-{
- function IndexSField($_fieldFormName, $_fieldDbName='', $_refTable, $_refAlias, $_refCondition)
- {
- $this->RefSField($_fieldFormName, $_fieldDbName, $_refTable, $_refAlias, $_refCondition, true);
- }
-
- function get_request()
- {
- $this->value = trim(Env::v($this->fieldFormName));
- }
-}
-
-class MapSField extends RefSField
-{
- var $mapId;
-
- function MapSField($_fieldFormName, $_fieldDbName='', $_refTable, $_refAlias, $_refCondition, $_mapId=false)
- {
- if ($_mapId === false)
- $this->mapId = Env::v($_fieldFormName, '');
- else
- $this->mapId = $_mapId;
- $this->value = $this->mapId;
- $this->RefSField($_fieldFormName, $_fieldDbName, $_refTable, $_refAlias, $_refCondition, true, false);
- }
-
- function get_select_statement()
- {
- if ($this->mapId === '') return false;
- $res = implode(' OR ', array_filter(array_map(array($this, 'get_single_match_statement'), $this->fieldDbName)));
- foreach ($this->refTable as $i => $refT)
- $last = $i;
- $inner = "";
- foreach ($this->refTable as $i => $refT)
- $inner .= " INNER JOIN {$refT} AS {$this->refAlias[$i]} ON ({$this->refCondition[$i]} ".(($i == $last)?"AND ($res) ":"").")";
- return $inner;
- }
- function get_request()
- {
- $this->value = $this->mapId;
- }
-}
-
-// {{{ class RefWithSoundexSField [ ??? ]
-
-class RefWithSoundexSField extends RefSField
-{
- // {{{ function compare()
-
- function compare()
- {
- return "='".soundex_fr($this->value)."'";
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class StringSField [String fields]
-
-/** classe de champ texte (nom par exemple)
- */
-class StringSField extends SField
-{
- // {{{ function get_request()
-
- /** récupère la requête de l'utilisateur et échoue si la chaîne contient des caractères
- * interdits */
- function get_request()
- {
- parent::get_request();
- if (preg_match(":[\]\[<>{}~/§_`|%$^=+]|\*\*:u", $this->value)) {
- new ThrowError('Un champ contient un caractère interdit rendant la recherche impossible.');
- }
- }
-
- // }}}
- // {{{ function length()
-
- /** donne la longueur de la requête de l'utilisateur
- * (au sens strict i.e. pas d'* ni d'espace ou de trait d'union -> les contraintes réellement
- * imposées par l'utilisateur) */
- function length()
- {
- $cleaned = strtolower(replace_accent($this->value));
- $length = strlen(ereg_replace('[a-z0-9]', '', $cleaned));
- return strlen($this->value) - $length;
- }
-
- // }}}
- // {{{ function too_large()
-
- function too_large()
- {
- return ($this->length() < 2);
- }
-
- // }}}
- // {{{ function get_single_where_statement()
-
- /** clause WHERE correspondant à un champ de la bdd et à ce champ de formulaire
- * @param field nom de champ de la bdd concerné par la clause */
- function get_single_where_statement($field)
- {
- $val = addslashes($this->value);
- if (Env::i('exact')) return "$field = '$val'";
- $regexp = strtr($val, '-*', '_%');
- return "$field LIKE '$regexp%'";
- }
-
- // }}}
- // {{{ function get_order_statement()
-
- /** clause ORDER BY correspondant à ce champ de formulaire */
- function get_order_statement()
- {
- if ($this->value!='' && $this->fieldResultName!='') {
- return "{$this->fieldResultName}!='".addslashes($this->value)."'";
- } else {
- return false;
- }
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class NameSField [Names : serach 'n%' + '% b']
-
-/** classe pour les noms : on cherche en plus du like 'foo%' le like '% foo' (particules)
-+*/
-class NameSField extends StringSField
-{
- // {{{ function get_single_where_statement()
-
- function get_single_where_statement($field)
- {
- $val = addslashes($this->value);
- if (Env::i('exact')) return "$field = '$val'";
- $regexp = strtr($val, '-*', '_%');
- return "$field LIKE '$regexp%' OR $field LIKE '% $regexp%' OR $field LIKE '%-$regexp%'";
- }
-
- // }}}
- // {{{ function get_order_statement()
-
- function get_order_statement()
- {
- if ($this->value!='' && $this->fieldResultName!='') {
- return "{$this->fieldResultName} NOT LIKE '".addslashes($this->value)."'";
- } else {
- return false;
- }
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class StringWithSoundexSField [Strings + soundex]
-
-/** classe de champ texte avec soundex (nom par exemple)
- */
-class StringWithSoundexSField extends StringSField
-{
- // {{{ function get_single_where_statement()
-
- /** clause WHERE correspondant à un champ de la bdd et à ce champ de formulaire
- * @param field nom de champ de la bdd concerné par la clause */
- function get_single_where_statement($field) {
- return $field.'="'.soundex_fr($this->value).'"';
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class PromoSField [Prom field]
-
-/** classe de champ de promotion */
-class PromoSField extends SField
-{
- // {{{ properties
-
- /** opérateur de comparaison (<,>,=) de la promo utilisé pour ce champ de formulaire */
- var $compareField;
-
- // }}}
- // {{{ constructor
-
- /** constructeur
- * compareField est un champ de formulaire très simple qui ne sert qu'à la construction de la
- * clause WHERE de la promo */
- function PromoSField($_fieldFormName, $_compareFieldFormName, $_fieldDbName, $_fieldResultName)
- {
- parent::SField($_fieldFormName, $_fieldDbName, $_fieldResultName);
- $this->compareField = new SField($_compareFieldFormName);
- }
-
- // }}}
- // {{{ function get_request()
-
- /** récupère la requête utilisateur et échoue si le champ du formulaire ne représente pas une
- * promotion (nombre à 4 chiffres) */
- function get_request()
- {
- parent::get_request();
- if (preg_match('/^[0-9]{2}$/', $this->value)){
- $this->value = intval($this->value) + 1900;
- }
- if (!(empty($this->value) or preg_match('/^[0-9]{4}$/', $this->value))) {
- new ThrowError('La promotion est une année à quatre chiffres.');
- }
- }
-
- // }}}
- // {{{ function is_a_single_promo()
-
- /** teste si la requête est de la forme =promotion -> contrainte forte imposée -> elle suffit
- * pour autoriser un affichage des résultats alors que <promotion est insuffisant */
- function is_a_single_promo()
- {
- return ($this->compareField->value=='=' && $this->value!='');
- }
-
- // }}}
- // {{{ function too_large()
-
- function too_large()
- {
- return !$this->is_a_single_promo();
- }
-
- // }}}
- // {{{ function get_single_where_statement()
-
- /** clause WHERE correspondant à ce champ */
- function get_single_where_statement($field)
- {
- return $field.$this->compareField->value.$this->value;
- }
-
- // }}}
- // {{{ function get_url()
-
- /** récupérer le bout d'URL correspondant aux paramètres permettant d'imiter une requête
- * d'un utilisateur assignant la valeur $this->value à ce champ et assignant l'opérateur de
- * comparaison adéquat */
- function get_url()
- {
- if (!($u=parent::get_url())) {
- return false;
- }
- return $u.'&'.$this->compareField->get_url();
- }
-
- // }}}
-}
-
-// }}}
-// {{{ class SFieldGroup [Group fields]
-
-/** classe groupant des champs de formulaire de recherche */
-class SFieldGroup
-{
- // {{{ properties
-
- /** tableau des classes correspondant aux champs groupés */
- var $fields;
- /** type de groupe : ET ou OU */
- var $and;
-
- // }}}
- // {{{ constuctor
-
- /** constructeur */
- function SFieldGroup($_and, $_fields)
- {
- $this->fields = $_fields;
- $this->and = $_and;
-
- $cleanFields = array();
- foreach ($this->fields as $field) {
- if (!is_null($field)) {
- $cleanFields[] = $field;
- }
- }
- $this->fields = $cleanFields;
- }
-
- // }}}
- // {{{ function too_large()
-
- function too_large()
- {
- $b = true;
- for ($i = 0; $b && $i < count($this->fields); ++$i) {
- if (!is_null($this->fields[$i])) {
- $b = $b && $this->fields[$i]->too_large();
- }
- }
- return $b;
- }
-
- // }}}
- // {{{ function field_get_select()
-
- function field_get_select($f)
- {
- return $f->get_select_statement();
- }
-
- // }}}
- // {{{ function field_get_where()
-
- /** récupérer la clause WHERE d'un objet champ de recherche */
- function field_get_where($f)
- {
- return $f->get_where_statement();
- }
-
- // }}}
- // {{{ function field_get_order()
-
- /** récupérer la clause ORDER BY d'un objet champ de recherche */
- function field_get_order($f)
- {
- return $f->get_order_statement();
- }
-
- // }}}
- // {{{ function field_get_url()
-
- /** récupérer le bout d'URL correspondant à un objet champ de recherche */
- function field_get_url($f)
- {
- return $f->get_url();
- }
-
- // }}}
- // {{{ function get_select_statement()
-
- function get_select_statement()
- {
- return implode(' ', array_filter(array_map(array($this, 'field_get_select'), $this->fields)));
- }
-
- // }}}
- // {{{ function get_where_statement()
-
- /** récupérer la clause WHERE du groupe de champs = conjonction (ET) ou disjonction (OU) de
- * clauses des champs élémentaires */
- function get_where_statement()
- {
- $joinText = $this->and ? ' AND ' : ' OR ';
- $res = implode($joinText, array_filter(array_map(array($this, 'field_get_where'), $this->fields)));
- return $res == '' ? '' : "($res)";
- }
-
- // }}}
- // {{{ function get_order_statement()
-
- /** récupérer la clause ORDER BY du groupe de champs = conjonction (ET) ou disjonction (OU) de
- * clauses des champs élémentaires */
- function get_order_statement()
- {
- $order = array_filter(array_map(array($this, 'field_get_order'), $this->fields));
- return count($order)>0 ? implode(',', $order) : false;
- }
-
- // }}}
- // {{{ function get_url()
-
- /** récupérer le bout d'URL correspondant à ce groupe de champs = concaténation des bouts d'URL
- * des champs élémentaires */
- function get_url($others=Array())
- {
- $url = array_filter(array_map(array($this, 'field_get_url'), $this->fields));
- foreach ($url as $key=>$val) {
- if (empty($val)) {
- unset($url[$key]);
- }
- }
- foreach ($others as $key=>$val) {
- if (!empty($val)) {
- $url[] = "$key=$val";
- }
- }
- return count($url)>0 ? implode('&', $url) : false;
- }
-
- // }}}
-}
-
-// }}}
-
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
-?>
+++ /dev/null
-<?php
-/***************************************************************************
- * Copyright (C) 2003-2010 Polytechnique.org *
- * http://opensource.polytechnique.org/ *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the Free Software *
- * Foundation, Inc., *
- * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
- ***************************************************************************/
-
-require_once dirname(__FILE__) . '/classes.inc.php';
-
-// {{{ function advancedSearchFromInput
-function getAddressJoin($table) {
- return 'u.user_id = ' . $table . '.pid' . (Env::v('only_current', false) ? ' AND FIND_IN_SET(\'current\', ' . $table . '.flags)' : '');
-}
-function advancedSearchFromInput()
-{
- if ($with_soundex = Env::has('with_soundex')) {
- $nameField = new RefWithSoundexSField('name', array('n.soundex'), 'search_name',
- 'n', 'u.user_id = n.pid');
- } else {
- $nameField = new NameSField('name', array('n.token'), 'search_name', 'n', 'u.user_id = n.pid');
- }
-
- $promo1Field = new PromoSField('promo1', 'egal1', array('u.promo'), '');
- $promo2Field = new PromoSField('promo2', 'egal2', array('u.promo'), '');
- $womanField = new RefSField('woman', array('FIND_IN_SET(\'femme\', u.flags) + 1'), '', '', '');
- $subscriberField = new RefSField('subscriber', array('!(u.perms IN (\'admin\', \'user\')) + 1'), '', '', '');
- $aliveField = new RefSField('alive', array('(u.deces != 0) + 1'), '', '', '');
- if (Env::v('only_referent') == 'on') {
- $referentField = new RefSField('only_referent', array('"on"'), 'mentor', 'mt', 'mt.expertise != "" AND mt.uid = u.user_id');
- } else {
- $referentField = null;
- }
-
- $townField = new RefSField('city', array('av.localityId', 'av.postalCode'), 'profile_addresses',
- 'av', getAddressJoin('av'));
- $countryField = new RefSField('country', array('ap.countryId'), 'profile_addresses', 'ap', getAddressJoin('ap'));
- $regionField = new RefSField('region',array('ar.administrativeAreaId'), 'profile_addresses', 'ar', getAddressJoin('ar'));
-
- $entrepriseField = new RefSField('entreprise', array('je.name'), '', '','');
- $posteField = new RefSField('poste', array('ep.description'), 'profile_job', 'ep', 'u.user_id = ep.pid', false);
- $fonctionField = new RefSField('fonction', array('en.fonction_fr'), 'fonctions_def', 'en',
- 'u.user_id = profile_job.pid AND fonctions_def.id = profile_job.functionid');
- $secteurField = new RefSField('secteur', array('fm.sectorid'), 'profile_job', 'fm', 'u.user_id = fm.pid');
- $cvField = new RefSField('cv', array('u.cv'), '', '', '', false);
-
- $natField = new RefSField('nationalite', array('u.nationalite', 'u.nationalite2', 'u.nationalite3'), '', '', '');
- $binetField = new RefSField('binet', array('b.binet_id'), 'profile_binets', 'b', 'u.user_id=b.user_id');
- $groupexField = new RefSField('groupex', array('g.id'), array('groups', 'group_members'), array('g', 'gm'),
- array("(g.cat = 'GroupesX' OR g.cat = 'Institutions') AND g.pub = 'public'",
- 'gm.asso_id = g.id AND u.user_id = gm.uid'));
- $sectionField = new RefSField('section', array('u.section'), '', '', '');
- $schoolField = new RefSField('school', array('edu.eduid'), 'profile_education', 'edu', 'u.user_id = edu.uid');
- $diplomaField = new RefSField('diploma', array('edd.degreeid'), 'profile_education', 'edd', 'u.user_id = edd.uid');
-
- $freeField = new RefSField('free', array('q.profile_freetext'), '', '', '', false);
-
- $nwAddressField = new RefSField('networking_address', array('nw.address'), 'profile_networking', 'nw', 'nw.pid=u.user_id', false);
- if (Env::v('networking_address') == '') {
- $nwTypeField = new IndexSField('networking_type', array('nwe.network_type'), array('profile_networking', 'profile_networking_enum'),
- array('nw', 'nwe'), array('nw.uid = u.user_id', 'nwe.network_type = nw.network_type'));
- } else {
- $nwTypeField = new IndexSField('networking_type',
- array('nwe.network_type'), 'profile_networking_enum', 'nwe', 'nwe.network_type = nw.network_type');
- }
- $nwPhoneField = new PhoneSField('phone_number', array('t.search_tel'), 'profile_phones', 't', 't.pid = u.user_id');
- return array(
- $nameField, $promo1Field,
- $promo2Field, $womanField, $subscriberField, $aliveField,
- $townField, $countryField, $regionField, $entrepriseField,
- $posteField, $secteurField, $cvField, $natField, $binetField,
- $groupexField, $sectionField, $schoolField, $diplomaField,
- $freeField, $fonctionField, $nwAddressField, $nwTypeField,
- $nwPhoneField, $referentField);
-}
-
-// }}}
-
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
-?>