updated docs
[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
f740c049 17 include("../src/validate.php");
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 = ", ";
38 parent.opener.document.compose.send_to.value =
dfadb553 39 parent.opener.document.compose.send_to.value + ", " + $addr;
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 = ", ";
56 parent.opener.document.compose.send_to_cc.value =
57 parent.opener.document.compose.send_to_cc.value + ", " + $addr;
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;
dfadb553 67
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 = ", ";
a4fe507d 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
83<?php
2f73dc15 84 } // End of included JavaScript
85
86
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;
c9e9b23c 96 print '<TABLE BORDER="0" WIDTH="98%" ALIGN=center>';
2f73dc15 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 print "</TR>\n";
106
fb16d219 107 while(list($undef, $row) = each($res)) {
2c5d4cd4 108 printf("<tr%s nowrap><td valign=top nowrap align=center width=\"5%%\">".
2f73dc15 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>".
2c5d4cd4 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;",
2f73dc15 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)
2c5d4cd4 121 printf("<td nowrap valign=top>&nbsp;%s", $row["source"]);
2f73dc15 122
123 print "</TR>\n";
124 $line++;
125 }
c9e9b23c 126 print '</TABLE>';
2f73dc15 127 }
128
129 /* ================= End of functions ================= */
130
f740c049 131 include("../functions/strings.php");
132 include('../functions/i18n.php');
133 include('../config/config.php');
134 include('../functions/array.php');
135 include('../functions/strings.php');
136 include('../functions/page_header.php');
137 include('../functions/addressbook.php');
c9e9b23c 138 include('../src/load_prefs.php');
2f73dc15 139
140 displayHtmlHeader();
141
12b4ef8b 142 // Initialize vars
143 if(!isset($query)) $query = "";
144 if(!isset($show)) $show = "";
145
2f73dc15 146 // Choose correct colors for top and bottom frame
c9e9b23c 147 if($show == 'form') {
2f73dc15 148 echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" ";
149 echo "LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\" ";
c9e9b23c 150 echo 'OnLoad="document.sform.query.focus();">';
2f73dc15 151 } else {
152 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" ";
153 echo "LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
154 }
155
156 // Empty search
157 if(empty($query) && empty($show) && empty($listall)) {
158 printf("<P ALIGN=center><BR>%s</P>\n</BODY></HTML>\n",
159 _("No persons matching your search was found"));
160 exit;
161 }
162
163 // Initialize addressbook
164 $abook = addressbook_init();
165
166 // Create search form
c9e9b23c 167 if($show == 'form') {
2f73dc15 168 printf("<FORM NAME=sform TARGET=abookres ACTION=\"%s\" METHOD=\"POST\">\n",
169 $PHP_SELF);
c9e9b23c 170 print('<TABLE BORDER="0" WIDTH="100%" HEIGHT="100%">');
171 print("<TR><TD NOWRAP VALIGN=middle>\n");
2f73dc15 172 printf(" <STRONG>%s</STRONG>\n", _("Search for"));
173 printf(" <INPUT TYPE=text NAME=query VALUE=\"%s\" SIZE=26>\n",
174 htmlspecialchars($query));
175
176 // List all backends to allow the user to choose where to search
177 if($abook->numbackends > 1) {
178 printf("<STRONG>%s</STRONG>&nbsp;<SELECT NAME=backend>\n",
179 _("in"));
180 printf("<OPTION VALUE=-1 SELECTED>%s\n",
181 _("All address books"));
182 $ret = $abook->get_backend_list();
fb16d219 183 while(list($undef,$v) = each($ret))
2c5d4cd4 184 printf("<OPTION VALUE=%d>%s\n", $v->bnum, $v->sname);
c9e9b23c 185 print "</SELECT>\n";
2f73dc15 186 } else {
c9e9b23c 187 print "<INPUT TYPE=hidden NAME=backend VALUE=-1>\n";
2f73dc15 188 }
189
190 printf("<INPUT TYPE=submit VALUE=\"%s\">",
191 _("Search"));
192 printf("&nbsp;|&nbsp;<INPUT TYPE=submit VALUE=\"%s\" NAME=listall>\n",
193 _("List all"));
c9e9b23c 194 print "</TD><TD ALIGN=right>\n";
2f73dc15 195 printf("<INPUT TYPE=button VALUE=\"%s\" onclick=\"parent.close();\">\n",
196 _("Close window"));
c9e9b23c 197 print "</TD></TR></TABLE></FORM>\n";
2f73dc15 198 } else
199
200 // Show personal addressbook
c9e9b23c 201 if($show == 'blank' || !empty($listall)) {
2f73dc15 202
c9e9b23c 203 if($backend != -1 || $show == 'blank') {
204 if($show == 'blank')
2f73dc15 205 $backend = $abook->localbackend;
206
207 //printf("<H3 ALIGN=center>%s</H3>\n", $abook->backends[$backend]->sname);
208
209 $res = $abook->list_addr($backend);
210
211 if(is_array($res)) {
212 display_result($res, false);
213 } else {
214 printf("<P ALIGN=center><STRONG>"._("Unable to list addresses from %s").
215 "</STRONG></P>\n", $abook->backends[$backend]->sname);
216 }
217
218 } else {
219 $res = $abook->list_addr();
220 display_result($res, true);
221 }
222
223 } else
5100704d 224
225 // Do the search
2f73dc15 226 if(!empty($query) && empty($listall)) {
227
228 if($backend == -1) {
229 $res = $abook->s_search($query);
230 } else {
231 $res = $abook->s_search($query, $backend);
232 }
5100704d 233
234 if(!is_array($res)) {
2c5d4cd4 235 printf("<P ALIGN=center><B><BR>%s:<br>%s</B></P>\n</BODY></HTML>\n",
a51f9f4b 236 _("Your search failed with the following error(s)"),
237 $abook->error);
238 exit;
239 }
240
241 if(sizeof($res) == 0) {
2c5d4cd4 242 printf("<P ALIGN=center><BR><B>%s.</B></P>\n</BODY></HTML>\n",
5100704d 243 _("No persons matching your search was found"));
244 exit;
245 }
246
2f73dc15 247 display_result($res);
5100704d 248 }
249?>
250
251</BODY></HTML>