added subpackage tag.
[squirrelmail.git] / src / addrbook_search.php
CommitLineData
5100704d 1<?php
895905c0 2
35586184 3/**
4 * addrbook_search.php
5 *
82d304a0 6 * Copyright (c) 1999-2004 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 *
30967a1e 15 * @version $Id$
8f6f9ba5 16 * @package squirrelmail
de00443c 17 * @subpackage addressbook
35586184 18 */
19
8f6f9ba5 20/**
21 * Path for SquirrelMail required files.
30967a1e 22 * @ignore
8f6f9ba5 23 */
86725763 24define('SM_PATH','../');
25
8f6f9ba5 26/** SquirrelMail required files. */
08185f2a 27require_once(SM_PATH . 'include/validate.php');
86725763 28require_once(SM_PATH . 'functions/strings.php');
1e12d1ff 29require_once(SM_PATH . 'functions/global.php');
86725763 30require_once(SM_PATH . 'functions/html.php');
62366261 31require_once(SM_PATH . 'functions/forms.php');
f740c049 32
8f6f9ba5 33/** lets get the global vars we may need */
1e12d1ff 34sqgetGlobalVar('key', $key, SQ_COOKIE);
35sqgetGlobalVar('username', $username, SQ_SESSION);
36sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
37sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
38
39sqgetGlobalVar('show' , $show);
40sqgetGlobalVar('query', $query, SQ_POST);
41sqgetGlobalVar('listall', $listall, SQ_POST);
42sqgetGlobalVar('backend', $backend, SQ_POST);
0b97a708 43
8f6f9ba5 44/**
45 * Function to include JavaScript code
46 * @return void
47 */
b0c39665 48function insert_javascript() {
49 ?>
6fd95361 50 <script language="Javascript"><!--
87332e20 51
b0c39665 52 function to_and_close($addr) {
53 to_address($addr);
54 parent.close();
55 }
5100704d 56
b0c39665 57 function to_address($addr) {
58 var prefix = "";
59 var pwintype = typeof parent.opener.document.compose;
dfadb553 60
b0c39665 61 $addr = $addr.replace(/ {1,35}$/, "");
9487c2ff 62
b0c39665 63 if (pwintype != "undefined") {
64 if (parent.opener.document.compose.send_to.value) {
65 prefix = ", ";
66 parent.opener.document.compose.send_to.value =
67 parent.opener.document.compose.send_to.value + ", " + $addr;
68 } else {
69 parent.opener.document.compose.send_to.value = $addr;
70 }
71 }
5100704d 72 }
5100704d 73
b0c39665 74 function cc_address($addr) {
75 var prefix = "";
76 var pwintype = typeof parent.opener.document.compose;
5100704d 77
b0c39665 78 $addr = $addr.replace(/ {1,35}$/, "");
dfadb553 79
b0c39665 80 if (pwintype != "undefined") {
81 if (parent.opener.document.compose.send_to_cc.value) {
82 prefix = ", ";
83 parent.opener.document.compose.send_to_cc.value =
84 parent.opener.document.compose.send_to_cc.value + ", " + $addr;
85 } else {
86 parent.opener.document.compose.send_to_cc.value = $addr;
87 }
88 }
5100704d 89 }
5100704d 90
b0c39665 91 function bcc_address($addr) {
92 var prefix = "";
93 var pwintype = typeof parent.opener.document.compose;
9487c2ff 94
b0c39665 95 $addr = $addr.replace(/ {1,35}$/, "");
5100704d 96
b0c39665 97 if (pwintype != "undefined") {
98 if (parent.opener.document.compose.send_to_bcc.value) {
99 prefix = ", ";
100 parent.opener.document.compose.send_to_bcc.value =
101 parent.opener.document.compose.send_to_bcc.value + ", " + $addr;
102 } else {
103 parent.opener.document.compose.send_to_bcc.value = $addr;
104 }
105 }
5100704d 106 }
5100704d 107
6fd95361 108// --></script>
9487c2ff 109<?php
b0c39665 110} /* End of included JavaScript */
2f73dc15 111
112
8f6f9ba5 113/**
114 * List search results
115 * @param array $res Array of search results
116 * @param bool $includesource [Default=true]
117 * @return void
118 */
b0c39665 119function display_result($res, $includesource = true) {
120 global $color;
9487c2ff 121
b0c39665 122 if(sizeof($res) <= 0) return;
9487c2ff 123
b0c39665 124 insert_javascript();
9487c2ff 125
b0c39665 126 $line = 0;
ac987a56 127 echo html_tag( 'table', '', 'center', '', 'border="0" width="98%"' ) .
128 html_tag( 'tr', '', '', $color[9] ) .
129 html_tag( 'th', '&nbsp;', 'left' ) .
130 html_tag( 'th', '&nbsp;' . _("Name"), 'left' ) .
131 html_tag( 'th', '&nbsp;' . _("E-mail"), 'left' ) .
132 html_tag( 'th', '&nbsp;' . _("Info"), 'left' );
b0c39665 133
134 if ($includesource) {
ac987a56 135 echo html_tag( 'th', '&nbsp;' . _("Source"), 'left', 'width="10%"' );
b0c39665 136 }
ac987a56 137 echo "</tr>\n";
9487c2ff 138
b0c39665 139 while (list($undef, $row) = each($res)) {
4e160237 140 $email = htmlspecialchars(addcslashes(AddressBook::full_address($row), "'"), ENT_QUOTES);
93adc018 141 if ($line % 2) {
142 $tr_bgcolor = $color[12];
143 } else {
144 $tr_bgcolor = $color[4];
145 }
ac987a56 146 echo html_tag( 'tr', '', '', $tr_bgcolor, 'nowrap' ) .
147 html_tag( 'td',
b0c39665 148 '<small><a href="javascript:to_address(' .
c7b99f3b 149 "'" . $email . "');\">"._("To")."</a> | " .
b0c39665 150 '<a href="javascript:cc_address(' .
c7b99f3b 151 "'" . $email . "');\">"._("Cc")."</a> | " .
b0c39665 152 '<a href="javascript:bcc_address(' .
c7b99f3b 153 "'" . $email . "');\">"._("Bcc")."</a></small>",
ac987a56 154 'center', '', 'valign="top" width="5%" nowrap' ) .
4e160237 155 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['name']), 'left', '', 'valign="top" nowrap' ) .
ac987a56 156 html_tag( 'td', '&nbsp;' .
b22c4e16 157 '<a href="javascript:to_and_close(' .
39bfea8f 158 "'" . $email . "');\">" . htmlspecialchars($row['email']) . '</a>'
ac987a56 159 , 'left', '', 'valign="top"' ) .
4e160237 160 html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" nowrap' );
b0c39665 161 if ($includesource) {
ac987a56 162 echo html_tag( 'td', '&nbsp;' . $row['source'], 'left', '', 'valign="top" nowrap' );
9487c2ff 163 }
b0c39665 164
ac987a56 165 echo "</tr>\n";
b0c39665 166 $line++;
9487c2ff 167 }
ac987a56 168 echo '</table>';
b0c39665 169}
9487c2ff 170
b0c39665 171/* ================= End of functions ================= */
9487c2ff 172
b0c39665 173require_once('../functions/strings.php');
174require_once('../functions/addressbook.php');
9487c2ff 175
b0c39665 176displayHtmlHeader();
9487c2ff 177
b0c39665 178/* Initialize vars */
179if (!isset($query)) { $query = ''; }
180if (!isset($show)) { $show = ''; }
5a1ae5ca 181if (!isset($backend)) { $backend = ''; }
9487c2ff 182
b0c39665 183/* Choose correct colors for top and bottom frame */
b22c4e16 184if ($show == 'form' && !isset($listall)) {
39bfea8f 185 echo '<body text="' . $color[6] . '" bgcolor="' . $color[3] . '" ' .
186 'link="' . $color[6] . '" vlink="' . $color[6] . '" ' .
187 'alink="' . $color[6] . '" ' .
b0c39665 188 'OnLoad="document.sform.query.focus();">';
189} else {
39bfea8f 190 echo '<body text="' . $color[8] . '" bgcolor="' . $color[4] . '" ' .
191 'link="' . $color[7] . '" vlink="' . $color[7] . '" ' .
192 'alink="' . $color[7] . "\">\n";
b0c39665 193}
9487c2ff 194
b0c39665 195/* Empty search */
196if (empty($query) && empty($show) && empty($listall)) {
39bfea8f 197 echo html_tag( 'p', '<br />' .
62366261 198 _("No persons matching your search were found"),
ac987a56 199 'center' ) .
716df0e3 200 "\n</body></html>\n";
b0c39665 201 exit;
202}
9487c2ff 203
b0c39665 204/* Initialize addressbook */
205$abook = addressbook_init();
9487c2ff 206
b0c39665 207/* Create search form */
0397590e 208if ($show == 'form' && empty($listall)) {
39bfea8f 209 echo '<form name="sform" target="abookres" action="addrbook_search.php'.
134e4174 210 '" method="post">' . "\n" .
ac987a56 211 html_tag( 'table', '', '', '', 'border="0" width="100%" height="100%"' ) .
212 html_tag( 'tr' ) .
213 html_tag( 'td', ' <strong>' . _("Search for") . "</strong>\n", 'left', '', 'nowrap valign="middle" width="10%"' ) .
214 html_tag( 'td', '', 'left', '', '' ) .
134e4174 215 addInput('query', $query, 28);
b0c39665 216
217 /* List all backends to allow the user to choose where to search */
218 if ($abook->numbackends > 1) {
39bfea8f 219 echo '<strong>' . _("in") . '</strong>&nbsp;'."\n".
134e4174 220 $selopts['-1'] = _("All address books");
221
b0c39665 222 $ret = $abook->get_backend_list();
223 while (list($undef,$v) = each($ret)) {
62366261 224 $selopts[$v->bnum] = $v->sname;
9487c2ff 225 }
134e4174 226 echo addSelect('backend', $selopts, '-1', TRUE);
b0c39665 227 } else {
62366261 228 echo addHidden('backend', '-1');
b0c39665 229 }
9487c2ff 230
ac987a56 231 echo '</td></tr>' .
232 html_tag( 'tr',
233 html_tag( 'td', '', 'left' ) .
234 html_tag( 'td',
39bfea8f 235 '<input type="submit" value="' . _("Search") . '" name="show" />' .
236 '&nbsp;|&nbsp;<input type="submit" value="' . _("List all") .
237 '" name="listall" />' . "\n" .
238 '&nbsp;|&nbsp;<input type="button" value="' . _("Close") .
239 '" onclick="parent.close();" />' . "\n" ,
ac987a56 240 'left' )
241 ) .
242 '</table></form>' . "\n";
b0c39665 243} else {
9487c2ff 244
b0c39665 245 /* Show personal addressbook */
db48e3f5 246 if ($show == 'blank' && empty($listall)) {
9487c2ff 247
248 if($backend != -1 || $show == 'blank') {
b0c39665 249 if ($show == 'blank') {
9487c2ff 250 $backend = $abook->localbackend;
b0c39665 251 }
9487c2ff 252 $res = $abook->list_addr($backend);
253
254 if(is_array($res)) {
a10110a5 255 usort($res,'alistcmp');
9487c2ff 256 display_result($res, false);
257 } else {
ac987a56 258 echo html_tag( 'p', '<strong>' .
259 sprintf(_("Unable to list addresses from %s"),
260 $abook->backends[$backend]->sname) . '</strong>' ,
261 'center' ) . "\n";
9487c2ff 262 }
9487c2ff 263 } else {
b0c39665 264 $res = $abook->list_addr();
a10110a5 265 usort($res,'alistcmp');
b0c39665 266 display_result($res, true);
9487c2ff 267 }
268
b0c39665 269 } else {
db48e3f5 270 if( !empty( $listall ) ){
271 $query = '*';
272 }
9487c2ff 273
b0c39665 274 /* Do the search */
db48e3f5 275 if (!empty($query)) {
9487c2ff 276
b0c39665 277 if($backend == -1) {
278 $res = $abook->s_search($query);
279 } else {
280 $res = $abook->s_search($query, $backend);
281 }
9487c2ff 282
b0c39665 283 if (!is_array($res)) {
39bfea8f 284 echo html_tag( 'p', '<b><br />' .
ac987a56 285 _("Your search failed with the following error(s)") .
39bfea8f 286 ':<br />' . $abook->error . "</b>\n" ,
ac987a56 287 'center' ) .
39bfea8f 288 "\n</body></html>\n";
b0c39665 289 exit;
290 }
9487c2ff 291
b0c39665 292 if (sizeof($res) == 0) {
39bfea8f 293 echo html_tag( 'p', '<br /><b>' .
c44d8967 294 _("No persons matching your search were found") . "</b>\n" ,
ac987a56 295 'center' ) .
39bfea8f 296 "\n</body></html>\n";
b0c39665 297 exit;
298 }
9487c2ff 299
b0c39665 300 display_result($res);
301 }
9487c2ff 302 }
303
b0c39665 304}
35586184 305?>
6fd95361 306</body></html>