- Add simple ACL rights/namespace handling in folder manager (display folder's namespace, modify edit form fields according to MYRIGHTS)

release-0.6
alecpl 14 years ago
parent 29c54229cf
commit bbce3edd61

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Add simple ACL rights/namespace handling in folder manager
- Fix parsing links with non-printable characters inside (#1487805)
- Force IE to send referers (#1487806)
- Fixed de_CH Localization bugs (#1487773)

@ -3320,6 +3320,38 @@ class rcube_imap
}
/**
* Returns the namespace where the folder is in
*
* @param string $mbox_name Folder name
*
* @return string One of 'personal', 'other' or 'shared'
* @access public
*/
function mailbox_namespace($mbox_name)
{
if ($mbox_name == 'INBOX') {
return 'personal';
}
foreach ($this->namespace as $type => $namespace) {
if (is_array($namespace)) {
foreach ($namespace as $ns) {
if (strlen($ns[0])) {
if ((strlen($ns[0])>1 && $mbox_name == substr($ns[0], 0, -1))
|| strpos($mbox_name, $ns[0]) === 0
) {
return $type;
}
}
}
}
}
return 'personal';
}
/**
* Modify folder name for input/output according to root dir and namespace
*

@ -374,6 +374,10 @@ $labels['location'] = 'Speicherort';
$labels['info'] = 'Informationen';
$labels['getfoldersize'] = 'Ordnergrösse anzeigen';
$labels['changesubscription'] = 'Abonnieren';
$labels['foldertype'] = 'Ordnertyp';
$labels['personalfolder'] = 'Persönlicher Ordner';
$labels['otherfolder'] = 'Ordner eines anderen Benutzers';
$labels['sharedfolder'] = 'Öffentlicher Ordner';
$labels['sortby'] = 'Sortieren nach';
$labels['sortasc'] = 'aufsteigend sortieren';
$labels['sortdesc'] = 'absteigend sortieren';

@ -427,6 +427,10 @@ $labels['location'] = 'Location';
$labels['info'] = 'Information';
$labels['getfoldersize'] = 'Click to get folder size';
$labels['changesubscription'] = 'Click to change subscription';
$labels['foldertype'] = 'Folder Type';
$labels['personalfolder'] = 'Private Folder';
$labels['otherfolder'] = 'Other User\'s Folder';
$labels['sharedfolder'] = 'Public Folder';
$labels['sortby'] = 'Sort by';
$labels['sortasc'] = 'Sort ascending';

@ -36,25 +36,24 @@ function rcube_folder_form($attrib)
$parent = trim(get_input_value('_path', RCUBE_INPUT_GPC, true));
$parent_imap = rcube_charset_convert($parent, RCMAIL_CHARSET, 'UTF7-IMAP');
$delimiter = $RCMAIL->imap->get_hierarchy_delimiter();
$special = (strlen($mbox_imap) && in_array($mbox_imap, (array) $RCMAIL->config->get('default_imap_folders')));
$protected = ($special && $RCMAIL->config->get('protect_default_folders'));
$threading_supported = $RCMAIL->imap->get_capability('THREAD');
$delimiter = $RCMAIL->imap->get_hierarchy_delimiter();
// Get mailbox stats (messages count, etc.), mailbox name and parent
// Get mailbox parameters
if (strlen($mbox)) {
$msgcount = $RCMAIL->imap->messagecount($mbox_imap, 'ALL', true, false);
$options = rcube_folder_options($mbox_imap);
$namespace = $RCMAIL->imap->get_namespace();
$path = explode($delimiter, $mbox_imap);
$folder = array_pop($path);
$path = implode($delimiter, $path);
$folder = rcube_charset_convert($folder, 'UTF7-IMAP');
$hidden_fields = array('name' => '_mbox', 'value' => $mbox);
}
else {
$path = $parent_imap;
$options = array();
$path = $parent_imap;
}
$form = array();
@ -65,8 +64,12 @@ function rcube_folder_form($attrib)
);
// Location (name)
if ($protected)
$foldername = rcmail_localize_foldername($mbox_imap);
if ($options['protected']) {
$foldername = Q(rcmail_localize_foldername($mbox_imap));
}
else if ($options['norename']) {
$foldername = Q($folder);
}
else {
if (isset($_POST['_name']))
$folder = trim(get_input_value('_name', RCUBE_INPUT_POST, true));
@ -74,8 +77,9 @@ function rcube_folder_form($attrib)
$foldername = new html_inputfield(array('name' => '_name', 'id' => '_name', 'size' => 30));
$foldername = $foldername->show($folder);
if ($special)
$foldername .= ' (' . rcmail_localize_foldername($mbox_imap) .')';
if ($options['special']) {
$foldername .= ' (' . Q(rcmail_localize_foldername($mbox_imap)) .')';
}
}
$form['props']['fieldsets']['location'] = array(
@ -89,19 +93,26 @@ function rcube_folder_form($attrib)
);
if (strlen($path)) {
$radio1 = new html_radiobutton(array('name' => '_parent', 'value' => ''));
$radio2 = new html_radiobutton(array('name' => '_parent', 'value' => $path));
$selected = isset($_POST['_parent']) ? $_POST['_parent'] : $path;
if ($options['norename'] || $options['namespace'] != 'personal') {
// prevent user from moving folder
$hidden_path = new html_hiddenfield(array('name' => '_parent', 'value' => $path));
$form['props']['fieldsets']['location']['content']['name']['value'] .= $hidden_path->show();
}
else {
$radio1 = new html_radiobutton(array('name' => '_parent', 'value' => ''));
$radio2 = new html_radiobutton(array('name' => '_parent', 'value' => $path));
$selected = isset($_POST['_parent']) ? $_POST['_parent'] : $path;
$html_path = str_replace($delimiter, ' » ', rcmail_localize_folderpath($path));
$html_path = str_replace($delimiter, ' » ', rcmail_localize_folderpath($path));
$folderpath = $radio1->show($selected) . Q(rcube_label('none')) . ' '
.$radio2->show($selected) . Q($html_path);
$folderpath = $radio1->show($selected) . Q(rcube_label('none')) . ' '
.$radio2->show($selected) . Q($html_path);
$form['props']['fieldsets']['location']['content']['path'] = array(
'label' => rcube_label('parentfolder'),
'value' => $folderpath,
);
$form['props']['fieldsets']['location']['content']['path'] = array(
'label' => rcube_label('parentfolder'),
'value' => $folderpath,
);
}
}
// Settings
@ -110,7 +121,7 @@ function rcube_folder_form($attrib)
);
// Settings: threading
if ($threading_supported) {
if ($threading_supported && !$options['noselect']) {
$select = new html_select(array('name' => '_viewmode', 'id' => '_listmode'));
$select->add(rcube_label('list'), 0);
$select->add(rcube_label('threads'), 1);
@ -164,34 +175,46 @@ function rcube_folder_form($attrib)
// Number of messages
$form['props']['fieldsets']['info'] = array(
'name' => rcube_label('info'),
'content' => array(
'count' => array(
'label' => rcube_label('messagecount'),
'value' => (int) $msgcount,
),
),
'content' => array()
);
// Size
if ($msgcount) {
// create link with folder-size command
$onclick = sprintf("return %s.command('folder-size', '%s', this)",
JS_OBJECT_NAME, JQ($mbox_imap));
$size = html::a(array('href' => '#', 'onclick' => $onclick, 'id' => 'folder-size'),
rcube_label('getfoldersize'));
if (!$options['noselect']) {
$msgcount = $RCMAIL->imap->messagecount($mbox_imap, 'ALL', true, false);
// Size
if ($msgcount) {
// create link with folder-size command
$onclick = sprintf("return %s.command('folder-size', '%s', this)",
JS_OBJECT_NAME, JQ($mbox_imap));
$size = html::a(array('href' => '#', 'onclick' => $onclick,
'id' => 'folder-size'), rcube_label('getfoldersize'));
}
else {
// no messages -> zero size
$size = 0;
}
$form['props']['fieldsets']['info']['content']['count'] = array(
'label' => rcube_label('messagecount'),
'value' => (int) $msgcount
);
$form['props']['fieldsets']['info']['content']['size'] = array(
'label' => rcube_label('size'),
'value' => $size,
);
}
else {
// no messages -> zero size
$size = 0;
// show folder type only if we have non-private namespaces
if (!empty($namespace['shared']) || !empty($namespace['others'])) {
$form['props']['fieldsets']['info']['content']['foldertype'] = array(
'label' => rcube_label('foldertype'),
'value' => rcube_label($options['namespace'] . 'folder'));
}
$form['props']['fieldsets']['info']['content']['size'] = array(
'label' => rcube_label('size'),
'value' => $size,
);
}
// Allow plugins to modify folder form content
$plugin = $RCMAIL->plugins->exec_hook('folder_form', array('form' => $form));
$plugin = $RCMAIL->plugins->exec_hook('folder_form',
array('form' => $form, 'options' => $options));
$form = $plugin['form'];
@ -268,9 +291,6 @@ function rcmail_localize_folderpath($path)
unset($result);
$result[] = rcmail_localize_foldername($directory);
}
else if ($protect_folders && in_array($dir, $default_folders)) {
$result[] = rcmail_localize_foldername($dir);
}
else {
$result[] = rcube_charset_convert($dir, 'UTF7-IMAP');
}

@ -756,6 +756,46 @@ function rcmail_get_skins()
return $skins;
}
function rcube_folder_options($mailbox)
{
global $RCMAIL;
$acl = $RCMAIL->imap->get_capability('ACL');
$default_folders = (array) $RCMAIL->config->get('default_imap_folders');
$options = array();
$options['name'] = $mailbox;
$options['options'] = $RCMAIL->imap->mailbox_options($mailbox, true);
$options['namespace'] = $RCMAIL->imap->mailbox_namespace($mailbox);
$options['rights'] = $acl ? (array)$RCMAIL->imap->my_rights($mailbox) : array();
$options['special'] = in_array($mailbox, $default_folders);
$options['protected'] = $options['special'] && $RCMAIL->config->get('protect_default_folders');
if (is_array($options['options'])) {
foreach ($options['options'] as $opt) {
$opt = strtolower($opt);
if ($opt == '\noselect' || $opt == '\nonexistent') {
$options['noselect'] = true;
}
}
}
else {
$options['noselect'] = true;
}
if (!empty($options['rights'])) {
$options['norename'] = !in_array('x', $options['rights']) &&
(!in_array('c', $options['rights']) || !in_array('d', $options['rights']));
if (!$options['noselect']) {
$options['noselect'] = !in_array('r', $options['rights']);
}
}
return $options;
}
// register UI objects
$OUTPUT->add_handlers(array(
'prefsframe' => 'rcmail_preferences_frame',

@ -34,12 +34,10 @@ $old_imap = rcube_charset_convert($old, RCMAIL_CHARSET, 'UTF7-IMAP');
// $path is in UTF7-IMAP already
$delimiter = $IMAP->get_hierarchy_delimiter();
$special = (strlen($old_imap) && in_array($old_imap, (array) $RCMAIL->config->get('default_imap_folders')));
$protected = ($special && $RCMAIL->config->get('protect_default_folders'));
$options = strlen($old_imap) ? rcube_folder_options($old_imap) : array();
// Folder name checks
if ($protected) {
if ($options['protected'] || $options['norename']) {
}
else if (!strlen($name)) {
$error = rcube_label('cannotbeempty');
@ -61,7 +59,7 @@ if ($error) {
$OUTPUT->command('display_message', $error, 'error');
}
else {
if ($protected) {
if ($options['protected'] || $options['norename']) {
$name_imap = $old_imap;
}
else if (strlen($path)) {
@ -141,7 +139,6 @@ else if (!$error) {
// In case of name change update names of childrens in settings
if ($rename) {
$delimiter = $RCMAIL->imap->get_hierarchy_delimiter();
$oldprefix = '/^' . preg_quote($folder['oldname'] . $delimiter, '/') . '/';
foreach ($a_threaded as $key => $val) {
if ($key == $folder['oldname']) {

Loading…
Cancel
Save