| | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005, RoundCube Dev. - Switzerland | |
| | | | All rights reserved. | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | | | Provide functionality to create/delete/rename folders | |
| | |
| | | |
| | | */ |
| | | |
| | | // init IAMP connection |
| | | // init IMAP connection |
| | | rcmail_imap_init(TRUE); |
| | | |
| | | |
| | |
| | | if ($_action=='subscribe') |
| | | { |
| | | if (strlen($_GET['_mboxes'])) |
| | | $IMAP->subscribe(explode(',', $_GET['_mboxes'])); |
| | | $IMAP->subscribe(array($_GET['_mboxes'])); |
| | | |
| | | if ($_GET['_remote']) |
| | | if ($REMOTE_REQUEST) |
| | | rcube_remote_response('// subscribed'); |
| | | } |
| | | |
| | |
| | | else if ($_action=='unsubscribe') |
| | | { |
| | | if (strlen($_GET['_mboxes'])) |
| | | $IMAP->unsubscribe(explode(',', $_GET['_mboxes'])); |
| | | $IMAP->unsubscribe(array($_GET['_mboxes'])); |
| | | |
| | | if ($_GET['_remote']) |
| | | if ($REMOTE_REQUEST) |
| | | rcube_remote_response('// unsubscribed'); |
| | | } |
| | | |
| | | // create a new mailbox |
| | | else if ($_action=='create-folder') |
| | | { |
| | | if (strlen($_GET['_name'])) |
| | | $create = $IMAP->create_mailbox(trim($_GET['_name']), TRUE); |
| | | if (!empty($_GET['_name'])) |
| | | $create = $IMAP->create_mailbox(trim(get_input_value('_name', RCUBE_INPUT_GET, FALSE, 'UTF-7')), TRUE); |
| | | |
| | | if ($create && $_GET['_remote']) |
| | | if ($create && $REMOTE_REQUEST) |
| | | { |
| | | $commands = sprintf("this.add_folder_row('%s')", rep_specialchars_output($_GET['_name'], 'js')); |
| | | $commands = sprintf("this.add_folder_row('%s','%s')", |
| | | rep_specialchars_output($create, 'js'), |
| | | rep_specialchars_output(rcube_charset_convert($create, 'UTF-7'), 'js')); |
| | | rcube_remote_response($commands); |
| | | } |
| | | else if (!$create && $_GET['_remote']) |
| | | else if (!$create && $REMOTE_REQUEST) |
| | | { |
| | | $commands = show_message('errorsaving', 'error'); |
| | | rcube_remote_response($commands); |
| | |
| | | show_message('errorsaving', 'error'); |
| | | } |
| | | |
| | | // rename a mailbox |
| | | else if ($_action=='rename-folder') |
| | | { |
| | | if (!empty($_GET['_folder_oldname']) && !empty($_GET['_folder_newname'])) |
| | | $rename = $IMAP->rename_mailbox(get_input_value('_folder_oldname', RCUBE_INPUT_GET), trim(get_input_value('_folder_newname', RCUBE_INPUT_GET, FALSE, 'UTF-7'))); |
| | | |
| | | if ($rename && $REMOTE_REQUEST) |
| | | { |
| | | $commands = sprintf("this.replace_folder_row('%s','%s','%s');", |
| | | rep_specialchars_output(get_input_value('_folder_oldname', RCUBE_INPUT_GET), 'js'), |
| | | rep_specialchars_output($rename, 'js'), |
| | | rep_specialchars_output(rcube_charset_convert($rename, 'UTF-7'), 'js')); |
| | | |
| | | rcube_remote_response($commands); |
| | | } |
| | | else if (!$rename && $REMOTE_REQUEST) |
| | | { |
| | | $commands = "this.reset_folder_rename();\n"; |
| | | $commands .= show_message('errorsaving', 'error'); |
| | | rcube_remote_response($commands); |
| | | } |
| | | else if (!$rename) |
| | | show_message('errorsaving', 'error'); |
| | | } |
| | | |
| | | // delete an existing IMAP mailbox |
| | | else if ($_action=='delete-folder') |
| | | { |
| | | if (strlen($_GET['_mboxes'])) |
| | | $IMAP->delete_mailbox(explode(',', $_GET['_mboxes'])); |
| | | if (!empty($_GET['_mboxes'])) |
| | | $deleted = $IMAP->delete_mailbox(array(get_input_value('_mboxes', RCUBE_INPUT_GET))); |
| | | |
| | | if ($_GET['_remote']) |
| | | rcube_remote_response('// deleted'); |
| | | if ($REMOTE_REQUEST && $deleted) |
| | | { |
| | | $commands = sprintf("this.remove_folder_row('%s');\n", rep_specialchars_output(get_input_value('_mboxes', RCUBE_INPUT_GET), 'js')); |
| | | $commands .= show_message('folderdeleted', 'confirmation'); |
| | | rcube_remote_response($commands); |
| | | } |
| | | else if ($REMOTE_REQUEST) |
| | | { |
| | | $commands = show_message('errorsaving', 'error'); |
| | | rcube_remote_response($commands); |
| | | } |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | // add table header |
| | | $out .= "<thead><tr>\n"; |
| | | $out .= sprintf('<td>%s</td><td>%s</td><td></td>', rcube_label('foldername'), rcube_label('subscribed')); |
| | | $out .= sprintf('<td class="name">%s</td><td class="subscribed">%s</td>'. |
| | | '<td class="rename"> </td><td class="delete"> </td>', |
| | | rcube_label('foldername'), rcube_label('subscribed')); |
| | | |
| | | $out .= "\n</tr></thead>\n<tbody>\n"; |
| | | |
| | | |
| | | // get folders from server |
| | | $IMAP->clear_cache('mailboxes'); |
| | | |
| | | $a_unsubscribed = $IMAP->list_unsubscribed(); |
| | | $a_subscribed = $IMAP->list_mailboxes(); |
| | | $a_js_folders = array(); |
| | | |
| | | $checkbox_subscribe = new checkbox(array('name' => '_subscribed[]', 'onclick' => "$JS_OBJECT_NAME.command(this.checked?'subscribe':'unsubscribe',this.value)")); |
| | | |
| | | if ($attrib['deleteicon']) |
| | | $button = sprintf('<img src="%s%s" alt="%s" border="0" />', $CONFIG['skin_path'], $attrib['deleteicon'], rcube_label('delete')); |
| | | if (!empty($attrib['deleteicon'])) |
| | | $del_button = sprintf('<img src="%s%s" alt="%s" border="0" />', $CONFIG['skin_path'], $attrib['deleteicon'], rcube_label('delete')); |
| | | else |
| | | $button = rcube_label('delete'); |
| | | $del_button = rcube_label('delete'); |
| | | |
| | | if (!empty($attrib['renameicon'])) |
| | | $edit_button = sprintf('<img src="%s%s" alt="%s" border="0" />', $CONFIG['skin_path'], $attrib['renameicon'], rcube_label('rename')); |
| | | else |
| | | $del_button = rcube_label('rename'); |
| | | |
| | | // create list of available folders |
| | | foreach ($a_unsubscribed as $i => $folder) |
| | | { |
| | | $subscribed = in_array($folder, $a_subscribed); |
| | | $protected = ($CONFIG['protect_default_folders'] == TRUE && in_array($folder,$CONFIG['default_imap_folders'])); |
| | | $zebra_class = $i%2 ? 'even' : 'odd'; |
| | | $folder_js = rep_specialchars_output($folder, 'js'); |
| | | $a_js_folders['rcmrow'.($i+1)] = $folder_js; |
| | | $folder_js_enc = rep_specialchars_output(rcube_charset_convert($folder, 'UTF-7'), 'js'); |
| | | |
| | | if (!$protected) |
| | | $a_js_folders['rcmrow'.($i+1)] = array($folder_js, $folder_js_enc); |
| | | |
| | | $out .= sprintf('<tr id="rcmrow%d" class="%s"><td>%s</td><td>%s</td><td><a href="#delete" onclick="%s.command(\'delete-folder\',\'%s\')" title="%s">%s</a></td>', |
| | | $out .= sprintf('<tr id="rcmrow%d" class="%s"><td>%s</td>', |
| | | $i+1, |
| | | $zebra_class, |
| | | rep_specialchars_output($folder, 'html'), |
| | | $checkbox_subscribe->show(in_array($folder, $a_subscribed)?$folder:'', array('value' => $folder)), |
| | | $JS_OBJECT_NAME, |
| | | $folder_js, |
| | | rcube_label('deletefolder'), |
| | | $button); |
| | | rep_specialchars_output(rcube_charset_convert($folder, 'UTF-7'), 'html', 'all')); |
| | | |
| | | if ($protected) |
| | | $out .= '<td> '.($subscribed ? '•' : '-').'</td>'; |
| | | else |
| | | $out .= '<td>'.$checkbox_subscribe->show($subscribed?$folder:'', array('value' => $folder)).'</td>'; |
| | | |
| | | // add rename and delete buttons |
| | | if (!$protected) |
| | | $out .= sprintf('<td><a href="#rename" onclick="%s.command(\'rename-folder\',\'%s\')" title="%s">%s</a>'. |
| | | '<td><a href="#delete" onclick="%s.command(\'delete-folder\',\'%s\')" title="%s">%s</a></td>', |
| | | $JS_OBJECT_NAME, |
| | | $folder_js, |
| | | rcube_label('renamefolder'), |
| | | $edit_button, |
| | | $JS_OBJECT_NAME, |
| | | $folder_js, |
| | | rcube_label('deletefolder'), |
| | | $del_button); |
| | | else |
| | | $out .= '<td></td><td></td>'; |
| | | |
| | | $out .= "</tr>\n"; |
| | | } |
| | |
| | | return $out; |
| | | } |
| | | |
| | | function rcube_rename_folder_form($attrib) |
| | | { |
| | | global $CONFIG, $IMAP, $JS_OBJECT_NAME; |
| | | |
| | | list($form_start, $form_end) = get_form_tags($attrib, 'rename-folder'); |
| | | unset($attrib['form']); |
| | | |
| | | // return the complete edit form as table |
| | | $out = "$form_start\n"; |
| | | |
| | | $a_unsubscribed = $IMAP->list_unsubscribed(); |
| | | $select_folder = new select(array('name' => '_folder_oldname', 'id' => 'rcmfd_oldfolder')); |
| | | |
| | | foreach ($a_unsubscribed as $i => $folder) |
| | | { |
| | | if ($CONFIG['protect_default_folders'] == TRUE && in_array($folder,$CONFIG['default_imap_folders'])) |
| | | continue; |
| | | |
| | | $select_folder->add($folder); |
| | | } |
| | | |
| | | $out .= $select_folder->show(); |
| | | |
| | | $out .= " to "; |
| | | $inputtwo = new textfield(array('name' => '_folder_newname')); |
| | | $out .= $inputtwo->show(); |
| | | |
| | | if (get_boolean($attrib['button'])) |
| | | { |
| | | $button = new input_field(array('type' => 'button', |
| | | 'value' => rcube_label('rename'), |
| | | 'onclick' => "$JS_OBJECT_NAME.command('rename-folder',this.form)")); |
| | | $out .= $button->show(); |
| | | } |
| | | |
| | | $out .= "\n$form_end"; |
| | | |
| | | return $out; |
| | | } |
| | | |
| | | |
| | | // add some labels to client |
| | | rcube_add_label('deletefolderconfirm'); |
| | | |
| | | |
| | | parse_template('managefolders'); |
| | | ?> |
| | | ?> |