Increment year in copyright notice.
[squirrelmail.git] / src / addrbook_search.php
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 */
24 define('SM_PATH','../');
25
26 /** SquirrelMail required files. */
27 require_once(SM_PATH . 'include/validate.php');
28 require_once(SM_PATH . 'functions/strings.php');
29 require_once(SM_PATH . 'functions/global.php');
30 require_once(SM_PATH . 'functions/html.php');
31 require_once(SM_PATH . 'functions/forms.php');
32
33 /** lets get the global vars we may need */
34 sqgetGlobalVar('key', $key, SQ_COOKIE);
35 sqgetGlobalVar('username', $username, SQ_SESSION);
36 sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
37 sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
38
39 sqgetGlobalVar('show' , $show);
40 sqgetGlobalVar('query', $query, SQ_POST);
41 sqgetGlobalVar('listall', $listall, SQ_POST);
42 sqgetGlobalVar('backend', $backend, SQ_POST);
43
44 /**
45 * Function to include JavaScript code
46 * @return void
47 */
48 function 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 */
119 function 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
173 require_once('../functions/strings.php');
174 require_once('../functions/addressbook.php');
175
176 displayHtmlHeader();
177
178 /* Initialize vars */
179 if (!isset($query)) { $query = ''; }
180 if (!isset($show)) { $show = ''; }
181 if (!isset($backend)) { $backend = ''; }
182
183 /* Choose correct colors for top and bottom frame */
184 if ($show == 'form' && !isset($listall)) {
185 echo '<body text="' . $color[6] . '" bgcolor="' . $color[3] . '" ' .
186 'link="' . $color[6] . '" vlink="' . $color[6] . '" ' .
187 'alink="' . $color[6] . '" ' .
188 'OnLoad="document.sform.query.focus();">';
189 } else {
190 echo '<body text="' . $color[8] . '" bgcolor="' . $color[4] . '" ' .
191 'link="' . $color[7] . '" vlink="' . $color[7] . '" ' .
192 'alink="' . $color[7] . "\">\n";
193 }
194
195 /* Empty search */
196 if (empty($query) && empty($show) && empty($listall)) {
197 echo html_tag( 'p', '<br />' .
198 _("No persons matching your search were found"),
199 'center' ) .
200 "\n</body></html>\n";
201 exit;
202 }
203
204 /* Initialize addressbook */
205 $abook = addressbook_init();
206
207 /* Create search form */
208 if ($show == 'form' && empty($listall)) {
209 echo '<form name="sform" target="abookres" action="addrbook_search.php'.
210 '" method="post">' . "\n" .
211 html_tag( 'table', '', '', '', 'border="0" width="100%" height="100%"' ) .
212 html_tag( 'tr' ) .
213 html_tag( 'td', ' <strong>' . _("Search for") . "</strong>\n", 'left', '', 'style="white-space: nowrap;" valign="middle" width="10%"' ) .
214 html_tag( 'td', '', 'left', '', '' ) .
215 addInput('query', $query, 28);
216
217 /* List all backends to allow the user to choose where to search */
218 if ($abook->numbackends > 1) {
219 echo '<strong>' . _("in") . '</strong>&nbsp;'."\n".
220 $selopts['-1'] = _("All address books");
221
222 $ret = $abook->get_backend_list();
223 while (list($undef,$v) = each($ret)) {
224 $selopts[$v->bnum] = $v->sname;
225 }
226 echo addSelect('backend', $selopts, '-1', TRUE);
227 } else {
228 echo addHidden('backend', '-1');
229 }
230
231 echo '</td></tr>' .
232 html_tag( 'tr',
233 html_tag( 'td', '', 'left' ) .
234 html_tag( 'td',
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" ,
240 'left' )
241 ) .
242 '</table></form>' . "\n";
243 } else {
244
245 /* Show personal addressbook */
246 if ($show == 'blank' && empty($listall)) {
247
248 if($backend != -1 || $show == 'blank') {
249 if ($show == 'blank') {
250 $backend = $abook->localbackend;
251 }
252 $res = $abook->list_addr($backend);
253
254 if(is_array($res)) {
255 usort($res,'alistcmp');
256 display_result($res, false);
257 } else {
258 echo html_tag( 'p', '<strong>' .
259 sprintf(_("Unable to list addresses from %s"),
260 $abook->backends[$backend]->sname) . '</strong>' ,
261 'center' ) . "\n";
262 }
263 } else {
264 $res = $abook->list_addr();
265 usort($res,'alistcmp');
266 display_result($res, true);
267 }
268
269 } else {
270 if( !empty( $listall ) ){
271 $query = '*';
272 }
273
274 /* Do the search */
275 if (!empty($query)) {
276
277 if($backend == -1) {
278 $res = $abook->s_search($query);
279 } else {
280 $res = $abook->s_search($query, $backend);
281 }
282
283 if (!is_array($res)) {
284 echo html_tag( 'p', '<b><br />' .
285 _("Your search failed with the following error(s)") .
286 ':<br />' . $abook->error . "</b>\n" ,
287 'center' ) .
288 "\n</body></html>\n";
289 exit;
290 }
291
292 if (sizeof($res) == 0) {
293 echo html_tag( 'p', '<br /><b>' .
294 _("No persons matching your search were found") . "</b>\n" ,
295 'center' ) .
296 "\n</body></html>\n";
297 exit;
298 }
299
300 display_result($res);
301 }
302 }
303
304 }
305 ?>
306 </body></html>