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