Add template for address book listings along with required files
[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');
df4162cb 23/* form functions */
202bcbcc 24require_once(SM_PATH . 'functions/forms.php');
ffd8224c 25
8f6f9ba5 26/** lets get the global vars we may need */
0b97a708 27
28/* From the address form */
a71b394e 29//sqgetGlobalVar('change_abook', $change_abook, SQ_POST);
30sqgetGlobalVar('addaddr', $addaddr, SQ_POST);
31sqgetGlobalVar('editaddr', $editaddr, SQ_POST);
32sqgetGlobalVar('deladdr', $deladdr, SQ_POST);
33sqgetGlobalVar('sel', $sel, SQ_POST);
34sqgetGlobalVar('oldnick', $oldnick, SQ_POST);
35sqgetGlobalVar('backend', $backend, SQ_POST);
36sqgetGlobalVar('doedit', $doedit, SQ_POST);
0b97a708 37
08e71631 38/* Get sorting order */
39$abook_sort_order = get_abook_sort();
40
703fa6b5 41/* Create page header before addressbook_init in order to display error messages correctly. */
42displayPageHeader($color, 'None');
43
de00443c 44/* Open addressbook with error messages on.
45 remote backends (LDAP) are enabled because they can be used. (list_addr function)
46*/
47$abook = addressbook_init(true, false);
ced653f3 48
49// FIXME: do we have to stop use of address book, when localbackend is not present.
daba719e 50if($abook->localbackend == 0) {
a71b394e 51 plain_error_message(_("No personal address book is defined. Contact administrator."));
daba719e 52 exit();
53}
ffd8224c 54
a71b394e 55$current_backend = $abook->localbackend;
56if (sqgetGlobalVar('new_bnum',$new_backend,SQ_POST) && array_key_exists($new_backend,$abook->backends)) {
57 $current_backend = (int) $new_backend;
58}
59
60$abook_selection = '&nbsp;';
61$list_backends = array();
62if (count($abook->backends) > 1) {
63 foreach($abook->get_backend_list() as $oBackend) {
64 if ($oBackend->listing) {
65 $list_backends[$oBackend->bnum]=$oBackend->sname;
66 }
67 }
68 if (count($list_backends)>1) {
69 $abook_selection = addSelect('new_bnum',$list_backends,$current_backend,true)
70 .addSubmit(_("Change"),'change_abook');
71 }
72}
73
daba719e 74$defdata = array();
75$formerror = '';
76$abortform = false;
77$showaddrlist = true;
78$defselected = array();
07dcee9f 79$form_url = 'addressbook.php';
daba719e 80
f6c945b9 81/* Handle user's actions */
a71b394e 82//if(sqgetGlobalVar('REQUEST_METHOD', $req_method, SQ_SERVER) && $req_method == 'POST' && !isset($change_abook)) {
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
f6c945b9 114 /* The selected addresses are identidied by "backend:nickname". *
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++) {
daba719e 121 list($sbackend, $snick) = explode(':', $sel[$i]);
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;
5b61a40d 169 list($ebackend, $enick) = 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 */
191 echo html_tag( 'table',
a2b193bc 192 html_tag( 'tr',
193 html_tag( 'td',
194 "\n". '<strong><font color="' . $color[2] .
195 '">' . _("ERROR") . ': ' . $abook->error . '</font></strong>' ."\n",
196 'center' )
197 ),
198 'center', '', 'width="100%"' );
3e87f870 199
200 /* Display the "new address" form again */
201 abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$newdata);
202 echo addHidden('oldnick', $oldnick).
203 addHidden('backend', $backend).
204 addHidden('doedit', '1').
205 "\n" . '</form>';
daba719e 206 $abortform = true;
207 }
3e87f870 208 } else {
209 /**
f8a1ed5a 210 * $editaddr is set, but $sel (address selection in address listing)
211 * and $doedit (address edit form) are not set.
3e87f870 212 * Assume that user clicked on "Edit address" without selecting any address.
213 */
214 $formerror = _("Please select address that you want to edit");
215 $showaddrlist = true;
216 } /* end of edit stage detection */
daba719e 217 } /* !empty($editaddr) - Update/modify address */
218 } /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es) */
219 } /* !empty($addaddr['nickname']) - Add new address */
220
221 // Some times we end output before forms are printed
222 if($abortform) {
056a005c 223 echo "</body></html>\n";
224 exit();
ffd8224c 225 }
daba719e 226}
ffd8224c 227
228
f6c945b9 229/* =================================================================== *
230 * The following is only executed on a GET request, or on a POST when *
231 * a user is added, or when "delete" or "modify" was successful. *
232 * =================================================================== */
ffd8224c 233
f6c945b9 234/* Display error messages */
235if (!empty($formerror)) {
a71b394e 236 plain_error_message(nl2br(htmlspecialchars($formerror)));
daba719e 237}
ffd8224c 238
239
f6c945b9 240/* Display the address management part */
a71b394e 241$addresses = array();
242while (list($k, $backend) = each ($abook->backends)) {
243 $a = array();
244 $a['BackendID'] = $backend->bnum;
245 $a['BackendSource'] = $backend->sname;
246 $a['BackendWritable'] = $backend->writeable;
247 $a['Addresses'] = array();
248
249 $alist = $abook->list_addr($backend->bnum);
daba719e 250 usort($alist,'alistcmp');
a71b394e 251 $start = 200;
252 $count = count($alist);
253 if ($start >= $count) $start = 0;
254 $alist = array_slice($alist,$start,15);
255
256 while(list($undef,$row) = each($alist)) {
257 $contact = array (
258 'FirstName' => htmlspecialchars($row['firstname']),
259 'LastName' => htmlspecialchars($row['lastname']),
260 'FullName' => htmlspecialchars($row['name']),
261 'NickName' => htmlspecialchars($row['nickname']),
262 'Email' => htmlspecialchars($row['email']),
263 'FullAddress' => htmlspecialchars($abook->full_address($row)),
264 'Info' => htmlspecialchars($row['label']),
265 'Extra' => (isset($row['extra']) ? $row['extra'] : NULL),
266 );
267 $a['Addresses'][] = $contact;
daba719e 268 }
a71b394e 269
270 $addresses[$backend->bnum] = $a;
271}
daba719e 272
273
a71b394e 274if ($showaddrlist) {
275 echo addForm($form_url, 'post');
276
277 $oTemplate->assign('addresses', $addresses);
278 $oTemplate->assign('current_backend', $current_backend);
279 $oTemplate->assign('backends', $list_backends);
280
281 $oTemplate->display('addressbook_list.tpl');
282
283 echo "</form>\n";
284}
285
f6c945b9 286/* Display the "new address" form */
c1ac62d4 287echo '<a name="AddAddress"></a>' . "\n";
288abook_create_form($form_url,'addaddr',_("Add to address book"),_("Add address"),$defdata);
fc93f97c 289echo "</form>\n";
daba719e 290
df4162cb 291/* Hook for extra address book blocks */
8811538c 292echo "<!-- start of addressbook_bottom hook-->\n";
daba719e 293do_hook('addressbook_bottom');
8811538c 294echo "\n<!-- end of addressbook_bottom hook-->\n";
a71b394e 295
5c4ff7bf 296$oTemplate->display('footer.tpl');
a71b394e 297?>