Moving to GitHub.
[platal.git] / include / userset.inc.php
index 9d8d7df..67d8aab 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   *
@@ -327,8 +327,13 @@ class ListMemberView extends MixedView
 
 class TrombiView extends MixedView
 {
+    private $full_count;
+
     public function __construct(PlSet $set, array $params)
     {
+        $set->getIds();
+        $this->full_count = $set->count();
+
         $this->entriesPerPage = 24;
         $this->defaultkey = 'name';
         if (@$params['with_score']) {
@@ -359,6 +364,7 @@ class TrombiView extends MixedView
             global $globals;
             $page->assign('mainsiteurl', 'https://' . $globals->core->secure_domain . '/');
         }
+        $page->assign('full_count', $this->full_count);
         return parent::apply($page);
     }
 }
@@ -377,12 +383,12 @@ class MapView implements PlView
         Platal::load('geoloc');
 
         if (Get::b('ajax')) {
-            $pids = $this->set->getIds(new PlLimit());
+            $uids = $this->set->getIds(new PlLimit());
+            $pids = Profile::getPIDsFromUIDs($uids);
             GeolocModule::assign_json_to_map($page, $pids);
             $page->runJSON();
             exit;
         } else {
-            $this->set->getIds(new PlLimit());
             GeolocModule::prepare_map($page);
             return 'geoloc/index.tpl';
         }
@@ -421,33 +427,73 @@ class AddressesView implements PlView
         $this->set =& $set;
     }
 
+    /* Convert a single address field into 3 lines.
+     */
+    public static function split_address($address)
+    {
+        $lines = preg_split("/(\r|\n)+/", $address, -1, PREG_SPLIT_NO_EMPTY);
+        $nb_lines = count($lines);
+        switch ($nb_lines) {
+        case 0:
+            // No data => nothing
+            return array("", "", "");
+        case 1:
+            // Single line => Assume it's city+zipcode
+            $line = $lines[0];
+            return array("", "", $line);
+        case 2:
+            // Two lines => Assume it's street \n city
+            $line1 = $lines[0];
+            $line3 = $lines[1];
+            return array($line1, "", $line3);
+        case 3:
+            return $lines;
+        default:
+            // More than 3 lines => Keep 2 last intact, merge other lines.
+            $line3 = array_pop($lines);
+            $line2 = array_pop($lines);
+            $line1 = implode(" ", $lines);
+            return array($line1, $line2, $line3);
+        }
+    }
+
     public function apply(PlPage $page)
     {
-        $pids = $this->set->getIds(new PlLimit());
+        if ($this->set instanceof UserSet) {
+            $uids = $this->set->getIds(new PlLimit());
+            $pids = Profile::getPIDsFromUIDs($uids);
+        } else {
+            $pids = $this->set->getIds(new PlLimit());
+        }
         $visibility = Visibility::defaultForRead(Visibility::VIEW_AX);
         pl_cached_content_headers('text/x-csv', 'iso-8859-1', 1, 'adresses.csv');
 
         $csv = fopen('php://output', 'w');
-        fputcsv($csv,  array('PROMOTION', 'CIVILITE', 'NOM', 'PRENOM', 'SOCIETE', 'ADRESSE', 'CP', 'EMAIL'), ';');
+        fputcsv($csv,
+            array('AX_ID', 'PROMOTION', 'CIVILITE', 'NOM', 'PRENOM', 'SOCIETE', 'ADRESSE', 'ADRESSE1', 'ADRESSE2', 'ADRESSE3', 'CP', 'EMAIL', 'NHABITE_PLUS_A_LADRESSE'),
+            ';');
+
         if (!empty($pids)) {
-            $res = XDB::query("SELECT  pd.promo, p.title,
+            $res = XDB::query("SELECT  p.ax_id, pd.promo, p.title,
                                        IF (pn.firstname_ordinary = '', UPPER(pn.firstname_main), UPPER(pn.firstname_ordinary)) AS firstname,
                                        IF (pn.lastname_ordinary = '', UPPER(pn.lastname_main), UPPER(pn.lastname_ordinary)) AS lastname,
-                                       UPPER(pje.name), pa.postalText, pa.postal_code_fr AS postal_code, p.email_directory
-                                 FROM  (SELECT  pid, postalText, jobid, groupid, type, id, postal_code_fr
-                                          FROM  profile_addresses
-                                         WHERE  pub IN ('public', 'ax') AND FIND_IN_SET('mail', flags) AND pid IN {?}
-                                      ORDER BY  pid, NOT FIND_IN_SET('current', flags),
-                                                FIND_IN_SET('secondary', flags), type = 'job') AS pa
-                           INNER JOIN  profiles                          AS p    ON (pa.pid = p.pid)
-                           INNER JOIN  profile_display                   AS pd   ON (pd.pid = pa.pid)
-                           INNER JOIN  profile_public_names              AS pn   ON (pn.pid = pa.pid)
-                            LEFT JOIN  profile_job                       AS pj   ON (pj.pid = pa.pid
-                                                                                     AND pj.id = IF(pa.type = 'job', pa.id, NULL))
-                            LEFT JOIN  profile_job_enum                  AS pje  ON (pj.jobid = pje.id)
-                             GROUP BY  pa.pid", $pids);
-            foreach ($res->fetchAllAssoc() as $item) {
-                fputcsv($csv, array_map('utf8_decode', $item), ';');
+                                       UPPER(pje.name), pa.postalText, pa.postal_code_fr AS postal_code, p.email_directory,
+                                       IF (FIND_IN_SET('deliveryIssue', pa.flags), 'oui', '') AS delivery_issue
+                                 FROM  profile_addresses    AS pa
+                           INNER JOIN  profiles             AS p    ON (pa.pid = p.pid)
+                           INNER JOIN  profile_display      AS pd   ON (pd.pid = pa.pid)
+                           INNER JOIN  profile_public_names AS pn   ON (pn.pid = pa.pid)
+                            LEFT JOIN  profile_job          AS pj   ON (pj.pid = pa.pid
+                                                                        AND pj.id = IF(pa.type = 'job', pa.id, NULL))
+                            LEFT JOIN  profile_job_enum     AS pje  ON (pj.jobid = pje.id)
+                                WHERE  pa.pid IN {?} AND FIND_IN_SET('dn_best_mail', pa.flags)", $pids);
+            foreach ($res->fetchAllRow() as $item) {
+                list($axid, $promo, $title, $lastname, $firstname, $company, $full_address, $zipcode, $email, $delivery_issue) = array_map('utf8_decode', $item);
+                $lines = self::split_address($full_address);
+                fputcsv($csv, array(
+                    $axid, $promo, $title, $lastname, $firstname, $company,
+                    $full_address, $lines[0], $lines[1], $lines[2], $zipcode,
+                    $email, $delivery_issue), ';');
             }
         }
         fclose($csv);
@@ -490,5 +536,5 @@ class JSonView implements PlView
     }
 }
 
-// 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:
 ?>