Centralized init
[squirrelmail.git] / src / addressbook.php
1 <?php
2
3 /**
4 * addressbook.php
5 *
6 * Manage personal address book.
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 * @subpackage addressbook
13 */
14
15 /**
16 * Include the SquirrelMail initialization file.
17 */
18 include('../include/init.php');
19
20 /** SquirrelMail required files. */
21 /* address book functions */
22 require_once(SM_PATH . 'functions/addressbook.php');
23 /* form functions */
24 require_once(SM_PATH . 'functions/forms.php');
25
26 /** lets get the global vars we may need */
27
28 /* From the address form */
29 sqgetGlobalVar('addaddr', $addaddr, SQ_POST);
30 sqgetGlobalVar('editaddr', $editaddr, SQ_POST);
31 sqgetGlobalVar('deladdr', $deladdr, SQ_POST);
32 sqgetGlobalVar('sel', $sel, SQ_POST);
33 sqgetGlobalVar('oldnick', $oldnick, SQ_POST);
34 sqgetGlobalVar('backend', $backend, SQ_POST);
35 sqgetGlobalVar('doedit', $doedit, SQ_POST);
36
37 /* Get sorting order */
38 $abook_sort_order = get_abook_sort();
39
40 /* Create page header before addressbook_init in order to display error messages correctly. */
41 displayPageHeader($color, 'None');
42
43 /* Open addressbook with error messages on.
44 remote backends (LDAP) are enabled because they can be used. (list_addr function)
45 */
46 $abook = addressbook_init(true, false);
47
48 // FIXME: do we have to stop use of address book, when localbackend is not present.
49 if($abook->localbackend == 0) {
50 plain_error_message(
51 _("No personal address book is defined. Contact administrator."),
52 $color);
53 exit();
54 }
55
56 $defdata = array();
57 $formerror = '';
58 $abortform = false;
59 $showaddrlist = true;
60 $defselected = array();
61 $form_url = 'addressbook.php';
62
63 /* Handle user's actions */
64 if(sqgetGlobalVar('REQUEST_METHOD', $req_method, SQ_SERVER) && $req_method == 'POST') {
65
66 /**************************************************
67 * Add new address *
68 **************************************************/
69 if (isset($addaddr)) {
70 if (isset($backend)) {
71 $r = $abook->add($addaddr, $backend);
72 } else {
73 $r = $abook->add($addaddr, $abook->localbackend);
74 }
75
76 /* Handle error messages */
77 if (!$r) {
78 /* Remove backend name from error string */
79 $errstr = $abook->error;
80 $errstr = ereg_replace('^\[.*\] *', '', $errstr);
81
82 $formerror = $errstr;
83 $showaddrlist = false;
84 $defdata = $addaddr;
85 }
86 } else {
87
88 /************************************************
89 * Delete address(es) *
90 ************************************************/
91 if ((!empty($deladdr)) && sizeof($sel) > 0) {
92 $orig_sel = $sel;
93 sort($sel);
94
95 /* The selected addresses are identidied by "backend:nickname". *
96 * Sort the list and process one backend at the time */
97 $prevback = -1;
98 $subsel = array();
99 $delfailed = false;
100
101 for ($i = 0 ; (($i < sizeof($sel)) && !$delfailed) ; $i++) {
102 list($sbackend, $snick) = explode(':', $sel[$i]);
103
104 /* When we get to a new backend, process addresses in *
105 * previous one. */
106 if ($prevback != $sbackend && $prevback != -1) {
107
108 $r = $abook->remove($subsel, $prevback);
109 if (!$r) {
110 $formerror = $abook->error;
111 $i = sizeof($sel);
112 $delfailed = true;
113 break;
114 }
115 $subsel = array();
116 }
117
118 /* Queue for processing */
119 array_push($subsel, $snick);
120 $prevback = $sbackend;
121 }
122
123 if (!$delfailed) {
124 $r = $abook->remove($subsel, $prevback);
125 if (!$r) { /* Handle errors */
126 $formerror = $abook->error;
127 $delfailed = true;
128 }
129 }
130
131 if ($delfailed) {
132 $showaddrlist = true;
133 $defselected = $orig_sel;
134 }
135
136 } else {
137
138 /***********************************************
139 * Update/modify address *
140 ***********************************************/
141 if (!empty($editaddr)) {
142 /* Stage one: Copy data into form */
143 if (isset($sel) && sizeof($sel) > 0) {
144 if(sizeof($sel) > 1) {
145 $formerror = _("You can only edit one address at the time");
146 $showaddrlist = true;
147 $defselected = $sel;
148 } else {
149 $abortform = true;
150 list($ebackend, $enick) = explode(':', $sel[0]);
151 $olddata = $abook->lookup($enick, $ebackend);
152 // FIXME: Test if $olddata really contains anything and return an error message if it doesn't
153
154 /* Display the "new address" form */
155 abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$olddata);
156 echo addHidden('oldnick', $olddata['nickname']).
157 addHidden('backend', $olddata['backend']).
158 addHidden('doedit', '1').
159 '</form>';
160 }
161 } elseif ($doedit == 1) {
162 /* Stage two: Write new data */
163 $newdata = $editaddr;
164 $r = $abook->modify($oldnick, $newdata, $backend);
165
166 /* Handle error messages */
167 if (!$r) {
168 /* Display error */
169 echo html_tag( 'table',
170 html_tag( 'tr',
171 html_tag( 'td',
172 "\n". '<strong><font color="' . $color[2] .
173 '">' . _("ERROR") . ': ' . $abook->error . '</font></strong>' ."\n",
174 'center' )
175 ),
176 'center', '', 'width="100%"' );
177
178 /* Display the "new address" form again */
179 abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$newdata);
180 echo addHidden('oldnick', $oldnick).
181 addHidden('backend', $backend).
182 addHidden('doedit', '1').
183 "\n" . '</form>';
184 $abortform = true;
185 }
186 } else {
187 /**
188 * $editaddr is set, but $sel (address selection in address listing)
189 * and $doedit (address edit form) are not set.
190 * Assume that user clicked on "Edit address" without selecting any address.
191 */
192 $formerror = _("Please select address that you want to edit");
193 $showaddrlist = true;
194 } /* end of edit stage detection */
195 } /* !empty($editaddr) - Update/modify address */
196 } /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es) */
197 } /* !empty($addaddr['nickname']) - Add new address */
198
199 // Some times we end output before forms are printed
200 if($abortform) {
201 echo "</body></html>\n";
202 exit();
203 }
204 }
205
206
207 /* =================================================================== *
208 * The following is only executed on a GET request, or on a POST when *
209 * a user is added, or when "delete" or "modify" was successful. *
210 * =================================================================== */
211
212 /* Display error messages */
213 if (!empty($formerror)) {
214 echo html_tag( 'table',
215 html_tag( 'tr',
216 html_tag( 'td',
217 "\n". '<br /><strong><font color="' . $color[2] .
218 '">' . _("ERROR") . ': ' . $formerror . '</font></strong>' ."\n",
219 'center' )
220 ),
221 'center', '', 'width="100%"' );
222 }
223
224
225 /* Display the address management part */
226 if ($showaddrlist) {
227 /* Get and sort address list */
228 $alist = $abook->list_addr();
229 if(!is_array($alist)) {
230 plain_error_message($abook->error, $color);
231 exit;
232 }
233
234 usort($alist,'alistcmp');
235 $prevbackend = -1;
236 $headerprinted = false;
237
238 echo html_tag( 'p', '<a href="#AddAddress">' . _("Add address") . '</a>', 'center' ) . "\n";
239
240 /* List addresses */
241 if (count($alist) > 0) {
242 echo addForm($form_url, 'post');
243 if ($abook->add_extra_field) {
244 $abook_fields = 6;
245 } else {
246 $abook_fields = 5;
247 }
248 while(list($undef,$row) = each($alist)) {
249
250 /* New table header for each backend */
251 if($prevbackend != $row['backend']) {
252 if($prevbackend < 0) {
253 echo html_tag( 'table',
254 html_tag( 'tr',
255 html_tag( 'td',
256 addSubmit(_("Edit selected"), 'editaddr').
257 addSubmit(_("Delete selected"), 'deladdr'),
258 'center', '', "colspan=\"$abook_fields\"" )
259 ) .
260 html_tag( 'tr',
261 html_tag( 'td', '&nbsp;<br />', 'center', '', "colspan=\"$abook_fields\"" )
262 ),
263 'center' );
264 echo "\n<!-- start of address book table -->\n" .
265 html_tag( 'table', '', 'center', '', 'border="0" cellpadding="1" cellspacing="0" width="90%"' ) .
266 html_tag( 'tr', "\n" .
267 html_tag( 'th', '&nbsp;', 'left', '', 'width="1%"' ) . "\n" .
268 html_tag( 'th', _("Nickname") .
269 show_abook_sort_button($abook_sort_order, _("sort by nickname"), 0, 1),
270 'left', '', 'width="1%"' ) . "\n" .
271 html_tag( 'th', _("Name") .
272 show_abook_sort_button($abook_sort_order, _("sort by name"), 2, 3),
273 'left', '', 'width="1%"' ) . "\n" .
274 html_tag( 'th', _("E-mail") .
275 show_abook_sort_button($abook_sort_order, _("sort by email"), 4, 5),
276 'left', '', 'width="1%"' ) . "\n" .
277 html_tag( 'th', _("Info") .
278 show_abook_sort_button($abook_sort_order, _("sort by info"), 6, 7),
279 'left', '', 'width="1%"' ) .
280 ($abook->add_extra_field ? html_tag( 'th', '&nbsp;','left', '', 'width="1%"'): '') .
281 "\n",
282 '', $color[9] ) . "\n";
283 }
284
285 // Separate different backends with <hr />
286 if($prevbackend > 0) {
287 echo html_tag( 'tr',
288 html_tag( 'td', "<hr />", 'center', '' ,"colspan=\"$abook_fields\"" )
289 );
290 }
291
292 // Print backend name
293 echo html_tag( 'tr',
294 html_tag( 'td', "\n" . '<strong>' . $row['source'] . '</strong>' . "\n", 'center', $color[0] ,"colspan=\"$abook_fields\"" )
295 );
296
297 $line = 0;
298 $headerprinted = true;
299 } /* End of header */
300
301 $prevbackend = $row['backend'];
302
303 /* Check if this user is selected */
304 $selected = in_array($row['backend'] . ':' . $row['nickname'], $defselected);
305
306 /* Print one row, with alternating color */
307 if ($line % 2) {
308 $tr_bgcolor = $color[12];
309 } else {
310 $tr_bgcolor = $color[4];
311 }
312 echo html_tag( 'tr', '', '', $tr_bgcolor);
313 if ($abook->backends[$row['backend']]->writeable) {
314 echo html_tag( 'td',
315 '<small>' .
316 addCheckBox('sel[]', $selected, $row['backend'].':'.$row['nickname']).
317 '</small>' ,
318 'center', '', 'valign="top" width="1%"' );
319 } else {
320 echo html_tag( 'td',
321 '&nbsp;' ,
322 'center', '', 'valign="top" width="1%"' );
323 }
324 echo html_tag( 'td',
325 '&nbsp;' . htmlspecialchars($row['nickname']) . '&nbsp;',
326 'left', '', 'valign="top" width="1%" style="white-space: nowrap;"' );
327
328 // different full name display formating for Japanese translation
329 if ($squirrelmail_language == 'ja_JP') {
330 /*
331 * translation uses euc-jp character set internally.
332 * htmlspecialchars() should not break any characters.
333 */
334 echo html_tag( 'td',
335 '&nbsp;' . htmlspecialchars($row['lastname']) . ' ' . htmlspecialchars($row['firstname']) . '&nbsp;',
336 'left', '', 'valign="top" width="1%" style="white-space: nowrap;"' );
337 } else {
338 echo html_tag( 'td',
339 '&nbsp;' . htmlspecialchars($row['name']) . '&nbsp;',
340 'left', '', 'valign="top" width="1%" style="white-space: nowrap;"' );
341 }
342
343 // email address column
344 echo html_tag( 'td', '', 'left', '', 'valign="top" width="1%" style="white-space: nowrap;"' ) . '&nbsp;';
345 $email = $abook->full_address($row);
346 echo makeComposeLink('src/compose.php?send_to='.rawurlencode($email),
347 htmlspecialchars($row['email'])).
348 '&nbsp;</td>'."\n";
349
350 // info column
351 echo html_tag( 'td', '&nbsp;' . htmlspecialchars($row['label']) . '&nbsp;', 'left', '', 'valign="top" width="1%"' );
352
353 // add extra column if third party backend needs it
354 if ($abook->add_extra_field) {
355 echo html_tag( 'td',
356 '&nbsp;' . (isset($row['extra']) ? $row['extra'] : '') . '&nbsp;',
357 'left', '', 'valign="top" width="1%"' );
358 }
359 echo "</tr>\n";
360 $line++;
361 }
362 echo "</table>" .
363 "\n<!-- end of address book table -->\n";
364
365 /* End of list. Add edit/delete select buttons */
366 if ($headerprinted) {
367 echo html_tag( 'table',
368 html_tag( 'tr',
369 html_tag( 'td',
370 addSubmit(_("Edit selected"), 'editaddr') .
371 addSubmit(_("Delete selected"), 'deladdr'),
372 'center', '', "colspan=\"$abook_fields\"" )
373 ),
374 'center' );
375 }
376 echo "</form>\n";
377 }
378 } /* end of addresslist */
379
380
381 /* Display the "new address" form */
382 echo '<a name="AddAddress"></a>' . "\n";
383 abook_create_form($form_url,'addaddr',_("Add to address book"),_("Add address"),$defdata);
384 echo "</form>\n";
385
386 /* Hook for extra address book blocks */
387 echo "<!-- start of addressbook_bottom hook-->\n";
388 do_hook('addressbook_bottom');
389 echo "\n<!-- end of addressbook_bottom hook-->\n";
390 $oTemplate->display('footer.tpl');
391 ?>