Getting ready for a 1.2.1 release.
[squirrelmail.git] / src / folders_delete.php
index 9b836009f8783fb5ca392e5c064c222c38403bd9..de432553373a73e1914b4db07ae13428a005feb2 100644 (file)
-<?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/page_header.php");
-   include("../functions/imap.php");
-   include("../functions/mailbox.php");
-   include("../functions/array.php");
+<?php
 
-   include("../src/load_prefs.php");
+/**
+ * folders_delete.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Deltes folders from the IMAP server. 
+ * Called from the folders.php
+ *
+ * $Id$
+ */
 
-   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
-   displayPageHeader($color, "None");  
+/*****************************************************************/
+/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
+/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
+/***    + Base level indent should begin at left margin, as    ***/
+/***      the require_once below looks.                        ***/
+/***    + All identation should consist of four space blocks   ***/
+/***    + Tab characters are evil.                             ***/
+/***    + all comments should use "slash-star ... star-slash"  ***/
+/***      style -- no pound characters, no slash-slash style   ***/
+/***    + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD      ***/
+/***      ALWAYS USE { AND } CHARACTERS!!!                     ***/
+/***    + Please use ' instead of ", when possible. Note "     ***/
+/***      should always be used in _( ) function calls.        ***/
+/*** Thank you for your help making the SM code more readable. ***/
+/*****************************************************************/
+
+require_once('../src/validate.php');
+require_once('../functions/imap.php');
+require_once('../functions/array.php');
+require_once('../functions/tree.php');
+
+   /*
+   *  Incoming values:
+   *     $mailbox - selected mailbox from the form
+   */
+   
+   $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+   $boxes = sqimap_mailbox_list ($imap_stream);
+   global $delimiter;
    
-   $imapConnection = loginToImapServer($username, $key, $imapServerAddress, 0);
-   getFolderList($imapConnection, $boxes);
+   if (substr($mailbox, -1) == $delimiter)
+      $mailbox_no_dm = substr($mailbox, 0, strlen($mailbox) - 1); 
+   else
+      $mailbox_no_dm = $mailbox;
 
-   $dm = findMailboxDelimeter($imapConnection);
-   /** lets see if we CAN move folders to the trash.. otherwise, just delete them **/
-   for ($i = 0; $i < count($boxes[$i]["UNFORMATTED"]); $i++) {
-      if ($boxes[$i]["UNFORMATTED"] == $trash_folder)
-         $tmp_trash_folder = $boxes[$i]["RAW"];
-   }
+   /** lets see if we CAN move folders to the trash.. otherwise, 
+    ** just delete them **/
+
+   // Courier IMAP doesn't like subfolders of Trash
+   if (strtolower($imap_server_type) == "courier") {
+      $can_move_to_trash = false;
+   } 
+
+   // If it's already a subfolder of trash, we'll have to delete it
+   else if(eregi("^".$trash_folder.".+", $mailbox)) {
+
+      $can_move_to_trash = false;
 
-   $tmpflags = getMailboxFlags($imapConnection, $tmp_trash_folder);
-   $can_move_to_trash = true;
-   for ($i = 0; $i < count($tmpflags); $i++) {
-      if (strtolower($tmpflags[$i]) == "noinferiors")
-         $can_move_to_trash = false;
    }
 
-   /** Lets start removing the folders and messages **/
-   if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
-      /** Creates the subfolders under $trash_folder **/
+   // Otherwise, check if trash folder exits and support sub-folders
+   else {
       for ($i = 0; $i < count($boxes); $i++) {
-         if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
-             (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
-            $folderWithoutINBOX = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"], $dm);
-            $flags = getMailboxFlags($imapConnection, $boxes[$i]["RAW"]);
-            for ($b = 0; $b < count($flags); $b++) {
-               $type = $flags[$b];
-            }
-            createFolder($imapConnection, "$trash_folder" . $dm . "$folderWithoutINBOX", $type);
+         if ($boxes[$i]["unformatted"] == $trash_folder) {
+            $can_move_to_trash = !in_array('noinferiors', $boxes[$i]['flags']);
          }
       }
-      for ($i = 0; $i < count($boxes); $i++) {
-         if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
-             (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
-            selectMailbox($imapConnection, $boxes[$i]["UNFORMATTED"], $numMessages);
-            $folder = getFolderNameMinusINBOX($boxes[$i]["UNFORMATTED"]);
-
-            if ($numMessages > 0)
-               $success = copyMessages($imapConnection, 1, $numMessages, "$trash_folder" . $dm . "$folder");
-            else
-               $success = true;
+   }
 
-            if ($success == true)
-               removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
-         }
+   /** First create the top node in the tree **/
+   for ($i = 0;$i < count($boxes);$i++) {
+      if (($boxes[$i]["unformatted-dm"] == $mailbox) && (strlen($boxes[$i]["unformatted-dm"]) == strlen($mailbox))) {
+         $foldersTree[0]["value"] = $mailbox;
+         $foldersTree[0]["doIHaveChildren"] = false;
+         continue;
       }
-   } else { /** if they do NOT wish to move messages to the trash (or cannot)**/
-      fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
-      $data = imapReadData($imapConnection , "1", false, $response, $message);
-      while (substr($data[0], strpos($data[0], " ")+1, 4) == "LIST") {
-         for ($i = 0; $i < count($boxes); $i++) {
-            if (($boxes[$i]["UNFORMATTED"] == $mailbox) ||
-                (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) {
-               removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]);
-            }
-         }
-         fputs($imapConnection, "1 LIST \"$mailbox\" *\n");
-         $data = imapReadData($imapConnection , "1", false, $response, $message);
+   }
+   // Now create the nodes for subfolders of the parent folder 
+   // You can tell that it is a subfolder by tacking the mailbox delimiter
+   //    on the end of the $mailbox string, and compare to that.
+   $j = 0;
+   for ($i = 0;$i < count($boxes);$i++) {
+      if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox_no_dm . $delimiter)) == ($mailbox_no_dm . $delimiter)) {
+         addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree);
       }
    }
+//   simpleWalkTreePre(0, $foldersTree);
+
+   /** Lets start removing the folders and messages **/
+   if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
+      walkTreeInPostOrderCreatingFoldersUnderTrash(0, $imap_stream, $foldersTree, $mailbox);
+      walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
+   } else { /** if they do NOT wish to move messages to the trash (or cannot)**/
+      walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
+   }
 
    /** Log out this session **/
-   fputs($imapConnection, "1 logout");
+   sqimap_logout($imap_stream);
 
-   echo "<FONT FACE=\"Arial,Helvetica\">";
-   echo "<BR><BR><CENTER><B>" . _("Folder Deleted!") . "</B><BR><BR>";
-   echo _("You will be automatically forwarded.") . "<BR>" . _("If not,") . " <A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>" . _("click here") . "</A>";
-   echo "</CENTER></FONT>"; 
+   $location = get_location();
+   header ("Location: $location/folders.php?success=delete");
+   /*
+   echo "<BR><BR><BR><CENTER><B>";
+   echo _("Folder Deleted!");
+   echo "</B><BR><BR>";
+   echo _("The folder has been successfully deleted.");
+   echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
+   echo _("Click here");
+   echo "</A> ";
+   echo _("to continue.");
+   echo "</CENTER>"; 
    
    echo "</BODY></HTML>";
+   */
 ?>
-
-