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