RemoveFileDialogFragment.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2015 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.ui.dialog;
  21. /**
  22. * Dialog requiring confirmation before removing a given OCFile.
  23. *
  24. * Triggers the removal according to the user response.
  25. */
  26. import android.app.Dialog;
  27. import android.os.Bundle;
  28. import com.owncloud.android.R;
  29. import com.owncloud.android.datamodel.FileDataStorageManager;
  30. import com.owncloud.android.datamodel.OCFile;
  31. import com.owncloud.android.ui.activity.ComponentsGetter;
  32. import com.owncloud.android.ui.dialog.ConfirmationDialogFragment.ConfirmationDialogFragmentListener;
  33. import java.util.ArrayList;
  34. import java.util.List;
  35. import java.util.Vector;
  36. public class RemoveFileDialogFragment extends ConfirmationDialogFragment
  37. implements ConfirmationDialogFragmentListener {
  38. private OCFile mTargetFile;
  39. private static final String ARG_TARGET_FILE = "TARGET_FILE";
  40. /**
  41. * Public factory method to create new RemoveFileDialogFragment instances.
  42. *
  43. * @param file File to remove.
  44. * @return Dialog ready to show.
  45. */
  46. public static RemoveFileDialogFragment newInstance(OCFile file) {
  47. RemoveFileDialogFragment frag = new RemoveFileDialogFragment();
  48. Bundle args = new Bundle();
  49. int messageStringId = R.string.confirmation_remove_alert;
  50. int localRemoveButton = (!file.isFavorite() && (file.isFolder() || file.isDown())) ?
  51. R.string.confirmation_remove_local : -1;
  52. if (file.isFolder()) {
  53. messageStringId = R.string.confirmation_remove_folder_alert;
  54. }
  55. args.putInt(ARG_MESSAGE_RESOURCE_ID, messageStringId);
  56. args.putStringArray(ARG_MESSAGE_ARGUMENTS, new String[]{file.getFileName()});
  57. args.putInt(ARG_POSITIVE_BTN_RES, R.string.common_yes);
  58. args.putInt(ARG_NEUTRAL_BTN_RES, R.string.common_no);
  59. args.putInt(ARG_NEGATIVE_BTN_RES, localRemoveButton);
  60. args.putParcelable(ARG_TARGET_FILE, file);
  61. frag.setArguments(args);
  62. return frag;
  63. }
  64. @Override
  65. public Dialog onCreateDialog(Bundle savedInstanceState) {
  66. Dialog dialog = super.onCreateDialog(savedInstanceState);
  67. mTargetFile = getArguments().getParcelable(ARG_TARGET_FILE);
  68. setOnConfirmationListener(this);
  69. return dialog;
  70. }
  71. /**
  72. * Performs the removal of the target file, both locally and in the server.
  73. */
  74. @Override
  75. public void onConfirmation(String callerTag) {
  76. ComponentsGetter cg = (ComponentsGetter)getActivity();
  77. FileDataStorageManager storageManager = cg.getStorageManager();
  78. if (storageManager.getFileById(mTargetFile.getFileId()) != null) {
  79. ArrayList<OCFile> list = new ArrayList<>();
  80. list.add(mTargetFile);
  81. cg.getFileOperationsHelper().removeFiles(list, false);
  82. }
  83. }
  84. /**
  85. * Performs the removal of the local copy of the target file
  86. */
  87. @Override
  88. public void onCancel(String callerTag) {
  89. ComponentsGetter cg = (ComponentsGetter)getActivity();
  90. ArrayList<OCFile> list = new ArrayList<>();
  91. list.add(mTargetFile);
  92. cg.getFileOperationsHelper().removeFiles(list, true);
  93. FileDataStorageManager storageManager = cg.getStorageManager();
  94. boolean containsFavorite = false;
  95. if (mTargetFile.isFolder()) {
  96. Vector<OCFile> files = storageManager.getFolderContent(mTargetFile, false);
  97. for(OCFile file: files) {
  98. containsFavorite = file.isFavorite() || containsFavorite;
  99. if (containsFavorite)
  100. break;
  101. }
  102. }
  103. // Remove etag for parent, if file is a favorite
  104. // or is a folder and contains favorite
  105. if (mTargetFile.isFavorite() || containsFavorite) {
  106. OCFile folder = null;
  107. if (mTargetFile.isFolder()) {
  108. folder = mTargetFile;
  109. } else {
  110. folder = storageManager.getFileById(mTargetFile.getParentId());
  111. }
  112. folder.setEtag("");
  113. storageManager.saveFile(folder);
  114. }
  115. }
  116. @Override
  117. public void onNeutral(String callerTag) {
  118. // nothing to do here
  119. }
  120. }