X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Ftree.php;h=44a99e848329b3ad073f30c2ec2cc6fa136d804f;hb=10bf80c009d938fc0cf85a70d0a6b3834365b146;hp=d051b172f4bb83475c8e252fd61cafd7d86b1405;hpb=8b096f0a2427cf0019f4dc4433a3e02b9f6f5951;p=squirrelmail.git diff --git a/functions/tree.php b/functions/tree.php index d051b172..44a99e84 100644 --- a/functions/tree.php +++ b/functions/tree.php @@ -3,13 +3,12 @@ /** * tree.php * - * Copyright (c) 1999-2003 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. + * This file provides functions to walk trees of folders, for + * instance to delete a whole tree. * - * This code provides various string manipulation functions that are - * used by the rest of the Squirrelmail code. - * - * $Id$ + * @copyright © 1999-2005 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ * @package squirrelmail */ @@ -81,27 +80,40 @@ function addChildNodeToTree($comparisonValue, $value, &$tree) { */ function walkTreeInPreOrderEmptyTrash($index, $imap_stream, $tree) { global $trash_folder; + walkTreeInPreOrderEmptyFolder($index, $imap_stream, $tree, $trash_folder); +} + +/** + * Recursively walk the tree of mailboxes in the given folder and delete all folders and messages + * + * @param int index the place in the tree to start, usually 0 + * @param stream imap_stream the IMAP connection to send commands to + * @param array tree the tree to walk + * @param mailbox the name of the root folder to empty + * @return void + */ +function walkTreeInPreOrderEmptyFolder($index, $imap_stream, $tree, $mailbox) { if ($tree[$index]['doIHaveChildren']) { for ($j = 0; $j < count($tree[$index]['subNodes']); $j++) { walkTreeInPreOrderEmptyTrash($tree[$index]['subNodes'][$j], $imap_stream, $tree); } - if ($tree[$index]['value'] != $trash_folder) { + if ($tree[$index]['value'] != $mailbox) { sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); } else { - $mbx_response = sqimap_mailbox_select($imap_stream, $trash_folder); + $mbx_response = sqimap_mailbox_select($imap_stream, $mailbox); if ($mbx_response['EXISTS'] > 0) { - sqimap_messages_flag ($imap_stream, 1, '*', 'Deleted', true); + sqimap_toggle_flag($imap_stream, '1:*', '\\Deleted', true, true); // CLOSE === EXPUNGE and UNSELECT sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); } } } else { - if ($tree[$index]['value'] != $trash_folder) { + if ($tree[$index]['value'] != $mailbox) { sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); } else { - $mbx_response = sqimap_mailbox_select($imap_stream, $trash_folder); + $mbx_response = sqimap_mailbox_select($imap_stream, $mailbox); if ($mbx_response['EXISTS'] > 0) { - sqimap_messages_flag ($imap_stream, 1, '*', 'Deleted', true); + sqimap_toggle_flag($imap_stream, '1:*', '\\Deleted', true, true); // CLOSE === EXPUNGE and UNSELECT sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); } @@ -135,14 +147,18 @@ function walkTreeInPreOrderDeleteFolders($index, $imap_stream, $tree) { function walkTreeInPostOrderCreatingFoldersUnderTrash($index, $imap_stream, $tree, $topFolderName) { global $trash_folder, $delimiter; - $position = strrpos($topFolderName, $delimiter) + 1; + $position = strrpos($topFolderName, $delimiter); + if ($position !== FALSE) { + $position++; + } $subFolderName = substr($tree[$index]['value'], $position); if ($tree[$index]['doIHaveChildren']) { sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ""); - $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); + $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); $messageCount = $mbx_response['EXISTS']; if ($messageCount > 0) { + // FIXME: broken call sqimap_messages_copy($imap_stream, 1, '*', $trash_folder . $delimiter . $subFolderName); } // after copy close the mailbox to get in unselected state @@ -154,6 +170,7 @@ function walkTreeInPostOrderCreatingFoldersUnderTrash($index, $imap_stream, $tre $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); $messageCount = $mbx_response['EXISTS']; if ($messageCount > 0) { + // FIXME: broken call sqimap_messages_copy($imap_stream, 1, '*', $trash_folder . $delimiter . $subFolderName); } // after copy close the mailbox to get in unselected state @@ -172,9 +189,10 @@ function simpleWalkTreePre($index, $tree) { for ($j = 0; $j < count($tree[$index]['subNodes']); $j++) { simpleWalkTreePre($tree[$index]['subNodes'][$j], $tree); } - echo $tree[$index]['value'] . '
'; + echo $tree[$index]['value'] . '
'; } else { - echo $tree[$index]['value'] . '
'; + echo $tree[$index]['value'] . '
'; } } -?> + +?> \ No newline at end of file