4361d31f0493e793bd04d69a1bc00998b4ec13be
[squirrelmail.git] / src / addrbook_search_html.php
1 <?php
2
3 /**
4 * addrbook_search_html.php
5 *
6 * Handle addressbook searching with pure html.
7 *
8 * This file is included from compose.php
9 *
10 * @copyright &copy; 1999-2005 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage addressbook
15 */
16
17 /**
18 * Path for SquirrelMail required files.
19 * @ignore
20 */
21 if (! defined('SM_PATH') ) {
22 define('SM_PATH','../');
23 }
24
25 /** SquirrelMail required files. */
26 require_once(SM_PATH . 'include/validate.php');
27 include_once(SM_PATH . 'functions/global.php');
28 include_once(SM_PATH . 'functions/date.php');
29 include_once(SM_PATH . 'functions/display_messages.php');
30 include_once(SM_PATH . 'functions/addressbook.php');
31 include_once(SM_PATH . 'functions/plugin.php');
32 include_once(SM_PATH . 'functions/strings.php');
33 include_once(SM_PATH . 'functions/html.php');
34
35 sqgetGlobalVar('session', $session, SQ_POST);
36 sqgetGlobalVar('mailbox', $mailbox, SQ_POST);
37 if (! sqgetGlobalVar('addrquery', $addrquery, SQ_POST))
38 $addrquery='';
39 sqgetGlobalVar('listall', $listall, SQ_POST);
40 sqgetGlobalVar('backend', $backend, SQ_POST);
41
42 /**
43 * Insert hidden data
44 */
45 function addr_insert_hidden() {
46 global $body, $subject, $send_to, $send_to_cc, $send_to_bcc, $mailbox,
47 $identity, $session;
48
49 if (substr($body, 0, 1) == "\r") {
50 echo addHidden('body', "\n".$body);
51 } else {
52 echo addHidden('body', $body);
53 }
54
55 echo addHidden('session', $session).
56 addHidden('subject', $subject).
57 addHidden('send_to', $send_to).
58 addHidden('send_to_bcc', $send_to_bcc).
59 addHidden('send_to_cc', $send_to_cc).
60 addHidden('identity', $identity).
61 addHidden('mailbox', $mailbox).
62 addHidden('from_htmladdr_search', 'true');
63 }
64
65
66 /**
67 * List search results
68 * @param array $res Array containing results of search
69 * @param bool $includesource UNDOCUMENTED [Default=true]
70 */
71 function addr_display_result($res, $includesource = true) {
72 global $color, $javascript_on, $PHP_SELF, $squirrelmail_language;
73
74 if (sizeof($res) <= 0) return;
75
76 echo addForm($PHP_SELF, 'post', 'addrbook').
77 addHidden('html_addr_search_done', 'true');
78 addr_insert_hidden();
79 $line = 0;
80
81 if ($javascript_on) {
82 print
83 '<script language="JavaScript" type="text/javascript">' .
84 "\n<!-- \n" .
85 "function CheckAll(ch) {\n" .
86 " for (var i = 0; i < document.addrbook.elements.length; i++) {\n" .
87 " if( document.addrbook.elements[i].type == 'checkbox' &&\n" .
88 " document.addrbook.elements[i].name.substr(0,16) == 'send_to_search['+ch ) {\n" .
89 " document.addrbook.elements[i].checked = !(document.addrbook.elements[i].checked);\n".
90 " }\n" .
91 " }\n" .
92 "}\n" .
93 "//-->\n" .
94 "</script>\n";
95 $chk_all = '<a href="#" onclick="CheckAll(\'T\');">' . _("All") . '</a>&nbsp;<font color="'.$color[9].'">'._("To").'</font>'.
96 '&nbsp;&nbsp;'.
97 '<a href="#" onclick="CheckAll(\'C\');">' . _("All") . '</a>&nbsp;<font color="'.$color[9].'">'._("Cc").'</font>'.
98 '&nbsp;&nbsp;'.
99 '<a href="#" onclick="CheckAll(\'B\');">' . _("All") . '</a>';
100 }
101 echo html_tag( 'table', '', 'center', '', 'border="0" width="98%"' ) .
102 html_tag( 'tr', '', '', $color[9] ) .
103 html_tag( 'th', '&nbsp;' . $chk_all, 'left' ) .
104 html_tag( 'th', '&nbsp;' . _("Name"), 'left' ) .
105 html_tag( 'th', '&nbsp;' . _("E-mail"), 'left' ) .
106 html_tag( 'th', '&nbsp;' . _("Info"), 'left' );
107
108 if ($includesource) {
109 echo html_tag( 'th', '&nbsp;' . _("Source"), 'left', '', 'width="10%"' );
110 }
111
112 echo "</tr>\n";
113
114 foreach ($res as $row) {
115 $email = AddressBook::full_address($row);
116 if ($line % 2) {
117 $tr_bgcolor = $color[12];
118 } else {
119 $tr_bgcolor = $color[4];
120 }
121 if ($squirrelmail_language == 'ja_JP')
122 {
123 echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) .
124 html_tag( 'td',
125 '<input type="checkbox" name="send_to_search[T' . $line . ']" value = "' .
126 htmlspecialchars($email) . '" />&nbsp;' . _("To") . '&nbsp;' .
127 '<input type="checkbox" name="send_to_search[C' . $line . ']" value = "' .
128 htmlspecialchars($email) . '" />&nbsp;' . _("Cc") . '&nbsp;' .
129 '<input type="checkbox" name="send_to_search[B' . $line . ']" value = "' .
130 htmlspecialchars($email) . '" />&nbsp;' . _("Bcc") . '&nbsp;' ,
131 'center', '', 'width="5%" style="white-space: nowrap;"' ) .
132 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['lastname']) . ' ' . htmlspecialchars($row['firstname']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
133 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['email']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
134 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['label']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
135 } else {
136 echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) .
137 html_tag( 'td',
138 addCheckBox('send_to_search[T'.$line.']', FALSE, $email).
139 '&nbsp;' . _("To") . '&nbsp;' .
140 addCheckBox('send_to_search[C'.$line.']', FALSE, $email).
141 '&nbsp;' . _("Cc") . '&nbsp;' .
142 addCheckBox('send_to_search[B'.$line.']', FALSE, $email).
143 '&nbsp;' . _("Bcc") . '&nbsp;' ,
144 'center', '', 'width="5%" style="white-space: nowrap;"' ) .
145 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['name']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
146 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['email']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
147 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['label']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
148 }
149
150 if ($includesource) {
151 echo html_tag( 'td', '&nbsp;' . $row['source'] . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
152 }
153 echo "</tr>\n";
154 $line ++;
155 }
156 if ($includesource) { $td_colspan = '5'; } else { $td_colspan = '4'; }
157 echo html_tag( 'tr',
158 html_tag( 'td',
159 '<input type="submit" name="addr_search_done" value="' .
160 _("Use Addresses") . '" /> ' .
161 '<input type="submit" name="addr_search_cancel" value="' .
162 _("Cancel") . '" />',
163 'center', '', 'colspan="'. $td_colspan .'"' )
164 ) .
165 '</table>' .
166 addHidden('html_addr_search_done', '1').
167 '</form>';
168 }
169
170 /* --- End functions --- */
171
172 if ($compose_new_win == '1') {
173 compose_Header($color, $mailbox);
174 }
175 else {
176 displayPageHeader($color, $mailbox);
177 }
178
179 /** set correct value of $default_charset */
180 global $default_charset;
181 set_my_charset();
182
183 /* Initialize addressbook */
184 $abook = addressbook_init();
185
186
187 echo '<br />' .
188 html_tag( 'table',
189 html_tag( 'tr',
190 html_tag( 'td', '<b>' . _("Address Book Search") . '</b>', 'center', $color[0] )
191 ) ,
192 'center', '', 'width="95%" cellpadding="2" cellspacing="2" border="0"' );
193
194
195 /* Search form */
196 echo '<center>' .
197 html_tag( 'table', '', 'center', '', 'border="0"' ) .
198 html_tag( 'tr' ) .
199 html_tag( 'td', '', 'left', '', 'style="white-space: nowrap;" valign="middle"' ) . "\n" .
200 addForm($PHP_SELF.'?html_addr_search=true', 'post', 'f').
201 "\n<center>\n" .
202 ' <nobr><strong>' . _("Search for") . "</strong>\n";
203 addr_insert_hidden();
204 echo addInput('addrquery', $addrquery, 26);
205
206 /* List all backends to allow the user to choose where to search */
207 if (!isset($backend)) { $backend = ''; }
208 if ($abook->numbackends > 1) {
209 echo '<strong>' . _("in") . '</strong>&nbsp;';
210
211 $selopts['-1'] = _("All address books");
212 $ret = $abook->get_backend_list();
213
214 while (list($undef,$v) = each($ret)) {
215 $selopts[$v->bnum] = $v->sname;
216 }
217 echo addSelect('backend', $selopts, $backend, TRUE);
218 } else {
219 echo addHidden('backend', '-1');
220 }
221 if (isset($session)) {
222 echo addHidden('session', $session);
223 }
224
225 echo '<input type="submit" value="' . _("Search") . '" />' .
226 '&nbsp;|&nbsp;<input type="submit" value="' . _("List all") .
227 '" name="listall" />' . "\n" .
228 '</form></center></td></tr></table>' . "\n";
229 echo '</center>';
230 do_hook('addrbook_html_search_below');
231 /* End search form */
232
233 /* List addresses. Show personal addressbook */
234 if ($addrquery == '' || ! empty($listall)) {
235 // TODO: recheck all conditions and simplity if statements
236 if (! isset($backend) || $backend != -1 || $addrquery == '') {
237 if ($addrquery == '' && empty($listall)) {
238 $backend = $abook->localbackend;
239 }
240
241 /* echo '<h3 align="center">' . $abook->backends[$backend]->sname) . "</h3>\n"; */
242
243 $res = $abook->list_addr($backend);
244
245 if (is_array($res)) {
246 usort($res,'alistcmp');
247 addr_display_result($res, false);
248 } else {
249 echo html_tag( 'p', '<strong><br />' .
250 sprintf(_("Unable to list addresses from %s"),
251 $abook->backends[$backend]->sname) . "</strong>\n" ,
252 'center' );
253 }
254
255 } else {
256 $res = $abook->list_addr();
257 usort($res,'alistcmp');
258 addr_display_result($res, true);
259 }
260 echo "\n</body></html>";
261 exit;
262 } elseif (!empty($addrquery)) {
263 /* Do the search */
264 if ($backend == -1) {
265 $res = $abook->s_search($addrquery);
266 } else {
267 $res = $abook->s_search($addrquery, $backend);
268 }
269
270 if (!is_array($res)) {
271 echo html_tag( 'p', '<b><br />' .
272 _("Your search failed with the following error(s)") .
273 ':<br />' . $abook->error . "</b>\n" ,
274 'center' ) .
275 "\n</body></html>\n";
276 } else {
277 if (sizeof($res) == 0) {
278 echo html_tag( 'p', '<br /><b>' .
279 _("No persons matching your search were found") . "</b>\n" ,
280 'center' ) .
281 "\n</body></html>\n";
282 } else {
283 addr_display_result($res);
284 }
285 }
286 } else {
287 // not first time display, not listall and search is empty
288 // TODO: I think, this part of control structure is never reached.
289 echo html_tag( 'p', '<br /><b>' .
290 _("Nothing to search") . "</b>\n" ,
291 'center' );
292 }
293
294 if ($addrquery == '' || sizeof($res) == 0) {
295 echo '<center>'.
296 addForm('compose.php','post','k');
297 addr_insert_hidden();
298 echo '<input type="submit" value="' . _("Return") . '" name="return" />' . "\n" .
299 '</form></center></nobr>';
300 }
301
302 ?>
303 </body></html>