* Properly retains the mailbox when you use the HTML addressbook
[squirrelmail.git] / src / addrbook_search_html.php
1 <?php
2 /**
3 ** addrbook_search.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Handle addressbook searching with pure html.
9 **
10 ** This file is included from compose.php
11 **
12 ** NOTE: A lot of this code is similar to the code in
13 ** addrbook_search.html -- If you change one, change
14 ** the other one too!
15 **
16 ** $Id$
17 **/
18
19 include('../src/validate.php');
20 include('../functions/page_header.php');
21 include('../functions/date.php');
22 include('../functions/smtp.php');
23 include('../functions/display_messages.php');
24 include('../functions/addressbook.php');
25 include('../functions/plugin.php');
26 include('../src/load_prefs.php');
27
28 // Insert hidden data
29 function addr_insert_hidden() {
30 global $body, $subject, $send_to, $send_to_cc, $send_to_bcc, $mailbox;
31
32 echo '<input type=hidden value="';
33 if (substr($body, 0, 1) == "\r")
34 echo "\n";
35 echo htmlspecialchars($body) . '" name=body>' . "\n";
36 echo '<input type=hidden value="' . htmlspecialchars($subject)
37 . '" name=subject>' . "\n";
38 echo '<input type=hidden value="' . htmlspecialchars($send_to)
39 . '" name=send_to>' . "\n";
40 echo "<input type=hidden value=\"" . htmlspecialchars($send_to_cc)
41 . '" name=send_to_cc>' . "\n";
42 echo "<input type=hidden value=\"" . htmlspecialchars($send_to_bcc)
43 . '" name=send_to_bcc>' . "\n";
44 echo "<input type=hidden name=mailbox value=\"" .
45 htmlspecialchars($mailbox) . "\">\n";
46 echo "<input type=hidden value=\"true\" name=from_htmladdr_search>\n";
47 }
48
49
50 // List search results
51 function addr_display_result($res, $includesource = true) {
52 global $color, $PHP_SELF;
53
54 if(sizeof($res) <= 0) return;
55
56 echo '<form method=post action="' . $PHP_SELF . "\">\n";
57 echo '<input type=hidden name="html_addr_search_done" value="true">';
58 echo "\n";
59 addr_insert_hidden();
60 $line = 0;
61
62 print "<TABLE BORDER=0 WIDTH=\"98%\" ALIGN=center>";
63 printf("<TR BGCOLOR=\"$color[9]\"><TH ALIGN=left>&nbsp;".
64 "<TH ALIGN=left>&nbsp;%s<TH ALIGN=left>&nbsp;%s".
65 "<TH ALIGN=left>&nbsp;%s",
66 _("Name"), _("E-mail"), _("Info"));
67
68 if($includesource)
69 printf("<TH ALIGN=left WIDTH=\"10%%\">&nbsp;%s", _("Source"));
70
71 print "</TR>\n";
72
73 foreach ($res as $row) {
74 echo '<tr';
75 if ($line % 2) echo ' bgcolor="' . $color[0] . '"';
76 echo ' nowrap><td nowrap align=center width="5%">';
77 echo '<input type=checkbox name="send_to_search[T' . $line . ']" value = "' .
78 htmlspecialchars($row['email']) . '">&nbsp;To&nbsp;';
79 echo '<input type=checkbox name="send_to_search[C' . $line . ']" value = "' .
80 htmlspecialchars($row['email']) . '">&nbsp;Cc&nbsp;';
81 echo '<input type=checkbox name="send_to_search[B' . $line . ']" value = "' .
82 htmlspecialchars($row['email']) . '">&nbsp;Bcc&nbsp;';
83 echo '</td><td nowrap>&nbsp;' . $row['name'] . '&nbsp;</td>';
84 echo '<td nowrap>&nbsp;' . $row['email'] . '&nbsp;</td>';
85 echo '<td nowrap>&nbsp;' . $row['label'] . '&nbsp;</td>';
86 if($includesource)
87 echo '<td nowrap>&nbsp;' . $row['source'] . '&nbsp;</td>';
88 echo "</tr>\n";
89 $line ++;
90 }
91 printf('<TR><TD ALIGN=center COLSPAN=%d><INPUT TYPE=submit '.
92 'NAME="addr_search_done" VALUE="%s"></TD></TR>',
93 4 + ($includesource ? 1 : 0),
94 _("Use Addresses"));
95 print '</TABLE>';
96 print '<INPUT TYPE=hidden VALUE=1 NAME="html_addr_search_done">';
97 print '</FORM>';
98 }
99
100 // --- End functions ---
101
102 global $mailbox;
103 displayPageHeader($color, $mailbox);
104
105 // Initialize addressbook
106 $abook = addressbook_init();
107
108 ?>
109
110 <br>
111 <table width=95% align=center cellpadding=2 cellspacing=2 border=0>
112 <tr><td bgcolor="<?php echo $color[0] ?>">
113 <center><b><?php echo _("Address Book Search") ?></b></center>
114 </td></tr></table>
115
116 <?php
117 // Search form
118 print "<CENTER>\n";
119 print "<TABLE BORDER=0>\n";
120 print "<TR><TD NOWRAP VALIGN=middle>\n";
121 printf('<FORM METHOD=post NAME=f ACTION="%s?html_addr_search=true">'."\n", $PHP_SELF);
122 print "<CENTER>\n";
123 printf(" <nobr><STRONG>%s</STRONG>\n", _("Search for"));
124 addr_insert_hidden();
125 if (! isset($addrquery))
126 $addrquery = '';
127 printf(" <INPUT TYPE=text NAME=addrquery VALUE=\"%s\" SIZE=26>\n",
128 htmlspecialchars($addrquery));
129
130 // List all backends to allow the user to choose where to search
131 if(!isset($backend)) $backend = "";
132 if($abook->numbackends > 1) {
133 printf("<STRONG>%s</STRONG>&nbsp;<SELECT NAME=backend>\n",
134 _("in"));
135 printf("<OPTION VALUE=-1 %s>%s\n",
136 ($backend == -1) ? "SELECTED" : "",
137 _("All address books"));
138 $ret = $abook->get_backend_list();
139 while(list($undef,$v) = each($ret))
140 printf("<OPTION VALUE=%d %s>%s\n",
141 $v->bnum,
142 ($backend == $v->bnum) ? "SELECTED" : "",
143 $v->sname);
144 print "</SELECT>\n";
145 } else {
146 print "<INPUT TYPE=hidden NAME=backend VALUE=-1>\n";
147 }
148 printf("<INPUT TYPE=submit VALUE=\"%s\">",
149 _("Search"));
150 printf("&nbsp;|&nbsp;<INPUT TYPE=submit VALUE=\"%s\" NAME=listall>\n",
151 _("List all"));
152 print '</FORM></center>';
153
154 print "</TD></TR></TABLE>\n";
155 addr_insert_hidden();
156 print "</CENTER>";
157 do_hook('addrbook_html_search_below');
158 // End search form
159
160 // Show personal addressbook
161 if($addrquery == '' || !empty($listall)) {
162
163 if(! isset($backend) || $backend != -1 || $addrquery == '') {
164 if($addrquery == '')
165 $backend = $abook->localbackend;
166
167 //printf("<H3 ALIGN=center>%s</H3>\n", $abook->backends[$backend]->sname);
168
169 $res = $abook->list_addr($backend);
170
171 if(is_array($res)) {
172 addr_display_result($res, false);
173 } else {
174 printf("<P ALIGN=center><STRONG>"._("Unable to list addresses from %s").
175 "</STRONG></P>\n", $abook->backends[$backend]->sname);
176 }
177
178 } else {
179 $res = $abook->list_addr();
180 addr_display_result($res, true);
181 }
182 exit;
183
184 } else
185
186 // Do the search
187 if(!empty($addrquery) && empty($listall)) {
188
189 if($backend == -1) {
190 $res = $abook->s_search($addrquery);
191 } else {
192 $res = $abook->s_search($addrquery, $backend);
193 }
194
195 if(!is_array($res)) {
196 printf("<P ALIGN=center><B><BR>%s:<br>%s</B></P>\n</BODY></HTML>\n",
197 _("Your search failed with the following error(s)"),
198 $abook->error);
199 } else if(sizeof($res) == 0) {
200 printf("<P ALIGN=center><BR><B>%s.</B></P>\n</BODY></HTML>\n",
201 _("No persons matching your search was found"));
202 } else {
203 addr_display_result($res);
204 }
205 }
206
207 if ($addrquery == '' || sizeof($res) == 0) {
208 printf('<center><FORM METHOD=post NAME=k ACTION="compose.php">'."\n", $PHP_SELF);
209 addr_insert_hidden();
210 printf("<INPUT TYPE=submit VALUE=\"%s\" NAME=return>\n", _("Return"));
211 print '</form>';
212 print '</center></nobr>';
213 }
214
215 ?>
216 </body></html>