Warning removal
[squirrelmail.git] / src / addrbook_search.php
CommitLineData
5100704d 1<?php
2 /**
3 ** addrbook_search.php
4 **
ef870322 5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
5100704d 8 ** Handle addressbook searching in the popup window.
9 **
2c5d4cd4 10 ** NOTE: A lot of this code is similar to the code in
11 ** addrbook_search_html.html -- If you change one,
12 ** change the other one too!
245a6892 13 **
14 ** $Id$
5100704d 15 **/
16
ff8a98e7 17 require_once('../src/validate.php');
f740c049 18
2f73dc15 19 // Function to include JavaScript code
20 function insert_javascript() {
5100704d 21?>
22<SCRIPT LANGUAGE="Javascript"><!--
23
87332e20 24function to_and_close($addr) {
25 to_address($addr);
26 parent.close();
27}
28
5100704d 29function to_address($addr) {
30 var prefix = "";
31 var pwintype = typeof parent.opener.document.compose;
32
dfadb553 33 $addr = $addr.replace(/ {1,35}$/, "");
34
5100704d 35 if(pwintype != "undefined" ) {
36 if ( parent.opener.document.compose.send_to.value ) {
37 prefix = ", ";
9487c2ff 38 parent.opener.document.compose.send_to.value =
dfadb553 39 parent.opener.document.compose.send_to.value + ", " + $addr;
9487c2ff 40
5100704d 41 } else {
42 parent.opener.document.compose.send_to.value = $addr;
43 }
44 }
45}
46
47function cc_address($addr) {
48 var prefix = "";
49 var pwintype = typeof parent.opener.document.compose;
50
dfadb553 51 $addr = $addr.replace(/ {1,35}$/, "");
52
5100704d 53 if(pwintype != "undefined" ) {
54 if ( parent.opener.document.compose.send_to_cc.value ) {
55 prefix = ", ";
9487c2ff 56 parent.opener.document.compose.send_to_cc.value =
57 parent.opener.document.compose.send_to_cc.value + ", " + $addr;
5100704d 58 } else {
59 parent.opener.document.compose.send_to_cc.value = $addr;
60 }
61 }
62}
63
64function bcc_address($addr) {
65 var prefix = "";
66 var pwintype = typeof parent.opener.document.compose;
9487c2ff 67
dfadb553 68 $addr = $addr.replace(/ {1,35}$/, "");
5100704d 69
70 if(pwintype != "undefined" ) {
a4fe507d 71 if ( parent.opener.document.compose.send_to_bcc.value ) {
5100704d 72 prefix = ", ";
9487c2ff 73 parent.opener.document.compose.send_to_bcc.value =
74 parent.opener.document.compose.send_to_bcc.value + ", " + $addr;
5100704d 75 } else {
a4fe507d 76 parent.opener.document.compose.send_to_bcc.value = $addr;
5100704d 77 }
78 }
79}
80
81// --></SCRIPT>
82
9487c2ff 83<?php
2f73dc15 84 } // End of included JavaScript
85
86
9487c2ff 87 // List search results
88 function display_result($res, $includesource = true) {
89 global $color;
90
91 if(sizeof($res) <= 0) return;
92
93 insert_javascript();
94
95 $line = 0;
96 echo '<TABLE BORDER="0" WIDTH="98%" ALIGN=center>';
97 printf("<TR BGCOLOR=\"$color[9]\"><TH ALIGN=left>&nbsp;".
98 "<TH ALIGN=left>&nbsp;%s<TH ALIGN=left>&nbsp;%s".
99 "<TH ALIGN=left>&nbsp;%s",
100 _("Name"), _("E-mail"), _("Info"));
101
102 if($includesource)
103 printf("<TH ALIGN=left WIDTH=\"10%%\">&nbsp;%s", _("Source"));
104
105 echo "</TR>\n";
106
107 while(list($undef, $row) = each($res)) {
108 printf("<tr%s nowrap><td valign=top nowrap align=center width=\"5%%\">".
109 "<small><a href=\"javascript:to_address('%s');\">To</A> | ".
110 "<a href=\"javascript:cc_address('%s');\">Cc</A> | ".
111 "<a href=\"javascript:bcc_address('%s');\">Bcc</A></small>".
112 "<td nowrap valign=top>&nbsp;%s&nbsp;<td nowrap valign=top>".
113 "&nbsp;<a href=\"javascript:to_and_close('%s');\">%s</A>&nbsp;".
114 "<td valign=top>&nbsp;%s&nbsp;",
115 ($line % 2) ? " bgcolor=\"$color[0]\"" : "",
116 $row["email"], $row["email"], $row["email"],
117 $row["name"], $row["email"], $row["email"],
118 $row["label"]);
119
120 if($includesource)
121 printf("<td nowrap valign=top>&nbsp;%s", $row["source"]);
122
123 echo "</TR>\n";
124 $line++;
125 }
126 echo '</TABLE>';
127 }
128
129 /* ================= End of functions ================= */
130
131 require_once('../functions/array.php');
132 require_once('../functions/strings.php');
133 require_once('../functions/addressbook.php');
134
135 displayHtmlHeader();
136
137 // Initialize vars
138 if(!isset($query)) $query = "";
139 if(!isset($show)) $show = "";
140
141 // Choose correct colors for top and bottom frame
142 if($show == 'form') {
143 echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" ";
144 echo "LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\" ";
145 echo 'OnLoad="document.sform.query.focus();">';
146 } else {
147 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" ";
148 echo "LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
149 }
150
151 // Empty search
152 if(empty($query) && empty($show) && empty($listall)) {
153 printf("<P ALIGN=center><BR>%s</P>\n</BODY></HTML>\n",
154 _("No persons matching your search was found"));
2f73dc15 155 exit;
9487c2ff 156 }
157
158 // Initialize addressbook
159 $abook = addressbook_init();
160
161 // Create search form
162 if($show == 'form') {
163 echo "<FORM NAME=sform TARGET=abookres ACTION=\"$PHP_SELF\" METHOD=\"POST\">\n";
164 echo '<TABLE BORDER="0" WIDTH="100%" HEIGHT="100%">';
165 echo "<TR><TD NOWRAP VALIGN=middle>\n";
166 printf(" <STRONG>%s</STRONG>\n", _("Search for"));
167 printf(" <INPUT TYPE=text NAME=query VALUE=\"%s\" SIZE=26>\n",
168 htmlspecialchars($query));
169
170 // List all backends to allow the user to choose where to search
171 if($abook->numbackends > 1) {
172 printf("<STRONG>%s</STRONG>&nbsp;<SELECT NAME=backend>\n",
173 _("in"));
174 printf("<OPTION VALUE=-1 SELECTED>%s\n",
175 _("All address books"));
176 $ret = $abook->get_backend_list();
177 while(list($undef,$v) = each($ret))
178 printf("<OPTION VALUE=%d>%s\n", $v->bnum, $v->sname);
179 print "</SELECT>\n";
180 } else {
181 print "<INPUT TYPE=hidden NAME=backend VALUE=-1>\n";
182 }
183
184 printf("<INPUT TYPE=submit VALUE=\"%s\">",
185 _("Search"));
186 printf("&nbsp;|&nbsp;<INPUT TYPE=submit VALUE=\"%s\" NAME=listall>\n",
2f73dc15 187 _("List all"));
9487c2ff 188 print "</TD><TD ALIGN=right>\n";
189 printf("<INPUT TYPE=button VALUE=\"%s\" onclick=\"parent.close();\">\n",
2f73dc15 190 _("Close window"));
9487c2ff 191 print "</TD></TR></TABLE></FORM>\n";
192 } else
193
194 // Show personal addressbook
195 if($show == 'blank' || !empty($listall)) {
196
197 if($backend != -1 || $show == 'blank') {
198 if($show == 'blank')
199 $backend = $abook->localbackend;
200
201 $res = $abook->list_addr($backend);
202
203 if(is_array($res)) {
204 display_result($res, false);
205 } else {
206 printf("<P ALIGN=center><STRONG>"._("Unable to list addresses from %s").
207 "</STRONG></P>\n", $abook->backends[$backend]->sname);
208 }
209
210 } else {
211 $res = $abook->list_addr();
212 display_result($res, true);
213 }
214
215 } else
216
217 // Do the search
218 if(!empty($query) && empty($listall)) {
219
220 if($backend == -1) {
221 $res = $abook->s_search($query);
222 } else {
223 $res = $abook->s_search($query, $backend);
224 }
225
226 if(!is_array($res)) {
227 printf("<P ALIGN=center><B><BR>%s:<br>%s</B></P>\n</BODY></HTML>\n",
228 _("Your search failed with the following error(s)"),
229 $abook->error);
230 exit;
231 }
232
233 if(sizeof($res) == 0) {
234 printf("<P ALIGN=center><BR><B>%s.</B></P>\n</BODY></HTML>\n",
235 _("No persons matching your search was found"));
236 exit;
237 }
238
239 display_result($res);
240 }
241
242 echo "</BODY></HTML>\n";
243
244?>