<?php
/**
* addressbook.php
*
* Manage personal address book.
*
* @copyright 1999-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: addressbook.php 14840 2020年01月07日 07:42:38Z pdontthink $
* @package squirrelmail
* @subpackage addressbook
*/
/** This is the addressbook page */
define ('PAGE_NAME', 'addressbook');
/**
* Path for SquirrelMail required files.
* @ignore
*/
/** SquirrelMail required files. */
require_once(SM_PATH . 'include/validate.php');
require_once(SM_PATH . 'functions/global.php');
require_once(SM_PATH . 'functions/display_messages.php');
require_once(SM_PATH . 'functions/addressbook.php');
require_once(SM_PATH . 'functions/strings.php');
require_once(SM_PATH . 'functions/html.php');
require_once(SM_PATH . 'functions/forms.php');
/** lets get the global vars we may need */
$submitted_token = '';
}
/* From the address form */
// renumber $sel array
/* Get sorting order */
/**
* Make an input field
* @param string $label
* @param string $field
* @param string $name
* @param string $size
* @param array $values
* @param string $add
*/
global $color;
$value = ( isset($values[$field]) ? $values[$field] : '');
$td_str =
addInput ($name.
'['.
$field.
']', $value, $size)
. $add ;
html_tag ( 'td', $label .
':', 'right', $color[4]) .
html_tag ( 'td', $td_str, 'left', $color[4])
)
. "\n";
}
/**
* Output form to add and modify address data
*/
function address_form ($name, $submittext, $values =
array()) {
global $color, $squirrelmail_language;
if ($squirrelmail_language == 'ja_JP') {
' <small>' .
_ ("Must be unique") .
'</small>') .
'center', $color[4], 'colspan="2"')
)
, 'center', '', 'border="0" cellpadding="1" width="90%"') ."\n";
} else {
' <small>' .
_ ("Must be unique") .
'</small>') .
'center', $color[4], 'colspan="2"')
)
, 'center', '', 'border="0" cellpadding="1" width="90%"') ."\n";
}
}
/**
* Provides list of writeable backends.
* Works only when address is added ($name='addaddr')
* @param string $name name of form
* @return string html formated backend field (select or hidden)
*/
global $color, $abook;
if ( $name != 'addaddr' ) { return; }
$writeable_abook = 1;
if ( $abook->numbackends > 1 ) {
$backends = $abook->get_backend_list();
$writeable_abooks=array();
while (list
($undef,$v) =
each ($backends)) {
if ($v->writeable) {
// add each backend to array
$writeable_abooks[$v->bnum]=$v->sname;
// save backend number
$writeable_abook=$v->bnum;
}
}
if (count ($writeable_abooks)>
1) {
// we have more than one writeable backend
$ret=
addSelect ('backend',$writeable_abooks,null,true);
html_tag ( 'td', _ ("Add to:"),'right', $color[4] ) .
html_tag ( 'td', $ret, 'left', $color[4] )) .
"\n";
}
}
// Only one backend exists or is writeable.
'center', $color[4], 'colspan="2"')) . "\n";
}
// Create page header before addressbook_init in order to
// display error messages correctly, unless we might be
// redirecting the browser to the compose page.
//
if ((empty($compose_to)) ||
sizeof ($sel) <
1)
/* Open addressbook, with error messages on but without LDAP (the *
* second "true"). Don't need LDAP here anyway */
if($abook->localbackend == 0) {
_ ("No personal address book is defined. Contact administrator."),
$color);
exit();
}
$defdata = array();
$formerror = '';
$abortform = false;
$showaddrlist = true;
$defselected = array();
$form_url = 'addressbook.php';
/* Handle user's actions */
// first, validate security token
/**************************************************
* Add new address *
**************************************************/
if (isset($addaddr)) {
if (isset($backend)) {
$r = $abook->add($addaddr, $backend);
} else {
$r = $abook->add($addaddr, $abook->localbackend);
}
/* Handle error messages */
if (!$r) {
/* Remove backend name from error string */
$errstr = $abook->error;
$formerror = $errstr;
$showaddrlist = false;
$defdata = $addaddr;
}
} else {
/************************************************
* Delete address(es) *
************************************************/
if ((!empty($deladdr)) &&
sizeof ($sel) >
0) {
$orig_sel = $sel;
/* The selected addresses are identidied by "backend:nickname". *
* Sort the list and process one backend at the time */
$prevback = -1;
$subsel = array();
$delfailed = false;
for ($i =
0 ; (($i <
sizeof ($sel)) &&
!$delfailed) ; $i++
) {
list
($sbackend, $snick) =
explode (':', $sel[$i], 2);
/* When we get to a new backend, process addresses in *
* previous one. */
if ($prevback != $sbackend && $prevback != -1) {
$r = $abook->remove($subsel, $prevback);
if (!$r) {
$formerror = $abook->error;
$delfailed = true;
break;
}
$subsel = array();
}
/* Queue for processing */
$prevback = $sbackend;
}
if (!$delfailed) {
$r = $abook->remove($subsel, $prevback);
if (!$r) { /* Handle errors */
$formerror = $abook->error;
$delfailed = true;
}
}
if ($delfailed) {
$showaddrlist = true;
$defselected = $orig_sel;
}
/************************************************
* Compose to selected address(es) *
************************************************/
} else if ((!empty($compose_to)) &&
sizeof ($sel) >
0) {
$orig_sel = $sel;
// The selected addresses are identidied by "backend:nickname"
$lookup_failed = false;
$send_to = '';
for ($i =
0 ; (($i <
sizeof ($sel)) &&
!$lookup_failed) ; $i++
) {
list
($sbackend, $snick) =
explode (':', $sel[$i], 2);
$data = $abook->lookup($snick, $sbackend);
if (!$data) {
$formerror = $abook->error;
$lookup_failed = true;
break;
} else {
$addr = $abook->full_address($data);
if (!empty($addr))
$send_to .= $addr . ', ';
}
}
if ($lookup_failed || empty($send_to)) {
$showaddrlist = true;
$defselected = $sel;
// we skipped the page header above for this functionality, so add it here
}
// send off to compose screen
else {
$send_to =
trim ($send_to, ', ');
exit;
}
} else {
/***********************************************
* Update/modify address *
***********************************************/
if (!empty($editaddr)) {
/* Stage one: Copy data into form */
if (isset
($sel) &&
sizeof ($sel) >
0) {
$formerror =
_ ("You can only edit one address at the time");
$showaddrlist = true;
$defselected = $sel;
} else {
$abortform = true;
list
($ebackend, $enick) =
explode (':', $sel[0], 2);
$olddata = $abook->lookup($enick, $ebackend);
/* Display the "new address" form */
echo
addForm ($form_url, 'post', '', '', '', '', TRUE).
"\n".
'<strong>' .
_ ("Update address") .
'</strong>' .
"\n",
'center', $color[0] )
),
'center', '', 'width="100%" ' );
echo
addHidden ('oldnick', $olddata['nickname']).
'</form>';
}
} elseif ($doedit == 1) {
/* Stage two: Write new data */
$newdata = $editaddr;
$r = $abook->modify($oldnick, $newdata, $backend);
/* Handle error messages */
if (!$r) {
/* Display error */
"\n". '<strong><font color="' . $color[2] .
'center' )
),
'center', '', 'width="100%"' );
/* Display the "new address" form again */
echo
addForm ($form_url, 'post', '', '', '', '', TRUE).
"\n".
'<strong>' .
_ ("Update address") .
'</strong>' .
"\n",
'center', $color[0] )
),
'center', '', 'width="100%"' );
echo
"\n" . '</form>';
$abortform = true;
}
} else {
/**
* $editaddr is set, but $sel (address selection in address listing)
* and $doedit (address edit form) are not set.
* Assume that user clicked on "Edit address" without selecting any address.
*/
$formerror =
_ ("Please select address that you want to edit");
$showaddrlist = true;
} /* end of edit stage detection */
} /* !empty($editaddr) - Update/modify address */
} /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es)
or (!empty($compose_to)) && sizeof($sel) > 0 - Compose to address(es) */
} /* !empty($addaddr['nickname']) - Add new address */
// Some times we end output before forms are printed
if($abortform) {
echo "</body></html>\n";
exit();
}
}
/* =================================================================== *
* The following is only executed on a GET request, or on a POST when *
* a user is added, or when "delete" or "modify" was successful. *
* =================================================================== */
/* Display error messages */
if (!empty($formerror)) {
"\n". '<br /><strong><font color="' . $color[2] .
'center' )
),
'center', '', 'width="100%"' );
}
/* Display the address management part */
if ($showaddrlist) {
/* Get and sort address list */
$alist = $abook->list_addr();
exit;
}
usort ($alist,'alistcmp');
// filter listing as needed
if (!empty($hook_return)) $alist = $hook_return;
$prevbackend = -1;
$headerprinted = false;
$compose_to_in_new_window_javascript = ' onclick="var send_to = \'\'; var f = document.forms.length; var i = 0; var grab_next_hidden = \'\'; while (i < f) { var e = document.forms[i].elements.length; var j = 0; while (j < e) { if (document.forms[i].elements[j].type == \'checkbox\' && document.forms[i].elements[j].checked) { var pos = document.forms[i].elements[j].value.indexOf(\':\'); if (pos >= 1) { grab_next_hidden = document.forms[i].elements[j].value; } } else if (document.forms[i].elements[j].type == \'hidden\' && grab_next_hidden == document.forms[i].elements[j].name) { if (send_to != \'\') { send_to += \', \'; } send_to += document.forms[i].elements[j].value; } j++; } i++; } if (send_to != \'\') { comp_in_new(\''. $base_uri . 'src/compose.php?send_to=\' + send_to); } return false;"';
echo
html_tag ( 'div', '<a href="#AddAddress">' .
_ ("Add address") .
'</a>', 'center' ) .
"\n";
/* List addresses */
if (count ($alist) >
0) {
echo
addForm ($form_url, 'post', 'address_book_form', '', '', '', TRUE);
if ($abook->add_extra_field) {
$abook_fields = 6;
} else {
$abook_fields = 5;
}
$count = 0;
while(list
($undef,$row) =
each ($alist)) {
/* New table header for each backend */
if($prevbackend != $row['backend']) {
if($prevbackend < 0) {
addSubmit (_ ("Compose to selected"), 'compose_to',
($javascript_on && $compose_new_win ? $compose_to_in_new_window_javascript : '')),
'center', '', "colspan=\"$abook_fields\"" )
) .
html_tag ( 'td', ' <br />', 'center', '', 'colspan="5"' )
),
'center' );
}
html_tag ( 'td', "\n" .
'<strong>' .
$row['source'] .
'</strong>' .
"\n", 'center', $color[0], 'colspan="2"' )
).
'center', '', 'width="95%"' ) ."\n".
html_tag ( 'table', '', 'center', '', 'border="0" cellpadding="1" cellspacing="0" width="90%"' ) .
html_tag ( 'th', ' ', 'left', '', 'width="1%"' ) .
'left', '', 'width="10%"' ) .
'left', '', 'width="10%"' ) .
'left', '', 'width="10%"' ) .
'left', '', 'width="10%"' ) .
($abook->add_extra_field ?
html_tag ( 'th', ' ','left', '', 'width="1%0"'):
''),
'', $color[9] ) . "\n";
$line = 0;
$headerprinted = true;
} /* End of header */
$prevbackend = $row['backend'];
/* Print one row, with alternating color */
if ($line % 2) {
$tr_bgcolor = $color[12];
} else {
$tr_bgcolor = $color[4];
}
// Print special message if that's what we have
// here instead of an actual address entry
if (!empty($row['special_message'])) {
echo
html_tag ('tr', '', '', $tr_bgcolor)
.
html_tag ('td', $row['special_message'], 'center', '', 'colspan="5"')
. "</tr>\n";
$line++;
continue;
}
/* Check if this user is selected */
$selected =
in_array ($row['backend'] .
':' .
$row['nickname'], $defselected);
if ($squirrelmail_language == 'ja_JP') {
echo
html_tag ( 'tr', '', '', $tr_bgcolor);
if ($abook->backends[$row['backend']]->writeable) {
'<small>' .
addCheckBox ('sel[' .
$count .
']', $selected, $row['backend'].
':'.
$row['nickname'], ' id="' .
$row['backend'] .
'_' .
urlencode ($row['nickname']) .
'"').
'</small>' ,
'center', '', 'valign="top" width="1%"' );
} else {
' ' ,
'center', '', 'valign="top" width="1%"' );
}
html_tag ( 'td', '', 'left', '', 'valign="top" width="10%" nowrap' ) .
' ';
} else {
echo
html_tag ( 'tr', '', '', $tr_bgcolor);
if ($abook->backends[$row['backend']]->writeable) {
'<small>' .
addCheckBox ('sel[' .
$count .
']', $selected, $row['backend'] .
':' .
$row['nickname'], ' id="' .
$row['backend'] .
'_' .
urlencode ($row['nickname']) .
'"').
'</small>' ,
'center', '', 'valign="top" width="1%"' );
} else {
' ' ,
'center', '', 'valign="top" width="1%"' );
}
html_tag ( 'td', '', 'left', '', 'valign="top" width="10%" nowrap' ) .
' ';
}
$email = $abook->full_address($row);
' </td>'."\n".
// add extra column if third party backend needs it
if ($abook->add_extra_field) {
' ' . (isset($row['extra']) ? $row['extra'] : '') . ' ',
'left', '', 'valign="top" width="10%"' );
}
echo "</tr>\n";
$line++;
$count++;
}
/* End of list. Close table. */
if ($headerprinted) {
addSubmit (_ ("Compose to selected"), 'compose_to',
($javascript_on && $compose_new_win ? $compose_to_in_new_window_javascript : '')),
'center', '', "colspan=\"$abook_fields\"" )
);
}
echo '</table></form>';
}
} /* end of addresslist */
/* Display the "new address" form */
echo '<a name="AddAddress"></a>' . "\n" .
addForm ($form_url, 'post', 'f_add', '', '', '', TRUE).
html_tag ( 'td', "\n".
'<strong>' .
sprintf (_ ("Add to %s"), $abook->localbackendname) .
'</strong>' .
"\n",
'center', $color[0]
)
)
, 'center', '', 'width="95%"' ) ."\n";
echo "</form>\n";
/* Add hook for anything that wants on the bottom */
?>
</body></html>