2 * ownCloud Android client application
4 * @author David A. Velasco
5 * Copyright (C) 2015 ownCloud Inc.
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.
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.
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/>.
21 package com
.owncloud
.android
.ui
.dialog
;
24 * Dialog requiring confirmation before removing a given OCFile.
26 * Triggers the removal according to the user response.
28 import java
.util
.Vector
;
30 import android
.app
.Dialog
;
31 import android
.os
.Bundle
;
33 import com
.owncloud
.android
.R
;
34 import com
.owncloud
.android
.datamodel
.FileDataStorageManager
;
35 import com
.owncloud
.android
.datamodel
.OCFile
;
36 import com
.owncloud
.android
.ui
.activity
.ComponentsGetter
;
37 import com
.owncloud
.android
.ui
.dialog
.ConfirmationDialogFragment
.ConfirmationDialogFragmentListener
;
39 public class RemoveFileDialogFragment
extends ConfirmationDialogFragment
40 implements ConfirmationDialogFragmentListener
{
42 private static final String ARG_TARGET_FILE
= "TARGET_FILE";
45 * Public factory method to create new RemoveFileDialogFragment instances.
47 * @param file File to remove.
48 * @return Dialog ready to show.
50 public static RemoveFileDialogFragment
newInstance(OCFile file
) {
51 RemoveFileDialogFragment frag
= new RemoveFileDialogFragment();
52 Bundle args
= new Bundle();
54 int messageStringId
= R
.string
.confirmation_remove_alert
;
56 int posBtn
= R
.string
.confirmation_remove_remote
;
58 if (file
.isFolder()) {
59 messageStringId
= R
.string
.confirmation_remove_folder_alert
;
60 posBtn
= R
.string
.confirmation_remove_remote_and_local
;
61 neuBtn
= R
.string
.confirmation_remove_folder_local
;
62 } else if (file
.isDown()) {
63 posBtn
= R
.string
.confirmation_remove_remote_and_local
;
64 neuBtn
= R
.string
.confirmation_remove_local
;
68 args
.putInt(ARG_CONF_RESOURCE_ID
, messageStringId
);
69 args
.putStringArray(ARG_CONF_ARGUMENTS
, new String
[]{file
.getFileName()});
70 args
.putInt(ARG_POSITIVE_BTN_RES
, posBtn
);
71 args
.putInt(ARG_NEUTRAL_BTN_RES
, neuBtn
);
72 args
.putInt(ARG_NEGATIVE_BTN_RES
, R
.string
.common_cancel
);
73 args
.putParcelable(ARG_TARGET_FILE
, file
);
74 frag
.setArguments(args
);
79 private OCFile mTargetFile
;
82 public Dialog
onCreateDialog(Bundle savedInstanceState
) {
83 Dialog dialog
= super.onCreateDialog(savedInstanceState
);
84 mTargetFile
= getArguments().getParcelable(ARG_TARGET_FILE
);
86 setOnConfirmationListener(this);
92 * Performs the removal of the target file, both locally and in the server.
95 public void onConfirmation(String callerTag
) {
96 ComponentsGetter cg
= (ComponentsGetter
)getActivity();
97 FileDataStorageManager storageManager
= cg
.getStorageManager();
98 if (storageManager
.getFileById(mTargetFile
.getFileId()) != null
) {
99 cg
.getFileOperationsHelper().removeFile(mTargetFile
, false
);
104 * Performs the removal of the local copy of the target file
107 public void onNeutral(String callerTag
) {
108 ComponentsGetter cg
= (ComponentsGetter
)getActivity();
109 cg
.getFileOperationsHelper().removeFile(mTargetFile
, true
);
111 FileDataStorageManager storageManager
= cg
.getStorageManager();
113 boolean containsKeepInSync
= false
;
114 if (mTargetFile
.isFolder()) {
115 // TODO Enable when "On Device" is recovered ?
116 Vector
<OCFile
> files
= storageManager
.getFolderContent(mTargetFile
/*, false*/);
117 for(OCFile file
: files
) {
118 containsKeepInSync
= file
.keepInSync() || containsKeepInSync
;
120 if (containsKeepInSync
)
125 // Remove etag for parent, if file is a keep_in_sync
126 // or is a folder and contains keep_in_sync
127 if (mTargetFile
.keepInSync() || containsKeepInSync
) {
128 OCFile folder
= null
;
129 if (mTargetFile
.isFolder()) {
130 folder
= mTargetFile
;
132 folder
= storageManager
.getFileById(mTargetFile
.getParentId());
136 storageManager
.saveFile(folder
);
141 public void onCancel(String callerTag
) {
142 // nothing to do here