add PAGE_NAME constant to every page under src/.
[squirrelmail.git] / src / addrbook_search.php
index d89d118b5f4043f2c6d6b76dd571b0472a526a7f..1b0869451f04b9d3162fb57bafb9022f8811aad9 100644 (file)
 <?php
-   /**
-    **  addrbook_search.php
-    **
-    **  Copyright (c) 1999-2000 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Handle addressbook searching in the popup window.
-    **
-    **  NOTE: A lot of this code is similar to the code in
-    **        addrbook_search_html.html -- If you change one,
-    **        change the other one too!
-    **/
-
-   // Function to include JavaScript code
-   function insert_javascript() {
-?>
-<SCRIPT LANGUAGE="Javascript"><!--
-
-function to_and_close($addr) {
-  to_address($addr);
-  parent.close();
+/**
+ * addrbook_search.php
+ *
+ * Handle addressbook searching in the popup window.
+ *
+ * NOTE: A lot of this code is similar to the code in
+ *       addrbook_search_html.html -- If you change one,
+ *       change the other one too!
+ *
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage addressbook
+ */
+
+/** This is the addrbook_search page */
+define('PAGE_NAME', 'addrbook_search');
+
+/**
+ * Include the SquirrelMail initialization file.
+ */
+require('../include/init.php');
+
+include_once(SM_PATH . 'functions/forms.php');
+include_once(SM_PATH . 'functions/addressbook.php');
+include_once(SM_PATH . 'templates/util_addressbook.php');
+
+/**
+ * List search results
+ * @param array $res Array of search results
+ * @param bool $includesource [Default=true]
+ * @return void
+ */
+function display_result($res, $includesource = true) {
+    global $oTemplate, $oErrorHandler;
+
+    if(sizeof($res) <= 0) return;
+
+    $oTemplate->assign('use_js', true);
+    $oTemplate->assign('include_abook_name', $includesource);
+    $oTemplate->assign('addresses', formatAddressList($res));
+    
+    $oTemplate->display('addrbook_search_list.tpl');    
 }
 
-function to_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
+/* ================= End of functions ================= */
 
-  $addr = $addr.replace(/ {1,35}$/, "");
+/** lets get the global vars we may need */
 
-  if(pwintype != "undefined" ) {
-    if ( parent.opener.document.compose.send_to.value ) {
-      prefix = ", ";
-      parent.opener.document.compose.send_to.value = 
-        parent.opener.document.compose.send_to.value + ", " + $addr;
-        
-    } else {
-      parent.opener.document.compose.send_to.value = $addr;
-    }
-  }
+if (! sqgetGlobalVar('show' , $show)) {
+    $show = '';
+}
+if (! sqgetGlobalVar('query', $query, SQ_POST)) {
+    $query = '';
+}
+if (! sqgetGlobalVar('listall', $listall, SQ_POST)) {
+    unset($listall);
+}
+if (! sqgetGlobalVar('backend', $backend, SQ_POST)) {
+    $backend = '';
 }
 
-function cc_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
+displayHtmlHeader();
+echo "<body>\n";
 
-  $addr = $addr.replace(/ {1,35}$/, "");
+/** set correct value of $default_charset */
+set_my_charset();
 
-  if(pwintype != "undefined" ) {
-    if ( parent.opener.document.compose.send_to_cc.value ) {
-      prefix = ", ";
-      parent.opener.document.compose.send_to_cc.value = 
-        parent.opener.document.compose.send_to_cc.value + ", " + $addr;      
-    } else {
-      parent.opener.document.compose.send_to_cc.value = $addr;
-    }
-  }
+/* Empty search */
+if (empty($query) && empty($show) && !isset($listall)) {
+    $oTemplate->assign('note', htmlspecialchars(_("No persons matching your search were found")));
+    $oTemplate->display('note.tpl');
+#    exit;
 }
 
-function bcc_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
-  
-  $addr = $addr.replace(/ {1,35}$/, "");
-
-  if(pwintype != "undefined" ) {
-    if ( parent.opener.document.compose.send_to_bcc.value ) {
-      prefix = ", ";
-      parent.opener.document.compose.send_to_bcc.value = 
-        parent.opener.document.compose.send_to_bcc.value + ", " + $addr;      
+/* Initialize addressbook, show init errors only in bottom frame */
+$showerr=($show=='form' ? false : true);
+$abook = addressbook_init($showerr);
+
+/* Create search form (top frame) */
+if ($show == 'form' && ! isset($listall)) {
+    echo "<form name=\"sform\" target=\"abookres\" action=\"addrbook_search.php\" method=\"POST\">\n";
+    
+    $oTemplate->assign('use_js', true);
+    $oTemplate->assign('backends', getBackends());
+    $oTemplate->display('addressbook_search_form.tpl');
+    
+    echo "</form>\n";
+} else {
+    /**
+     * List addresses (bottom frame)
+     * If listall is set, list all entries in selected backend.
+     * If $show is 'blank' (initial call of address book popup) - list
+     * personal address book.
+     */
+    if ($show == 'blank' || isset($listall)) {
+
+        if($backend != -1 || $show == 'blank') {
+            if ($show == 'blank') {
+                $backend = $abook->localbackend;
+            }
+            $res = $abook->list_addr($backend);
+
+            if(is_array($res)) {
+                usort($res,'alistcmp');
+                display_result($res, false);
+            } else {
+                plain_error_message(sprintf(_("Unable to list addresses from %s"), $abook->backends[$backend]->sname));
+            }
+        } else {
+            $res = $abook->list_addr();
+            usort($res,'alistcmp');
+            display_result($res, true);
+        }
+
+    } elseif (!empty($query)) {
+        /* Do the search (listall is not set. query is set.)*/
+
+        if($backend == -1) {
+            $res = $abook->s_search($query);
+        } else {
+            $res = $abook->s_search($query, $backend);
+        }
+
+        if (!is_array($res)) {
+            plain_error_message( _("Your search failed with the following error(s)") .':<br />'. nl2br(htmlspecialchars($abook->error)) );
+        } elseif (sizeof($res) == 0) {
+            $oTemplate->assign('note', _("No persons matching your search were found"));
+            $oTemplate->display('note.tpl');
+        } else {
+            display_result($res);
+        }
     } else {
-      parent.opener.document.compose.send_to_bcc.value = $addr;
+        /**
+         * listall is not set, query is not set or empty.
+         * User hit search button without entering search expression.
+         */
+        plain_error_message(_("Nothing to search"));
     }
-  }
 }
 
-// --></SCRIPT>
-
-<?php 
-   } // End of included JavaScript
-
-
-   // List search results
-   function display_result($res, $includesource = true) {
-      global $color;
-
-      if(sizeof($res) <= 0) return;
-
-      insert_javascript();
-
-      $line = 0;
-      print "<TABLE BORDER=0 WIDTH=\"98%\" ALIGN=center>";
-      printf("<TR BGCOLOR=\"$color[9]\"><TH ALIGN=left>&nbsp;".
-            "<TH ALIGN=left>&nbsp;%s<TH ALIGN=left>&nbsp;%s".
-            "<TH ALIGN=left>&nbsp;%s",
-            _("Name"), _("E-mail"), _("Info"));
-
-      if($includesource)
-        printf("<TH ALIGN=left WIDTH=\"10%%\">&nbsp;%s", _("Source"));
-
-      print "</TR>\n";
-      
-      while(list($key, $row) = each($res)) {
-        printf("<tr%s nowrap><td valign=top nowrap align=center width=\"5%%\">".
-               "<small><a href=\"javascript:to_address('%s');\">To</A> | ".
-               "<a href=\"javascript:cc_address('%s');\">Cc</A> | ".
-               "<a href=\"javascript:bcc_address('%s');\">Bcc</A></small>".
-               "<td nowrap valign=top>&nbsp;%s&nbsp;<td nowrap valign=top>".
-               "&nbsp;<a href=\"javascript:to_and_close('%s');\">%s</A>&nbsp;".
-               "<td valign=top>&nbsp;%s&nbsp;", 
-               ($line % 2) ? " bgcolor=\"$color[0]\"" : "", 
-               $row["email"], $row["email"], $row["email"], 
-               $row["name"],  $row["email"], $row["email"],
-               $row["label"]);
-
-        if($includesource)
-           printf("<td nowrap valign=top>&nbsp;%s", $row["source"]);
-
-        print "</TR>\n";
-        $line++;
-      }
-      print "</TABLE>";
-   }
-
-   /* ================= End of functions ================= */
-
-   session_start();
-
-   if(!isset($logged_in)) {
-      echo _("You must login first.");
-      exit;
-   }
-   if(!isset($username) || !isset($key)) {
-      echo _("You need a valid user and password to access this page!");
-      exit;
-   }
-
-   if (!isset($config_php))
-      include("../config/config.php");
-   if (!isset($array_php))
-      include("../functions/array.php");
-   if (!isset($auth_php))
-      include("../functions/auth.php");
-   if (!isset($strings_php))
-      include("../functions/strings.php");
-   if (!isset($page_header_php))
-      include("../functions/page_header.php");
-   if (!isset($addressbook_php))
-      include("../functions/addressbook.php");
-
-   is_logged_in();
-   include("../src/load_prefs.php");
-
-   displayHtmlHeader();
-
-   // Choose correct colors for top and bottom frame
-   if($show == "form") {
-      echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" ";
-      echo "LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\" ";
-      echo "OnLoad=\"document.sform.query.focus();\">";  
-   } else {
-      echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" ";
-      echo "LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
-   }
-
-   // Empty search
-   if(empty($query) && empty($show) && empty($listall))  {
-      printf("<P ALIGN=center><BR>%s</P>\n</BODY></HTML>\n",
-            _("No persons matching your search was found"));
-      exit;
-   }
-
-   // Initialize addressbook
-   $abook = addressbook_init();
-
-   // Create search form 
-   if($show == "form") {
-      printf("<FORM NAME=sform TARGET=abookres ACTION=\"%s\" METHOD=\"POST\">\n",
-            $PHP_SELF);
-      printf("<TABLE BORDER=0 WIDTH=\"100%%\" HEIGHT=\"100%%\">");
-      printf("<TR><TD NOWRAP VALIGN=middle>\n");
-      printf("  <STRONG>%s</STRONG>\n", _("Search for"));
-      printf("  <INPUT TYPE=text NAME=query VALUE=\"%s\" SIZE=26>\n",
-            htmlspecialchars($query));
-
-      // List all backends to allow the user to choose where to search
-      if($abook->numbackends > 1) {
-        printf("<STRONG>%s</STRONG>&nbsp;<SELECT NAME=backend>\n", 
-               _("in"));
-        printf("<OPTION VALUE=-1 SELECTED>%s\n", 
-               _("All address books"));
-        $ret = $abook->get_backend_list();
-        while(list($k,$v) = each($ret)) 
-           printf("<OPTION VALUE=%d>%s\n", $v->bnum, $v->sname);
-        printf("</SELECT>\n");
-      } else {
-        printf("<INPUT TYPE=hidden NAME=backend VALUE=-1>\n");
-      }
-
-      printf("<INPUT TYPE=submit VALUE=\"%s\">",
-            _("Search"));
-      printf("&nbsp;|&nbsp;<INPUT TYPE=submit VALUE=\"%s\" NAME=listall>\n",
-             _("List all"));
-      printf("</TD><TD ALIGN=right>\n");
-      printf("<INPUT TYPE=button VALUE=\"%s\" onclick=\"parent.close();\">\n",
-             _("Close window"));
-      printf("</TD></TR></TABLE></FORM>\n");
-   } else
-
-   // Show personal addressbook
-   if($show == "blank" || !empty($listall)) {
-
-      if($backend != -1 || $show == "blank") {
-        if($show == "blank") 
-           $backend = $abook->localbackend;
-
-        //printf("<H3 ALIGN=center>%s</H3>\n", $abook->backends[$backend]->sname);
-
-        $res = $abook->list_addr($backend);
-
-        if(is_array($res)) {
-           display_result($res, false);
-        } else {
-           printf("<P ALIGN=center><STRONG>"._("Unable to list addresses from %s").
-                  "</STRONG></P>\n", $abook->backends[$backend]->sname);
-        }
-
-      } else {
-        $res = $abook->list_addr();
-        display_result($res, true);
-      }
-
-   } else
-
-   // Do the search
-   if(!empty($query) && empty($listall)) {
-
-      if($backend == -1) {
-        $res = $abook->s_search($query);
-      } else {
-        $res = $abook->s_search($query, $backend);
-      }
-
-      if(!is_array($res)) {
-        printf("<P ALIGN=center><B><BR>%s:<br>%s</B></P>\n</BODY></HTML>\n",
-               _("Your search failed with the following error(s)"),
-               $abook->error);
-        exit;
-      }
-
-      if(sizeof($res) == 0) {
-        printf("<P ALIGN=center><BR><B>%s.</B></P>\n</BODY></HTML>\n",
-               _("No persons matching your search was found"));
-        exit;
-      }
-
-      display_result($res);
-   }
-?>
-
-</BODY></HTML>
+$oTemplate->display('footer.tpl');