ehh, hmm: include -> require
[squirrelmail.git] / src / addrbook_search.php
index d67bd619d025ceef9ecbbe0afeae2681a5901e78..5cb11ff1081d385c530e6f61afafeaed7e0ea140 100644 (file)
 <?php
-   /**
-    **  addrbook_search.php
-    **
-    **  Handle addressbook searching in the popup window.
-    **
-    **/
-
-   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($strings_php))
-      include("../functions/strings.php");
-   if (!isset($imap_php))
-      include("../functions/imap.php");
-   if (!isset($page_header_php))
-      include("../functions/page_header.php");
-   if (!isset($addressbook_php))
-      include("../functions/addressbook.php");
-
-   // Authenticate user and load prefs
-   $imapConnection = sqimap_login($username, $key, 
-                                 $imapServerAddress, $imapPort, 10);
-   include("../src/load_prefs.php");
-   sqimap_logout ($imapConnection);
 
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+/**
+ * addrbook_search.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project 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!
+ *
+ * $Id$
+ */
+
+require_once('../src/validate.php');
+require_once('../functions/strings.php');
+
+/* Function to include JavaScript code */
+function insert_javascript() {
+    ?>
+    <SCRIPT LANGUAGE="Javascript"><!--
+
+    function to_and_close($addr) {
+        to_address($addr);
+        parent.close();
+    }
+
+    function to_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.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;
+            }
+        }
+    }
 
-<HTML>
-<HEAD>
-<TITLE><?php 
-   printf("%s: %s", $org_title, _("Address Book")); 
-?></TITLE>
-</HEAD>
+    function cc_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_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;
+            }
+        }
+    }
+
+    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;
+            } else {
+                parent.opener.document.compose.send_to_bcc.value = $addr;
+            }
+        }
+    }
+
+// --></SCRIPT>
 <?php
-   // 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";
-   }
-
-   // Just make a blank page and exit
-   if(($show == "blank") || (empty($query) && empty($show)))  {
-      printf("<P ALIGN=center><BR>%s</P>\n</BODY></HTML>\n",
-            _("Search results will display here"));
-      exit;
-   }
-
-   // Create search form 
-   if($show == "form") {
-      printf("<FORM NAME=sform TARGET=abookres ACTION=\"%s\" METHOD=GET>\n",
-            $PHP_SELF);
-      printf("<TABLE BORDER=0 WIDTH=\"100%%\" HEIGHT=\"100%%\">");
-      printf("<TR><TD NOWRAP VALIGN=middle>\n");
-      printf("  <STRONG>%s:</STRONG>\n</TD><TD VALIGN=middle>\n",
-            _("Search for"));
-      printf("  <INPUT TYPE=text NAME=query VALUE=\"%s\" SIZE=30>\n",
-            htmlspecialchars($query));
-      printf("</TD><TD VALIGN=middle>\n");
-      printf("  <INPUT TYPE=submit VALUE=\"%s\">",
-            _("Search"));
-      printf("</TD><TD WIDTH=\"50%%\" VALIGN=middle ALIGN=right>\n");
-      printf("<INPUT TYPE=button VALUE=\"%s\" onclick=\"parent.close();\">\n",
-             _("Close window"));
-      printf("</TD></TR></TABLE></FORM>\n");
-   }
-
-   // Include JavaScript code if this is search results
-   if(!empty($query)) {
-?>
-<SCRIPT LANGUAGE="Javascript"><!--
+} /* End of included JavaScript */
 
-function to_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
 
-  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;
+/* List search results */
+function display_result($res, $includesource = true) {
+    global $color;
+        
+    if(sizeof($res) <= 0) return;
+        
+    insert_javascript();
+        
+    $line = 0;
+    echo '<TABLE BORDER="0" WIDTH="98%" ALIGN=center>' .
+         '<TR BGCOLOR="' . $color[9] . '"><TH ALIGN=left>&nbsp;' .
+         '<TH ALIGN=left>&nbsp;' . _("Name") .
+         '<TH ALIGN=left>&nbsp;' . _("E-mail") .
+         '<TH ALIGN=left>&nbsp;' . _("Info");
+
+    if ($includesource) {
+        echo '<TH ALIGN=left WIDTH="10%">&nbsp;' . _("Source");
+    }    
+    echo "</TR>\n";
+    
+    while (list($undef, $row) = each($res)) {
+        echo '<tr';
+        if ($line % 2) { echo ' bgcolor="' . $color[0] . '"'; }
+        echo ' nowrap><td valign=top nowrap align=center width="5%">' .
+             '<small><a href="javascript:to_address(' . 
+                                       "'" . $row['email'] . "');\">To</A> | " .
+             '<a href="javascript:cc_address(' . 
+                                       "'" . $row['email'] . "');\">Cc</A> | " .
+             '<a href="javascript:bcc_address(' . 
+                                 "'" . $row['email'] . "');\">Bcc</A></small>" .
+             '<td nowrap valign=top>&nbsp;' .
+                                 $row['name'] . '&nbsp;<td nowrap valign=top>' .
+             '&nbsp;<a href="javascript:to_and_close(' .
+                 "'" . $row['email'] . "');\">" . $row['email'] . '</A>&nbsp;' .
+             '<td valign=top>&nbsp;' . $row['label'] . '&nbsp;';
+        if ($includesource) {
+            echo '<td nowrap valign=top>&nbsp;' . $row['source'];
+        }
+
+        echo "</TR>\n";
+        $line++;
     }
-  }
+    echo '</TABLE>';
+}
+
+/* ================= End of functions ================= */
+    
+require_once('../functions/array.php');
+require_once('../functions/strings.php');
+require_once('../functions/addressbook.php');
+    
+displayHtmlHeader();
+    
+/* Initialize vars */
+if (!isset($query)) { $query = ''; }
+if (!isset($show))  { $show  = ''; }
+
+/* Choose correct colors for top and bottom frame */
+if ($show == 'form') {
+    echo '<BODY TEXT="' . $color[6] . '" BGCOLOR="' . $color[3] . '" ' .
+               'LINK="' . $color[6] . '" VLINK="'   . $color[6] . '" ' .
+                                        'ALINK="'   . $color[6] . '" ' .
+         'OnLoad="document.sform.query.focus();">';
+} else {
+    echo '<BODY TEXT="' . $color[8] . '" BGCOLOR="' . $color[4] . '" ' .
+               'LINK="' . $color[7] . '" VLINK="'   . $color[7] . '" ' .
+                                        'ALINK="'   . $color[7] . "\">\n";
+}
+
+/* Empty search */
+if (empty($query) && empty($show) && empty($listall)) {
+    echo '<P ALIGN=center><BR>' .
+          _("No persons matching your search was found") .
+          "</P>\n</BODY></HTML>\n",
+    exit;
 }
 
-function cc_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
+/* Initialize addressbook */
+$abook = addressbook_init();
 
-  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;      
+/* Create search form */
+if ($show == 'form') {
+    echo '<FORM NAME=sform TARGET=abookres ACTION="' . $PHP_SELF .
+         '" METHOD="POST">' . "\n" .
+         '<TABLE BORDER="0" WIDTH="100%" HEIGHT="100%">' .
+         '<TR><TD NOWRAP VALIGN=middle>' . "\n" .
+         '  <STRONG>' . _("Search for") . "</STRONG>\n" .
+         '  <INPUT TYPE=text NAME=query VALUE="' . htmlspecialchars($query) .
+         "\" SIZE=26>\n";
+
+    /* List all backends to allow the user to choose where to search */
+    if ($abook->numbackends > 1) {
+        echo '<STRONG>' . _("in") . '</STRONG>&nbsp;<SELECT NAME=backend>'."\n".
+             '<OPTION VALUE=-1 SELECTED>' . _("All address books") . "\n";
+        $ret = $abook->get_backend_list();
+        while (list($undef,$v) = each($ret)) {
+            echo '<OPTION VALUE=' . $v->bnum . '>' . $v->sname . "\n";
+        }
+        echo "</SELECT>\n";
     } else {
-      parent.opener.document.compose.send_to_cc.value = $addr;
+        echo '<INPUT TYPE=hidden NAME=backend VALUE=-1>' . "\n";
     }
-  }
-}
+        
+    echo '<INPUT TYPE=submit VALUE="' . _("Search") . '">' .
+         '&nbsp;|&nbsp;<INPUT TYPE=submit VALUE="' . _("List all") .
+         '" NAME=listall>' . "\n" .
+         '</TD><TD ALIGN=right>' . "\n" .
+         '<INPUT TYPE=button VALUE="' . _("Close window") .
+         '" onclick="parent.close();">' . "\n" .
+         '</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;
+            }
+            $res = $abook->list_addr($backend);
 
-function bcc_address($addr) {
-  var prefix    = "";
-  var pwintype = typeof parent.opener.document.compose;
+            if(is_array($res)) {
+                usort($res,'alistcmp');
+                display_result($res, false);
+            } else {
+                echo '<P ALIGN=center><STRONG>' .
+                     sprintf(_("Unable to list addresses from %s"),
+                         $abook->backends[$backend]->sname) .
+                     '</STRONG></P>' . "\n";
+            }
+        } else {
+            $res = $abook->list_addr();
+            usort($res,'alistcmp');
+            display_result($res, true);
+        }
 
-  if(pwintype != "undefined" ) {
-    if ( parent.opener.document.compose.bcc.value ) {
-      prefix = ", ";
-      parent.opener.document.compose.bcc.value = 
-        parent.opener.document.compose.bcc.value + ", " + $addr;      
     } else {
-      parent.opener.document.compose.bcc.value = $addr;
+
+        /* 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)) {
+                echo '<P ALIGN=center><B><BR>' .
+                     _("Your search failed with the following error(s)") .
+                     ':<br>' . $abook->error . "</B></P>\n</BODY></HTML>\n";
+                exit;
+            }
+        
+            if (sizeof($res) == 0) {
+                echo '<P ALIGN=center><BR><B>' .
+                     _("No persons matching your search was found") .
+                     ".</B></P>\n</BODY></HTML>\n";
+                exit;
+            }
+        
+            display_result($res);
+        }
     }
-  }
+   
 }
 
-// --></SCRIPT>
-
-<?php 
-   } // End of included JavaScript code
-
-   // Do the search
-   if(!empty($query)) {
-      $abook = addressbook_init();
-      $res = $abook->s_search($query);
-
-      if(!is_array($res)) {
-        printf("<P ALIGN=center><BR>%s.</P>\n</BODY></HTML>\n",
-               _("No persons matching your search was found"));
-        exit;
-      }
-
-      // List search results
-      $line = 0;
-      print "<table border=0 width=100%>";
-      print "<tr bgcolor=\"$color[9]\"><TH align=left>&nbsp;<TH align=left>Name<TH align=left>E-mail<TH align=left>Info<TH align=left>Source</tr>\n";
-
-      while(list($key, $row) = each($res)) {
-        printf("<tr%s nowrap><td nowrap><a href=\"javascript:to_address('%s');\">To</A> | <a href=\"javascript:cc_address('%s');\">Cc</A><td nowrap>%s&nbsp;<td nowrap>%s&nbsp;<td nowrap>%s&nbsp;<td nowrap>%s</tr>\n", 
-               ($line % 2) ? " bgcolor=\"$color[0]\"" : "", $row["email"],
-               $row["email"], $row["name"], $row["email"], $row["label"], 
-               $row["source"]);
-        $line++;
-      }
-      print "</TABLE>";
-   }
+echo "</BODY></HTML>\n";
+   
 ?>
-
-</BODY></HTML>