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