required file already included by template class => it raised a fatal error.
[squirrelmail.git] / src / addressbook.php
CommitLineData
abdfb4d0 1<?php
134e4174 2
35586184 3/**
4 * addressbook.php
5 *
35586184 6 * Manage personal address book.
7 *
47ccfad4 8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
de00443c 12 * @subpackage addressbook
35586184 13 */
14
30967a1e 15/**
202bcbcc 16 * Include the SquirrelMail initialization file.
30967a1e 17 */
202bcbcc 18include('../include/init.php');
86725763 19
8f6f9ba5 20/** SquirrelMail required files. */
df4162cb 21/* address book functions */
202bcbcc 22require_once(SM_PATH . 'functions/addressbook.php');
3f92c0c7 23include_once(SM_PATH . 'templates/util_addressbook.php');
24
df4162cb 25/* form functions */
202bcbcc 26require_once(SM_PATH . 'functions/forms.php');
ffd8224c 27
8f6f9ba5 28/** lets get the global vars we may need */
0b97a708 29
30/* From the address form */
a71b394e 31sqgetGlobalVar('addaddr', $addaddr, SQ_POST);
32sqgetGlobalVar('editaddr', $editaddr, SQ_POST);
33sqgetGlobalVar('deladdr', $deladdr, SQ_POST);
34sqgetGlobalVar('sel', $sel, SQ_POST);
35sqgetGlobalVar('oldnick', $oldnick, SQ_POST);
36sqgetGlobalVar('backend', $backend, SQ_POST);
37sqgetGlobalVar('doedit', $doedit, SQ_POST);
0b97a708 38
08e71631 39/* Get sorting order */
40$abook_sort_order = get_abook_sort();
41
703fa6b5 42/* Create page header before addressbook_init in order to display error messages correctly. */
43displayPageHeader($color, 'None');
44
de00443c 45/* Open addressbook with error messages on.
46 remote backends (LDAP) are enabled because they can be used. (list_addr function)
47*/
48$abook = addressbook_init(true, false);
ced653f3 49
50// FIXME: do we have to stop use of address book, when localbackend is not present.
daba719e 51if($abook->localbackend == 0) {
a71b394e 52 plain_error_message(_("No personal address book is defined. Contact administrator."));
daba719e 53 exit();
54}
ffd8224c 55
a71b394e 56$current_backend = $abook->localbackend;
57if (sqgetGlobalVar('new_bnum',$new_backend,SQ_POST) && array_key_exists($new_backend,$abook->backends)) {
58 $current_backend = (int) $new_backend;
59}
60
61$abook_selection = '&nbsp;';
62$list_backends = array();
63if (count($abook->backends) > 1) {
64 foreach($abook->get_backend_list() as $oBackend) {
65 if ($oBackend->listing) {
66 $list_backends[$oBackend->bnum]=$oBackend->sname;
67 }
68 }
69 if (count($list_backends)>1) {
70 $abook_selection = addSelect('new_bnum',$list_backends,$current_backend,true)
71 .addSubmit(_("Change"),'change_abook');
72 }
73}
74
daba719e 75$defdata = array();
76$formerror = '';
77$abortform = false;
78$showaddrlist = true;
79$defselected = array();
07dcee9f 80$form_url = 'addressbook.php';
daba719e 81
f6c945b9 82/* Handle user's actions */
1e12d1ff 83if(sqgetGlobalVar('REQUEST_METHOD', $req_method, SQ_SERVER) && $req_method == 'POST') {
daba719e 84
f6c945b9 85 /**************************************************
86 * Add new address *
87 **************************************************/
39b26252 88 if (isset($addaddr)) {
a123157f 89 if (isset($backend)) {
90 $r = $abook->add($addaddr, $backend);
91 } else {
92 $r = $abook->add($addaddr, $abook->localbackend);
c6554ec0 93 }
ffd8224c 94
f6c945b9 95 /* Handle error messages */
96 if (!$r) {
97 /* Remove backend name from error string */
ffd8224c 98 $errstr = $abook->error;
99 $errstr = ereg_replace('^\[.*\] *', '', $errstr);
100
101 $formerror = $errstr;
102 $showaddrlist = false;
103 $defdata = $addaddr;
104 }
daba719e 105 } else {
ffd8224c 106
f6c945b9 107 /************************************************
108 * Delete address(es) *
109 ************************************************/
110 if ((!empty($deladdr)) && sizeof($sel) > 0) {
daba719e 111 $orig_sel = $sel;
112 sort($sel);
113
3c656c5f 114 /* The selected addresses are identidied by "nickname_backend". *
f6c945b9 115 * Sort the list and process one backend at the time */
daba719e 116 $prevback = -1;
117 $subsel = array();
118 $delfailed = false;
119
f6c945b9 120 for ($i = 0 ; (($i < sizeof($sel)) && !$delfailed) ; $i++) {
3c656c5f 121 list($snick, $sbackend) = explode('_', $sel[$i]);
daba719e 122
f6c945b9 123 /* When we get to a new backend, process addresses in *
124 * previous one. */
125 if ($prevback != $sbackend && $prevback != -1) {
daba719e 126
127 $r = $abook->remove($subsel, $prevback);
f6c945b9 128 if (!$r) {
daba719e 129 $formerror = $abook->error;
130 $i = sizeof($sel);
131 $delfailed = true;
132 break;
133 }
134 $subsel = array();
135 }
136
f6c945b9 137 /* Queue for processing */
daba719e 138 array_push($subsel, $snick);
139 $prevback = $sbackend;
ffd8224c 140 }
ffd8224c 141
f6c945b9 142 if (!$delfailed) {
daba719e 143 $r = $abook->remove($subsel, $prevback);
f6c945b9 144 if (!$r) { /* Handle errors */
daba719e 145 $formerror = $abook->error;
146 $delfailed = true;
147 }
ffd8224c 148 }
ffd8224c 149
f6c945b9 150 if ($delfailed) {
daba719e 151 $showaddrlist = true;
152 $defselected = $orig_sel;
ffd8224c 153 }
ffd8224c 154
daba719e 155 } else {
156
f6c945b9 157 /***********************************************
158 * Update/modify address *
159 ***********************************************/
160 if (!empty($editaddr)) {
f6c945b9 161 /* Stage one: Copy data into form */
daba719e 162 if (isset($sel) && sizeof($sel) > 0) {
163 if(sizeof($sel) > 1) {
164 $formerror = _("You can only edit one address at the time");
165 $showaddrlist = true;
166 $defselected = $sel;
167 } else {
168 $abortform = true;
3c656c5f 169 list($enick, $ebackend) = explode('_', current($sel));
daba719e 170 $olddata = $abook->lookup($enick, $ebackend);
5b61a40d 171 // Test if $olddata really contains anything and return an error message if it doesn't
172 if (!$olddata) {
173 error_box(nl2br(htmlspecialchars($abook->error)));
174 } else {
175 /* Display the "new address" form */
176 abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$olddata);
177 echo addHidden('oldnick', $olddata['nickname']).
178 addHidden('backend', $olddata['backend']).
179 addHidden('doedit', '1').
180 '</form>';
181 }
daba719e 182 }
3e87f870 183 } elseif ($doedit == 1) {
f6c945b9 184 /* Stage two: Write new data */
3e87f870 185 $newdata = $editaddr;
186 $r = $abook->modify($oldnick, $newdata, $backend);
daba719e 187
3e87f870 188 /* Handle error messages */
189 if (!$r) {
190 /* Display error */
3c656c5f 191 plain_error_message( nl2br(htmlspecialchars($abook->error)));
3e87f870 192
193 /* Display the "new address" form again */
194 abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$newdata);
195 echo addHidden('oldnick', $oldnick).
196 addHidden('backend', $backend).
197 addHidden('doedit', '1').
198 "\n" . '</form>';
daba719e 199 $abortform = true;
200 }
3e87f870 201 } else {
202 /**
f8a1ed5a 203 * $editaddr is set, but $sel (address selection in address listing)
204 * and $doedit (address edit form) are not set.
3e87f870 205 * Assume that user clicked on "Edit address" without selecting any address.
206 */
207 $formerror = _("Please select address that you want to edit");
208 $showaddrlist = true;
209 } /* end of edit stage detection */
daba719e 210 } /* !empty($editaddr) - Update/modify address */
211 } /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es) */
212 } /* !empty($addaddr['nickname']) - Add new address */
213
214 // Some times we end output before forms are printed
215 if($abortform) {
056a005c 216 echo "</body></html>\n";
217 exit();
ffd8224c 218 }
daba719e 219}
ffd8224c 220
221
f6c945b9 222/* =================================================================== *
223 * The following is only executed on a GET request, or on a POST when *
224 * a user is added, or when "delete" or "modify" was successful. *
225 * =================================================================== */
ffd8224c 226
f6c945b9 227/* Display error messages */
228if (!empty($formerror)) {
a71b394e 229 plain_error_message(nl2br(htmlspecialchars($formerror)));
daba719e 230}
ffd8224c 231
232
f6c945b9 233/* Display the address management part */
a71b394e 234$addresses = array();
235while (list($k, $backend) = each ($abook->backends)) {
236 $a = array();
237 $a['BackendID'] = $backend->bnum;
238 $a['BackendSource'] = $backend->sname;
239 $a['BackendWritable'] = $backend->writeable;
240 $a['Addresses'] = array();
241
242 $alist = $abook->list_addr($backend->bnum);
5b1c13d3 243
244 /* check return (array with data or boolean false) */
245 if (is_array($alist)) {
246 usort($alist,'alistcmp');
247
248 $a['Addresses'] = formatAddressList($alist);
a71b394e 249
5b1c13d3 250 $addresses[$backend->bnum] = $a;
251 } else {
252 // list_addr() returns boolean
253 plain_error_message(nl2br(htmlspecialchars($abook->error)));
254 }
a71b394e 255}
daba719e 256
257
a71b394e 258if ($showaddrlist) {
259 echo addForm($form_url, 'post');
260
261 $oTemplate->assign('addresses', $addresses);
262 $oTemplate->assign('current_backend', $current_backend);
263 $oTemplate->assign('backends', $list_backends);
a140c3b1 264 $oTemplate->assign('abook_has_extra_field', $abook->add_extra_field);
a71b394e 265
266 $oTemplate->display('addressbook_list.tpl');
267
6e515418 268//FIXME: Remove HTML from here!
a71b394e 269 echo "</form>\n";
270}
271
f6c945b9 272/* Display the "new address" form */
6e515418 273//FIXME: Remove HTML from here!
c1ac62d4 274echo '<a name="AddAddress"></a>' . "\n";
275abook_create_form($form_url,'addaddr',_("Add to address book"),_("Add address"),$defdata);
fc93f97c 276echo "</form>\n";
daba719e 277
df4162cb 278/* Hook for extra address book blocks */
6e515418 279do_hook('addressbook_bottom', $null);
a71b394e 280
5c4ff7bf 281$oTemplate->display('footer.tpl');
6e515418 282?>