Moving to GitHub.
[platal.git] / modules / search.php
index 9d7301a..e3bfee7 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2011 Polytechnique.org                              *
+ *  Copyright (C) 2003-2014 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -30,10 +30,10 @@ class SearchModule extends PLModule
             'search/autocomplete'       => $this->make_hook('autocomplete',       AUTH_COOKIE, 'directory_ax', NO_AUTH),
             'search/list'               => $this->make_hook('list',               AUTH_COOKIE, 'directory_ax', NO_AUTH),
             'search/list/count'         => $this->make_hook('list_count',         AUTH_COOKIE, 'directory_ax', NO_AUTH),
-            'jobs'                      => $this->make_hook('referent',           AUTH_COOKIE),
-            'emploi'                    => $this->make_hook('referent',           AUTH_COOKIE),
-            'referent/search'           => $this->make_hook('referent',           AUTH_COOKIE),
-            'search/referent/countries' => $this->make_hook('referent_countries', AUTH_COOKIE),
+            'jobs'                      => $this->make_hook('referent',           AUTH_COOKIE, 'user'),
+            'emploi'                    => $this->make_hook('referent',           AUTH_COOKIE, 'user'),
+            'referent/search'           => $this->make_hook('referent',           AUTH_COOKIE, 'user'),
+            'search/referent/countries' => $this->make_hook('referent_countries', AUTH_COOKIE, 'user'),
         );
     }
 
@@ -121,10 +121,9 @@ class SearchModule extends PLModule
             require_once 'userset.inc.php';
             $view = new QuickSearchSet();
             $view->addMod('minifiche', 'Mini-fiches', true, array('with_score' => true, 'starts_with' => $byletter));
+            $view->addMod('map', 'Planisphère');
             if (S::logged() && !Env::i('nonins')) {
                 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true, 'with_score' => true));
-                // TODO: Reactivate when the new map is completed.
-                // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
             }
             $view->apply('search', $page, $model);
 
@@ -150,6 +149,8 @@ class SearchModule extends PLModule
     function handler_advanced($page, $model = null, $byletter = null)
     {
         global $globals;
+        $page->addJsLink('jquery.ui.xorg.js');
+        $page->addJsLink('search.js');
         $page->assign('advanced',1);
 
         $networks = DirEnum::getOptions(DirEnum::NETWORKS);
@@ -157,8 +158,8 @@ class SearchModule extends PLModule
         $networks[0] = '-';
         ksort($networks);
         $page->assign('networking_types', $networks);
-        $origin_corps_list = DirEnum::getOptions(DirEnum::CURRENTCORPS);
-        $current_corps_list = DirEnum::getOptions(DirEnum::ORIGINCORPS);
+        $origin_corps_list = DirEnum::getOptions(DirEnum::ORIGINCORPS);
+        $current_corps_list = DirEnum::getOptions(DirEnum::CURRENTCORPS);
         $corps_rank_list = DirEnum::getOptions(DirEnum::CORPSRANKS);
         $origin_corps_list[0] = '-';
         $current_corps_list[0] = '-';
@@ -188,8 +189,7 @@ class SearchModule extends PLModule
             } else {
                 $view->addMod('minifiche', 'Mini-fiches', true, array('starts_with' => $byletter));
                 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
-                // TODO: Reactivate when the new map is completed.
-                // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
+                $view->addMod('map', 'Planisphère');
                 if (S::user()->checkPerms(User::PERM_EDIT_DIRECTORY) || S::admin()) {
                     $view->addMod('addresses', 'Adresses postales', false);
                 }
@@ -213,7 +213,12 @@ class SearchModule extends PLModule
         $page->assign('public_directory',0);
     }
 
-    function handler_autocomplete($page, $type = null)
+    static public function format_autocomplete(array $item)
+    {
+        return $item['field'] . ' (' . $item['nb'] . ' camarade' . ($item['nb'] > 1 ? 's' : '') . ')';
+    }
+
+    function handler_autocomplete($page, $type = null, $sub_id = null)
     {
         // Autocompletion : according to type required, return
         // a list of results matching with the number of matches.
@@ -228,66 +233,93 @@ class SearchModule extends PLModule
                            array('',
                                  '\\\\\1',
                                  '.*'),
-                           Env::s('q'));
-        if (!$q) exit();
-
-        // try to look in cached results
-        $cache = XDB::query('SELECT  result
-                               FROM  search_autocomplete
-                              WHERE  name = {?} AND
-                                     query = {?} AND
-                                     generated > NOW() - INTERVAL 1 DAY',
-                             $type, $q);
-        if ($res = $cache->fetchOneCell()) {
-            echo $res;
-            die();
-        }
-
-        $enums = array(
-            'binetTxt'           => DirEnum::BINETS,
-            'groupexTxt'         => DirEnum::GROUPESX,
-            'sectionTxt'         => DirEnum::SECTIONS,
-            'networking_typeTxt' => DirEnum::NETWORKS,
-            'localityTxt'        => DirEnum::LOCALITIES,
-            'countryTxt'         => DirEnum::COUNTRIES,
-            'entreprise'         => DirEnum::COMPANIES,
-            'jobtermTxt'         => DirEnum::JOBTERMS,
-            'description'        => DirEnum::JOBDESCRIPTION,
-            'nationaliteTxt'     => DirEnum::NATIONALITIES,
-            'schoolTxt'          => DirEnum::EDUSCHOOLS,
-        );
-        if (!array_key_exists($type, $enums)) {
+                           Get::t('term'));
+        if (!$q) {
             exit();
         }
+        if (!is_null($sub_id)) {
+            $query = $q . "\t" . $sub_id;
+        } else {
+            $query = $q;
+        }
 
-        $enum = $enums[$type];
+        // Try to look in cached results.
+        $cached = false;
+        $cache = XDB::query('SELECT  result
+                               FROM  search_autocomplete
+                              WHERE  name = {?} AND query = {?} AND generated > NOW() - INTERVAL 1 DAY',
+                             $type, $query);
+
+        if ($cache->numRows() > 0) {
+            $cached = true;
+            $data = explode("\n", $cache->fetchOneCell());
+            $list = array();
+            foreach ($data as $line) {
+                if ($line != '') {
+                    $aux = explode("\t", $line);
+                    $item = array(
+                        'field' => $aux[0],
+                        'nb'    => $aux[1],
+                        'id'    => $aux[2]
+                    );
+                    $item['value'] = self::format_autocomplete($item);
+                    array_push($list, $item);
+                }
+            }
+        } else {
+            $enums = array(
+                'binet_text'           => DirEnum::BINETS,
+                'groupex_text'         => DirEnum::GROUPESX,
+                'section_text'         => DirEnum::SECTIONS,
+                'networking_type_text' => DirEnum::NETWORKS,
+                'locality_text'        => DirEnum::LOCALITIES,
+                'country_text'         => DirEnum::COUNTRIES,
+                'entreprise'           => DirEnum::COMPANIES,
+                'jobterm_text'         => DirEnum::JOBTERMS,
+                'description'          => DirEnum::JOBDESCRIPTION,
+                'nationalite_text'     => DirEnum::NATIONALITIES,
+                'school_text'          => DirEnum::EDUSCHOOLS,
+            );
+            if (!array_key_exists($type, $enums)) {
+                exit();
+            }
 
-        $list = DirEnum::getAutoComplete($enum, $q);
-        $nbResults = 0;
-        $res = "";
-        while ($result = $list->next()) {
-            $nbResults++;
-            if ($nbResults == 11) {
-                $res .= $q."|-1\n";
+            if (is_null($sub_id)) {
+                $list = DirEnum::getAutoComplete($enums[$type], $q);
             } else {
-                $res .= $result['field'].'|';
-                if (isset($result['nb'])) {
-                    $res .= $result['nb'];
-                }
-                if (isset($result['id'])) {
-                    $res  .= '|'.$result['id'];
-                }
-                $res .= "\n";
+                $list = DirEnum::getAutoComplete($enums[$type], $q, $sub_id);
+            }
+            $to_cache = '';
+            foreach ($list as &$item) {
+                $to_cache .= $item['field'] . "\t" . $item['nb'] . "\t" . $item['id'] . "\n";
+                $item['value'] = self::format_autocomplete($item);
             }
         }
-        if ($nbResults == 0) {
-            $res = $q."|-2\n";
+
+        $count = count($list);
+        if ($count == DirEnumeration::AUTOCOMPLETE_LIMIT) {
+            $list[] = array(
+                'value' => '…',
+                'field' => '',
+                'nb'    => 0,
+                'id'    => -1
+            );
+        } elseif ($count == 0) {
+            $list[] = array(
+                'value' => 'Aucun camarade trouvé pour ' . $q . '.',
+                'field' => '',
+                'nb'    => 0,
+                'id'    => -1
+            );
+        }
+
+        if (!$cached) {
+            XDB::query('INSERT INTO  search_autocomplete (name, query, result, generated)
+                             VALUES  ({?}, {?}, {?}, NOW())
+            ON DUPLICATE KEY UPDATE  result = VALUES(result), generated = VALUES(generated)',
+                       $type, $query, $to_cache);
         }
-        XDB::query('INSERT INTO  search_autocomplete (name, query, result, generated)
-                         VALUES  ({?}, {?}, {?}, NOW())
-        ON DUPLICATE KEY UPDATE  result = VALUES(result), generated = VALUES(generated)',
-                   $type, $q, $res);
-        echo $res;
+        echo json_encode($list);
         exit();
     }
 
@@ -313,17 +345,16 @@ class SearchModule extends PLModule
             break;
           case 'administrative_area_level_1':
           case 'administrative_area_level_2':
-          case 'administrative_area_level_3':
           case 'locality':
             $page->assign('onchange', 'changeAddressComponents(\'' . $type . '\', this.value)');
-          case 'sublocality':
+          case 'postal_code':
             $ids = XDB::iterator("SELECT  pace1.id, pace1.long_name AS field
                                     FROM  profile_addresses_components_enum AS pace1
                               INNER JOIN  profile_addresses_components      AS pac1  ON (pac1.component_id = pace1.id)
                               INNER JOIN  profile_addresses_components      AS pac2  ON (pac1.pid = pac2.pid AND pac1.jobid = pac2.jobid AND pac1.id = pac2.id
                                                                                          AND pac1.groupid = pac2.groupid AND pac1.type = pac2.type)
                               INNER JOIN  profile_addresses_components_enum AS pace2 ON (pac2.component_id = pace2.id AND FIND_IN_SET({?}, pace2.types))
-                                   WHERE  pace2.id = {?} AND FIND_IN_SET({?}, pace1.types)
+                                   WHERE  pace2.id = {?} AND FIND_IN_SET({?}, pace1.types) AND pac1.type = 'home'
                                 GROUP BY  pace1.long_name",
                                  Env::v('previous'), Env::v('value'), $type);
             break;
@@ -383,6 +414,7 @@ class SearchModule extends PLModule
         $wp->buildCache();
 
         $page->setTitle('Emploi et Carrières');
+        $page->addJsLink('jquery.ui.xorg.js');
 
         // Count mentors
         $res = XDB::query("SELECT count(distinct pid) FROM profile_mentor_term");
@@ -392,6 +424,12 @@ class SearchModule extends PLModule
         require_once 'ufbuilder.inc.php';
         $ufb = new UFB_MentorSearch();
         if (!$ufb->isEmpty()) {
+
+            // Search query is logged
+            if (S::logged() && !Env::has('page')) {
+                S::logger()->log('search_referent', 'adv=' . var_export($_GET, true));
+            }
+
             require_once 'userset.inc.php';
             $ufc = $ufb->getUFC();
             $set = new ProfileSet($ufc);
@@ -433,5 +471,5 @@ class SearchModule extends PLModule
     }
 }
 
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
 ?>