X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Ftree.php;h=10f8752db4b3cacef48414cf823a9e553c85ba68;hp=28cb3e5b86b412a6533b72a758c511c53a1627ad;hb=69e110f3320c698f8ecc5a7f34ea9fac1caf3c39;hpb=8cf653ad4242424f2816edf3d2cea09bab66c6e5 diff --git a/functions/tree.php b/functions/tree.php index 28cb3e5b..10f8752d 100644 --- a/functions/tree.php +++ b/functions/tree.php @@ -1,131 +1,197 @@ -1) - return $result; + for ($i=0;$i< count($tree[$treeIndexToStart]['subNodes']);$i++) { + $result = findParentForChild($value, $tree[$treeIndexToStart]['subNodes'][$i], $tree); + if ($result > -1) + return $result; } // if we aren't a child of one of the subNodes, must be a child of current node return $treeIndexToStart; - } else + } else return $treeIndexToStart; - } else { - // we aren't a child of this node at all - return -1; - } - } + } else { + // we aren't a child of this node at all + return -1; + } +} + +/** + * Will insert a new value into the tree, based on a given comparison value. + * + * @param mixed comparisonValue the value to determine where the new element should be placed. + * @param mixed value the new node to insert + * @param array tree the tree to insert the node in, by ref + */ +function addChildNodeToTree($comparisonValue, $value, &$tree) { + $parentNode = findParentForChild($comparisonValue, 0, $tree); - function addChildNodeToTree($comparisonValue, $value, &$tree) { - $parentNode = findParentForChild($comparisonValue, 0, $tree); + // create a new subNode + $newNodeIndex = count($tree); + $tree[$newNodeIndex]['value'] = $value; + $tree[$newNodeIndex]['doIHaveChildren'] = false; - // create a new subNode - $newNodeIndex = count($tree); - $tree[$newNodeIndex]["value"] = $value; - $tree[$newNodeIndex]["doIHaveChildren"] = false; + if ($tree[$parentNode]['doIHaveChildren'] == false) { + // make sure the parent knows it has children + $tree[$parentNode]['subNodes'][0] = $newNodeIndex; + $tree[$parentNode]['doIHaveChildren'] = true; + } else { + $nextSubNode = count($tree[$parentNode]['subNodes']); + // make sure the parent knows it has children + $tree[$parentNode]['subNodes'][$nextSubNode] = $newNodeIndex; + } +} - if ($tree[$parentNode]["doIHaveChildren"] == false) { - // make sure the parent knows it has children - $tree[$parentNode]["subNodes"][0] = $newNodeIndex; - $tree[$parentNode]["doIHaveChildren"] = true; - } else { - $nextSubNode = count($tree[$parentNode]["subNodes"]); - // make sure the parent knows it has children - $tree[$parentNode]["subNodes"][$nextSubNode] = $newNodeIndex; - } - } +/** + * Recursively walk the tree of trash mailboxes 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 + * @return void + */ +function walkTreeInPreOrderEmptyTrash($index, $imap_stream, $tree) { + global $trash_folder; + walkTreeInPreOrderEmptyFolder($index, $imap_stream, $tree, $trash_folder); +} - function walkTreeInPreOrderEmptyTrash($index, $imap_stream, $tree) { - global $trash_folder; - 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) { - sqimap_mailbox_delete($imap_stream, $tree[$index]["value"]); - } else { - $numMessages = sqimap_get_num_messages($imap_stream, $trash_folder); - if ($numMessages > 0) { - sqimap_mailbox_select($imap_stream, $trash_folder); - sqimap_messages_flag ($imap_stream, 1, $numMessages, "Deleted"); - sqimap_mailbox_expunge($imap_stream, $trash_folder, true); - sqimap_mailbox_close($imap_stream); +/** + * 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'] != $mailbox) { + sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); + } else { + $mbx_response = sqimap_mailbox_select($imap_stream, $mailbox); + if ($mbx_response['EXISTS'] > 0) { + 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) { - sqimap_mailbox_delete($imap_stream, $tree[$index]["value"]); - } else { - $numMessages = sqimap_get_num_messages($imap_stream, $trash_folder); - if ($numMessages > 0) { - sqimap_mailbox_select($imap_stream, $trash_folder); - sqimap_messages_flag ($imap_stream, 1, $numMessages, "Deleted"); - sqimap_mailbox_expunge($imap_stream, $trash_folder, true); - sqimap_mailbox_close($imap_stream); + } + } else { + if ($tree[$index]['value'] != $mailbox) { + sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); + } else { + $mbx_response = sqimap_mailbox_select($imap_stream, $mailbox); + if ($mbx_response['EXISTS'] > 0) { + sqimap_toggle_flag($imap_stream, '1:*', '\\Deleted', true, true); + // CLOSE === EXPUNGE and UNSELECT + sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); } - } - } - } - - function walkTreeInPreOrderDeleteFolders($index, $imap_stream, $tree) { - if ($tree[$index]["doIHaveChildren"]) { - for ($j = 0; $j < count($tree[$index]["subNodes"]); $j++) { - walkTreeInPreOrderDeleteFolders($tree[$index]["subNodes"][$j], $imap_stream, $tree); - } - sqimap_mailbox_delete($imap_stream, $tree[$index]["value"]); - } else { - sqimap_mailbox_delete($imap_stream, $tree[$index]["value"]); - } - } + } + } +} + + +/** + * Recursively delete a tree of mail folders. + * + * @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 + * @return void + */ +function walkTreeInPreOrderDeleteFolders($index, $imap_stream, $tree) { + if ($tree[$index]['doIHaveChildren']) { + for ($j = 0; $j < count($tree[$index]['subNodes']); $j++) { + walkTreeInPreOrderDeleteFolders($tree[$index]['subNodes'][$j], $imap_stream, $tree); + } + sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); + } else { + sqimap_mailbox_delete($imap_stream, $tree[$index]['value']); + } +} + +/** + * Recursively walk a tree of folders to create them under the trash folder. + */ +function walkTreeInPostOrderCreatingFoldersUnderTrash($index, $imap_stream, $tree, $topFolderName) { + global $trash_folder, $delimiter; - function walkTreeInPostOrderCreatingFoldersUnderTrash($index, $imap_stream, $tree, $dm, $topFolderName) { - global $trash_folder; + $position = strrpos($topFolderName, $delimiter); + if ($position !== FALSE) { + $position++; + } + $subFolderName = substr($tree[$index]['value'], $position); - $position = strrpos($topFolderName, $dm) + 1; - $subFolderName = substr($tree[$index]["value"], $position); + if ($tree[$index]['doIHaveChildren']) { + // create new trash subfolder only if it does not exist. + if (!sqimap_mailbox_exists($imap_stream, $trash_folder . $delimiter . $subFolderName)) + sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ""); - if ($tree[$index]["doIHaveChildren"]) { - sqimap_mailbox_create($imap_stream, $trash_folder . $dm . $subFolderName, ""); - sqimap_mailbox_select($imap_stream, $tree[$index]["value"]); - - $messageCount = sqimap_get_num_messages($imap_stream, $tree[$index]["value"]); - if ($messageCount > 0) - sqimap_messages_copy($imap_stream, 1, $messageCount, $trash_folder . $dm . $subFolderName); - - for ($j = 0;$j < count($tree[$index]["subNodes"]); $j++) - walkTreeInPostOrderCreatingFoldersUnderTrash($tree[$index]["subNodes"][$j], $imap_stream, $tree, $dm, $topFolderName); - sqimap_mailbox_close($imap_stream); - } else { - sqimap_mailbox_create($imap_stream, $trash_folder . $dm . $subFolderName, ""); - sqimap_mailbox_select($imap_stream, $tree[$index]["value"]); - - $messageCount = sqimap_get_num_messages($imap_stream, $tree[$index]["value"]); - if ($messageCount > 0) - sqimap_messages_copy($imap_stream, 1, $messageCount, $trash_folder . $dm . $subFolderName); - sqimap_mailbox_close($imap_stream); - } - } + $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); + $messageCount = $mbx_response['EXISTS']; + if ($messageCount > 0) { + sqimap_msgs_list_copy($imap_stream, '1:*', $trash_folder . $delimiter . $subFolderName); + } + // after copy close the mailbox to get in unselected state + sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); + for ($j = 0;$j < count($tree[$index]['subNodes']); $j++) + walkTreeInPostOrderCreatingFoldersUnderTrash($tree[$index]['subNodes'][$j], $imap_stream, $tree, $topFolderName); + } else { + if (!sqimap_mailbox_exists($imap_stream, $trash_folder . $delimiter . $subFolderName)) + sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ''); + $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); + $messageCount = $mbx_response['EXISTS']; + if ($messageCount > 0) { + sqimap_msgs_list_copy($imap_stream, '1:*', $trash_folder . $delimiter . $subFolderName); + } + // after copy close the mailbox to get in unselected state + sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); + } +} - function simpleWalkTreePre($index, $tree) { - if ($tree[$index]["doIHaveChildren"]) { - for ($j = 0; $j < count($tree[$index]["subNodes"]); $j++) { - simpleWalkTreePre($tree[$index]["subNodes"][$j], $tree); - } - echo $tree[$index]["value"] . "
"; - } else { - echo $tree[$index]["value"] . "
"; - } - } -?> +/** + * Recursive function that outputs a tree In-Pre-Order. + * @param int index the node to start (usually 0) + * @param array tree the tree to walk + * @return void + */ +function simpleWalkTreePre($index, $tree) { + if ($tree[$index]['doIHaveChildren']) { + for ($j = 0; $j < count($tree[$index]['subNodes']); $j++) { + simpleWalkTreePre($tree[$index]['subNodes'][$j], $tree); + } + echo $tree[$index]['value'] . '
'; + } else { + echo $tree[$index]['value'] . '
'; + } +}