ehh, hmm: include -> require
[squirrelmail.git] / src / search.php
index 7eb98a183faa78e51be51356758c4bff51f4fb4d..65e1695aebea571d689dad5d4fce74576fdfdd3a 100644 (file)
 <?php
 
-   /* $Id$ */
-
-   session_start();
-
-   if(!isset($logged_in)) {
-      set_up_language($squirrelmail_language, true);
-      echo _("You must login first.");
-      exit;
-   }
-   if(!isset($username) || !isset($key)) {
-      include ("../themes/default_theme.php");
-      include ("../functions/display_messages.php");
-      printf('<html><BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
-              $color[8], $color[4], $color[7], $color[7], $color[7]);
-      plain_error_message(_("You need a valid user and password to access this page!")
-                          . "<br><a href=\"../src/login.php\">"
-                          . _("Click here to log back in.") . "</a>.", $color);
-      echo "</body></html>";
-      exit;
-   }
-
-   if (!isset($strings_php))
-      include("../functions/strings.php");
-   if (!isset($i18n_php))
-      include("../functions/i18n.php");
-   if (!isset($config_php))
-      include("../config/config.php");
-   if (!isset($page_header_php))
-      include("../functions/page_header.php");
-   if (!isset($imap_php))
-      include("../functions/imap.php");
-   if (!isset($imap_search_php))
-      include("../functions/imap_search.php");
-   if (!isset($array_php))
-      include("../functions/array.php");
-
-   include("../src/load_prefs.php");
-
-   displayPageHeader($color, $mailbox);
-   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
-
-   do_hook("search_before_form");
-   echo "<br>\n";
-   echo "      <table width=95% align=center cellpadding=2 cellspacing=0 border=0>\n";
-   echo "      <tr><td bgcolor=\"$color[0]\">\n";
-   echo "          <center><b>"._("Search")."</b></center>\n";
-   echo "      </td></tr>\n";
-   echo "      <tr><td align=center>";
-
-   echo "<FORM ACTION=\"search.php\" NAME=s>\n";
-   echo "   <TABLE WIDTH=75%>\n";
-   echo "     <TR>\n";
-   echo "       <TD WIDTH=33%>\n";
-   echo "         <TT><SMALL><SELECT NAME=\"mailbox\">";
-
-   $boxes = sqimap_mailbox_list($imapConnection);
-   for ($i = 0; $i < count($boxes); $i++) {
-         if (!in_array("noselect", $boxes[$i]["flags"])) {
-         $box = $boxes[$i]["unformatted"];
-         $box2 = replace_spaces($boxes[$i]["formatted"]);
-         if ($mailbox == $box)
-            echo "         <OPTION VALUE=\"$box\" SELECTED>$box2\n";
-         else
-            echo "         <OPTION VALUE=\"$box\">$box2\n";
-      }
-   }
-   echo "         </SELECT></SMALL></TT>";
-   echo "       </TD>\n";
-   echo "        <TD ALIGN=\"CENTER\" WIDTH=33%>\n";
-   if (!isset($what))
-       $what = "";
-   $what_disp = ereg_replace(",", " ", $what);
-   $what_disp = str_replace("\\\\", "\\", $what_disp);
-   $what_disp = str_replace("\\\"", "\"", $what_disp);
-   $what_disp = str_replace("\"", "&quot;", $what_disp);
-   echo "          <INPUT TYPE=\"TEXT\" SIZE=\"20\" NAME=\"what\" VALUE=\"$what_disp\">\n";
-   echo "        </TD>";
-   echo "       <TD ALIGN=\"RIGHT\" WIDTH=33%>\n";
-   echo "         <SELECT NAME=\"where\">";
-   
-   if (isset($where) && $where == "BODY") echo "           <OPTION VALUE=\"BODY\" SELECTED>"._("Body")."\n";
-   else echo "           <OPTION VALUE=\"BODY\">"._("Body")."\n";
-   
-   if (isset($where) && $where == "TEXT") echo "           <OPTION VALUE=\"TEXT\" SELECTED>"._("Everywhere")."\n";
-   else echo "           <OPTION VALUE=\"TEXT\">"._("Everywhere")."\n";
-   
-   if (isset($where) && $where == "SUBJECT") echo "           <OPTION VALUE=\"SUBJECT\" SELECTED>"._("Subject")."\n";
-   else echo "           <OPTION VALUE=\"SUBJECT\">"._("Subject")."\n";
-   
-   if (isset($where) && $where == "FROM") echo "           <OPTION VALUE=\"FROM\" SELECTED>"._("From")."\n";
-   else echo "           <OPTION VALUE=\"FROM\">"._("From")."\n";
-   
-   if (isset($where) && $where == "CC") echo "           <OPTION VALUE=\"Cc\" SELECTED>"._("Cc")."\n";
-   else echo "           <OPTION VALUE=\"CC\">"._("Cc")."\n";
-   
-   if (isset($where) && $where == "TO") echo "           <OPTION VALUE=\"TO\" SELECTED>"._("To")."\n";
-   else echo "           <OPTION VALUE=\"TO\">"._("To")."\n";
-   
-   echo "         </SELECT>\n";
-   echo "        </TD>\n";
-   echo "       <TD COLSPAN=\"3\" ALIGN=\"CENTER\">\n";
-   echo "         <INPUT TYPE=\"submit\" VALUE=\""._("Search")."\">\n";
-   echo "       </TD>\n";
-   echo "     </TR>\n";
-   echo "   </TABLE>\n"; 
-   echo "</FORM>";
-   echo "</td></tr></table>";
-   do_hook("search_after_form");
-   if (isset($where) && $where && isset($what) && $what) {   
-      sqimap_mailbox_select($imapConnection, $mailbox);
-      sqimap_search($imapConnection, $where, $what, $mailbox, $color);
-   }
-   do_hook("search_bottom");
-   sqimap_logout ($imapConnection);
+/**
+ * search.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * $Id$
+ */
+
+require_once('../src/validate.php');
+require_once('../functions/imap.php');
+require_once('../functions/imap_search.php');
+require_once('../functions/array.php');
+require_once('../functions/strings.php');
+
+function s_opt( $val, $sel, $tit ) {
+    echo "            <option value=\"$val\"";
+    if ( $sel == $val ) {
+        echo ' selected';
+    }
+    echo  ">$tit</option>\n";
+}
+
+/* ------------------------ main ------------------------ */
+
+$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+$boxes = sqimap_mailbox_list($imapConnection);
+
+if( $mailbox == 'None' ) {
+    $mailbox = $boxes[0]['unformatted'];
+}
+
+displayPageHeader($color, $mailbox);
+
+if( !isset( $search_memory ) ) {
+    $search_memory = 0;
+}
+
+do_hook('search_before_form');
+echo "<br>\n".
+     "      <table width=\"100%\" align=center cellpadding=2 cellspacing=0 border=0>\n".
+     "      <tr><td bgcolor=\"$color[0]\">\n".
+     "          <center><b>"._("Search")."</b></center>\n".
+     "      </td></tr>\n".
+     '      <tr><td align=center>';
+
+if( $search_memory > 0 ) {
+
+    if( isset( $pos) ) {
+        setpref( $data_dir, $username, 'search_pos', $pos );
+    } else {
+        $pos = getPref($data_dir, $username, 'search_pos', 0 );
+    }
+
+}
+
+for ( $form = 0; $form <= $search_memory; $form++ ) {
+
+    $frm = "$form";
+    $what = "what$frm";
+    $where = "where$frm";
+    
+    if( $search_memory > 0 ) {
+        if ( $$what == '' ) {
+            $$what = getPref($data_dir, $username, "search_what$frm", '' );
+            $$where = getPref($data_dir, $username, "search_where$frm", '' );
+        } else {
+            setpref( $data_dir, $username, "search_what$frm", $$what );
+            setpref( $data_dir, $username, "search_where$frm", $$where );
+        }
+    }
+    echo "   <TABLE WIDTH=\"75%\" cellpadding=0 cellspacing=0>\n";
+    if( !($form == 0 && $search_memory > 0) ) {
+
+        if( $form == $pos ) {
+            $act = $color[5];
+        } else {
+            $act = $color[4];
+        }
+
+        echo "<FORM ACTION=\"$PHP_SELF\" NAME=s>\n".
+             "<input type=hidden name=pos value=\"$frm\">".
+             "     <TR bgcolor=$act><td width=10></td>\n".
+             '       <TD><SELECT NAME="mailbox">';
+        
+        for ($i = 0; $i < count($boxes); $i++) {
+            if (!in_array('noselect', $boxes[$i]['flags'])) {
+                $box = $boxes[$i]['unformatted'];
+                $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
+                if ($mailbox == $box) {
+                    echo "         <OPTION VALUE=\"$box\" SELECTED>$box2</OPTION>\n";
+                } else {
+                    echo "         <OPTION VALUE=\"$box\">$box2</OPTION>\n";
+                }   
+            }
+        }
+        echo '         </SELECT>'.
+             "       </TD>\n".
+             "        <TD ALIGN=\"CENTER\">\n";
+        if (!isset($$what)) {
+           $$what = '';
+        }
+        $what_disp = str_replace(',', ' ', $$what);
+        $what_disp = str_replace('\\\\', '\\', $what_disp);
+        $what_disp = str_replace('\\"', '"', $what_disp);
+        $what_disp = str_replace('"', '&quot;', $what_disp);
+        echo "          <INPUT TYPE=\"TEXT\" SIZE=\"20\" NAME=\"what$frm\" VALUE=\"$what_disp\">\n".
+                    '</TD>'.
+                   "<TD ALIGN=\"RIGHT\">\n".
+                     "<SELECT NAME=\"where$frm\">";
+        
+        s_opt( 'BODY', $$where, _("Body") );
+        s_opt( 'TEXT', $$where, _("Everywhere") );
+        s_opt( 'SUBJECT', $$where, _("Subject") );
+        s_opt( 'FROM', $$where, _("From") );
+        s_opt( 'CC', $$where, _("Cc") );
+        s_opt( 'TO', $$where, _("To") );
+        
+        echo "         </SELECT>\n" .
+             "        </TD>\n".
+             "       <TD COLSPAN=\"3\" ALIGN=\"CENTER\">\n".
+             "         <INPUT TYPE=\"submit\" VALUE=\""._("Search")."\">\n".
+             "       </TD>\n".
+             "     </TR>\n".
+             '</FORM>';
+    }         
+    echo "   </TABLE>\n";
+}     
+
+echo "</td></tr></table>";
+do_hook("search_after_form");
+if( !isset( $pos ) ) {
+    $pos = $frm;
+}
+$what = "what$pos";
+$where = "where$pos";
+
+if (isset($$where) && $$where && isset($$what) && $$what) {
+    sqimap_mailbox_select($imapConnection, $mailbox);
+    sqimap_search($imapConnection, $$where, $$what, $mailbox, $color, $pos);
+}
+do_hook("search_bottom");
+sqimap_logout ($imapConnection);
+
+echo '</body></html>';
+
 ?>
-</body></html>