1 /* ownCloud Android client application
2 * Copyright (C) 2011 Bartek Przybylski
3 * Copyright (C) 2012-2013 ownCloud Inc.
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package com
.owncloud
.android
.ui
.fragment
;
21 import java
.util
.ArrayList
;
22 import java
.util
.List
;
24 import com
.owncloud
.android
.Log_OC
;
25 import com
.owncloud
.android
.R
;
26 import com
.owncloud
.android
.authentication
.AccountUtils
;
27 import com
.owncloud
.android
.datamodel
.DataStorageManager
;
28 import com
.owncloud
.android
.datamodel
.OCFile
;
29 import com
.owncloud
.android
.files
.FileHandler
;
30 import com
.owncloud
.android
.files
.services
.FileDownloader
.FileDownloaderBinder
;
31 import com
.owncloud
.android
.files
.services
.FileUploader
.FileUploaderBinder
;
32 import com
.owncloud
.android
.operations
.OnRemoteOperationListener
;
33 import com
.owncloud
.android
.operations
.RemoteOperation
;
34 import com
.owncloud
.android
.operations
.RemoteOperationResult
;
35 import com
.owncloud
.android
.operations
.RemoveFileOperation
;
36 import com
.owncloud
.android
.operations
.RenameFileOperation
;
37 import com
.owncloud
.android
.operations
.SynchronizeFileOperation
;
38 import com
.owncloud
.android
.ui
.activity
.FileDisplayActivity
;
39 import com
.owncloud
.android
.ui
.activity
.TransferServiceGetter
;
40 import com
.owncloud
.android
.ui
.adapter
.FileListListAdapter
;
41 import com
.owncloud
.android
.ui
.dialog
.EditNameDialog
;
42 import com
.owncloud
.android
.ui
.dialog
.EditNameDialog
.EditNameDialogListener
;
43 import com
.owncloud
.android
.ui
.fragment
.ConfirmationDialogFragment
.ConfirmationDialogFragmentListener
;
44 import com
.owncloud
.android
.ui
.preview
.PreviewImageFragment
;
45 import com
.owncloud
.android
.ui
.preview
.PreviewMediaFragment
;
47 import android
.accounts
.Account
;
48 import android
.app
.Activity
;
49 import android
.os
.Bundle
;
50 import android
.os
.Handler
;
51 import android
.view
.ContextMenu
;
52 import android
.view
.MenuInflater
;
53 import android
.view
.MenuItem
;
54 import android
.view
.View
;
55 import android
.widget
.AdapterView
;
56 import android
.widget
.AdapterView
.AdapterContextMenuInfo
;
59 * A Fragment that lists all files and folders in a given path.
61 * @author Bartek Przybylski
64 public class OCFileListFragment
extends ExtendedListFragment
implements EditNameDialogListener
, ConfirmationDialogFragmentListener
{
66 private static final String TAG
= OCFileListFragment
.class.getSimpleName();
68 private static final String MY_PACKAGE
= OCFileListFragment
.class.getPackage() != null ? OCFileListFragment
.class.getPackage().getName() : "com.owncloud.android.ui.fragment";
69 private static final String EXTRA_FILE
= MY_PACKAGE
+ ".extra.FILE";
71 private OCFileListFragment
.ContainerActivity mContainerActivity
;
73 private OCFile mFile
= null
;
74 private FileListListAdapter mAdapter
;
76 private Handler mHandler
;
77 private OCFile mTargetFile
;
83 public void onAttach(Activity activity
) {
84 super.onAttach(activity
);
85 Log_OC
.e(TAG
, "onAttach");
87 mContainerActivity
= (ContainerActivity
) activity
;
88 } catch (ClassCastException e
) {
89 throw new ClassCastException(activity
.toString() + " must implement " + OCFileListFragment
.ContainerActivity
.class.getSimpleName());
98 public void onActivityCreated(Bundle savedInstanceState
) {
99 super.onActivityCreated(savedInstanceState
);
100 Log_OC
.e(TAG
, "onActivityCreated() start");
101 mAdapter
= new FileListListAdapter(getActivity(), mContainerActivity
);
102 if (savedInstanceState
!= null
) {
103 mFile
= savedInstanceState
.getParcelable(EXTRA_FILE
);
105 setListAdapter(mAdapter
);
107 registerForContextMenu(getListView());
108 getListView().setOnCreateContextMenuListener(this);
110 mHandler
= new Handler();
115 * Saves the current listed folder.
118 public void onSaveInstanceState (Bundle outState
) {
119 super.onSaveInstanceState(outState
);
120 outState
.putParcelable(EXTRA_FILE
, mFile
);
125 * Call this, when the user presses the up button
127 public void onBrowseUp() {
128 OCFile parentDir
= null
;
131 DataStorageManager storageManager
= mContainerActivity
.getStorageManager();
132 parentDir
= storageManager
.getFileById(mFile
.getParentId());
135 listDirectory(parentDir
);
137 mContainerActivity
.syncFolderOperation(mFile
.getRemotePath(), mFile
.getParentId());
142 public void onItemClick(AdapterView
<?
> l
, View v
, int position
, long id
) {
143 OCFile file
= (OCFile
) mAdapter
.getItem(position
);
145 if (file
.isDirectory()) {
146 // update state and view of this fragment
148 // then, notify parent activity to let it update its state and view, and other fragments
149 mContainerActivity
.onBrowsedDownTo(file
);
151 } else { /// Click on a file
152 if (PreviewImageFragment
.canBePreviewed(file
)) {
153 // preview image - it handles the download, if needed
154 mContainerActivity
.startImagePreview(file
);
156 } else if (file
.isDown()) {
157 if (PreviewMediaFragment
.canBePreviewed(file
)) {
159 mContainerActivity
.startMediaPreview(file
, 0, true
);
162 mContainerActivity
.openFile(file
);
166 // automatic download, preview on finish
167 mContainerActivity
.startDownloadForPreview(file
);
173 Log_OC
.d(TAG
, "Null object in ListAdapter!!");
182 public void onCreateContextMenu (ContextMenu menu
, View v
, ContextMenu
.ContextMenuInfo menuInfo
) {
183 super.onCreateContextMenu(menu
, v
, menuInfo
);
184 MenuInflater inflater
= getActivity().getMenuInflater();
185 inflater
.inflate(R
.menu
.file_actions_menu
, menu
);
186 AdapterContextMenuInfo info
= (AdapterContextMenuInfo
) menuInfo
;
187 OCFile targetFile
= (OCFile
) mAdapter
.getItem(info
.position
);
188 List
<Integer
> toHide
= new ArrayList
<Integer
>();
189 List
<Integer
> toDisable
= new ArrayList
<Integer
>();
191 MenuItem item
= null
;
192 if (targetFile
.isDirectory()) {
193 // contextual menu for folders
194 toHide
.add(R
.id
.action_open_file_with
);
195 toHide
.add(R
.id
.action_download_file
);
196 toHide
.add(R
.id
.action_cancel_download
);
197 toHide
.add(R
.id
.action_cancel_upload
);
198 toHide
.add(R
.id
.action_sync_file
);
199 toHide
.add(R
.id
.action_see_details
);
200 if ( mContainerActivity
.getFileDownloaderBinder().isDownloading(AccountUtils
.getCurrentOwnCloudAccount(getActivity()), targetFile
) ||
201 mContainerActivity
.getFileUploaderBinder().isUploading(AccountUtils
.getCurrentOwnCloudAccount(getActivity()), targetFile
) ) {
202 toDisable
.add(R
.id
.action_rename_file
);
203 toDisable
.add(R
.id
.action_remove_file
);
208 // contextual menu for regular files
210 // new design: 'download' and 'open with' won't be available anymore in context menu
211 toHide
.add(R
.id
.action_download_file
);
212 toHide
.add(R
.id
.action_open_file_with
);
214 if (targetFile
.isDown()) {
215 toHide
.add(R
.id
.action_cancel_download
);
216 toHide
.add(R
.id
.action_cancel_upload
);
219 toHide
.add(R
.id
.action_sync_file
);
221 if ( mContainerActivity
.getFileDownloaderBinder().isDownloading(AccountUtils
.getCurrentOwnCloudAccount(getActivity()), targetFile
)) {
222 toHide
.add(R
.id
.action_cancel_upload
);
223 toDisable
.add(R
.id
.action_rename_file
);
224 toDisable
.add(R
.id
.action_remove_file
);
226 } else if ( mContainerActivity
.getFileUploaderBinder().isUploading(AccountUtils
.getCurrentOwnCloudAccount(getActivity()), targetFile
)) {
227 toHide
.add(R
.id
.action_cancel_download
);
228 toDisable
.add(R
.id
.action_rename_file
);
229 toDisable
.add(R
.id
.action_remove_file
);
232 toHide
.add(R
.id
.action_cancel_download
);
233 toHide
.add(R
.id
.action_cancel_upload
);
237 for (int i
: toHide
) {
238 item
= menu
.findItem(i
);
240 item
.setVisible(false
);
241 item
.setEnabled(false
);
245 for (int i
: toDisable
) {
246 item
= menu
.findItem(i
);
248 item
.setEnabled(false
);
258 public boolean onContextItemSelected (MenuItem item
) {
259 AdapterContextMenuInfo info
= (AdapterContextMenuInfo
) item
.getMenuInfo();
260 mTargetFile
= (OCFile
) mAdapter
.getItem(info
.position
);
261 switch (item
.getItemId()) {
262 case R
.id
.action_rename_file
: {
263 String fileName
= mTargetFile
.getFileName();
264 int extensionStart
= mTargetFile
.isDirectory() ?
-1 : fileName
.lastIndexOf(".");
265 int selectionEnd
= (extensionStart
>= 0) ? extensionStart
: fileName
.length();
266 EditNameDialog dialog
= EditNameDialog
.newInstance(getString(R
.string
.rename_dialog_title
), fileName
, 0, selectionEnd
, this);
267 dialog
.show(getFragmentManager(), EditNameDialog
.TAG
);
270 case R
.id
.action_remove_file
: {
271 int messageStringId
= R
.string
.confirmation_remove_alert
;
272 int posBtnStringId
= R
.string
.confirmation_remove_remote
;
273 int neuBtnStringId
= -1;
274 if (mTargetFile
.isDirectory()) {
275 messageStringId
= R
.string
.confirmation_remove_folder_alert
;
276 posBtnStringId
= R
.string
.confirmation_remove_remote_and_local
;
277 neuBtnStringId
= R
.string
.confirmation_remove_folder_local
;
278 } else if (mTargetFile
.isDown()) {
279 posBtnStringId
= R
.string
.confirmation_remove_remote_and_local
;
280 neuBtnStringId
= R
.string
.confirmation_remove_local
;
282 ConfirmationDialogFragment confDialog
= ConfirmationDialogFragment
.newInstance(
284 new String
[]{mTargetFile
.getFileName()},
287 R
.string
.common_cancel
);
288 confDialog
.setOnConfirmationListener(this);
289 confDialog
.show(getFragmentManager(), FileDetailFragment
.FTAG_CONFIRMATION
);
292 case R
.id
.action_sync_file
: {
293 Account account
= AccountUtils
.getCurrentOwnCloudAccount(getSherlockActivity());
294 RemoteOperation operation
= new SynchronizeFileOperation(mTargetFile
, null
, mContainerActivity
.getStorageManager(), account
, true
, false
, getSherlockActivity());
295 operation
.execute(account
, getSherlockActivity(), mContainerActivity
, mHandler
, getSherlockActivity());
296 getSherlockActivity().showDialog(FileDisplayActivity
.DIALOG_SHORT_WAIT
);
299 case R
.id
.action_cancel_download
: {
300 FileDownloaderBinder downloaderBinder
= mContainerActivity
.getFileDownloaderBinder();
301 Account account
= AccountUtils
.getCurrentOwnCloudAccount(getActivity());
302 if (downloaderBinder
!= null
&& downloaderBinder
.isDownloading(account
, mTargetFile
)) {
303 downloaderBinder
.cancel(account
, mTargetFile
);
305 mContainerActivity
.onTransferStateChanged(mTargetFile
, false
, false
);
309 case R
.id
.action_cancel_upload
: {
310 FileUploaderBinder uploaderBinder
= mContainerActivity
.getFileUploaderBinder();
311 Account account
= AccountUtils
.getCurrentOwnCloudAccount(getActivity());
312 if (uploaderBinder
!= null
&& uploaderBinder
.isUploading(account
, mTargetFile
)) {
313 uploaderBinder
.cancel(account
, mTargetFile
);
315 mContainerActivity
.onTransferStateChanged(mTargetFile
, false
, false
);
319 case R
.id
.action_see_details
: {
320 ((FileFragment
.ContainerActivity
)getActivity()).showDetails(mTargetFile
);
324 return super.onContextItemSelected(item
);
330 * Use this to query the {@link OCFile} that is currently
331 * being displayed by this fragment
332 * @return The currently viewed OCFile
334 public OCFile
getCurrentFile(){
339 * Calls {@link OCFileListFragment#listDirectory(OCFile)} with a null parameter
341 public void listDirectory(){
346 * Lists the given directory on the view. When the input parameter is null,
347 * it will either refresh the last known directory. list the root
348 * if there never was a directory.
350 * @param directory File to be listed
352 public void listDirectory(OCFile directory
) {
353 DataStorageManager storageManager
= mContainerActivity
.getStorageManager();
354 if (storageManager
!= null
) {
356 // Check input parameters for null
357 if(directory
== null
){
361 directory
= storageManager
.getFileByPath("/");
362 if (directory
== null
) return; // no files, wait for sync
367 // If that's not a directory -> List its parent
368 if(!directory
.isDirectory()){
369 Log_OC
.w(TAG
, "You see, that is not a directory -> " + directory
.toString());
370 directory
= storageManager
.getFileById(directory
.getParentId());
373 mAdapter
.swapDirectory(directory
, storageManager
);
374 if (mFile
== null
|| !mFile
.equals(directory
)) {
375 mList
.setSelectionFromTop(0, 0);
384 * Interface to implement by any Activity that includes some instance of FileListFragment
386 * @author David A. Velasco
388 public interface ContainerActivity
extends TransferServiceGetter
, OnRemoteOperationListener
, FileHandler
{
391 * Callback method invoked when a the user browsed into a different folder through the list of files
395 public void onBrowsedDownTo(OCFile folder
);
397 public void startDownloadForPreview(OCFile file
);
399 public void startMediaPreview(OCFile file
, int i
, boolean b
);
401 public void startImagePreview(OCFile file
);
403 public void syncFolderOperation(String remotePath
, long parentId
);
406 * Getter for the current DataStorageManager in the container activity
408 public DataStorageManager
getStorageManager();
412 * Callback method invoked when a the 'transfer state' of a file changes.
414 * This happens when a download or upload is started or ended for a file.
416 * This method is necessary by now to update the user interface of the double-pane layout in tablets
417 * because methods {@link FileDownloaderBinder#isDownloading(Account, OCFile)} and {@link FileUploaderBinder#isUploading(Account, OCFile)}
418 * won't provide the needed response before the method where this is called finishes.
420 * TODO Remove this when the transfer state of a file is kept in the database (other thing TODO)
422 * @param file OCFile which state changed.
423 * @param downloading Flag signaling if the file is now downloading.
424 * @param uploading Flag signaling if the file is now uploading.
426 public void onTransferStateChanged(OCFile file
, boolean downloading
, boolean uploading
);
432 public void onDismiss(EditNameDialog dialog
) {
433 if (dialog
.getResult()) {
434 String newFilename
= dialog
.getNewFilename();
435 Log_OC
.d(TAG
, "name edit dialog dismissed with new name " + newFilename
);
436 RemoteOperation operation
= new RenameFileOperation(mTargetFile
,
437 AccountUtils
.getCurrentOwnCloudAccount(getActivity()),
439 mContainerActivity
.getStorageManager());
440 operation
.execute(AccountUtils
.getCurrentOwnCloudAccount(getSherlockActivity()), getSherlockActivity(), mContainerActivity
, mHandler
, getSherlockActivity());
441 getActivity().showDialog(FileDisplayActivity
.DIALOG_SHORT_WAIT
);
447 public void onConfirmation(String callerTag
) {
448 if (callerTag
.equals(FileDetailFragment
.FTAG_CONFIRMATION
)) {
449 if (mContainerActivity
.getStorageManager().getFileById(mTargetFile
.getFileId()) != null
) {
450 RemoteOperation operation
= new RemoveFileOperation( mTargetFile
,
452 mContainerActivity
.getStorageManager());
453 operation
.execute(AccountUtils
.getCurrentOwnCloudAccount(getSherlockActivity()), getSherlockActivity(), mContainerActivity
, mHandler
, getSherlockActivity());
455 getActivity().showDialog(FileDisplayActivity
.DIALOG_SHORT_WAIT
);
461 public void onNeutral(String callerTag
) {
463 if (mTargetFile
.isDirectory()) {
464 // TODO run in a secondary thread?
465 mContainerActivity
.getStorageManager().removeDirectory(mTargetFile
, false
, true
);
467 } else if (mTargetFile
.isDown() && (f
= new File(mTargetFile
.getStoragePath())).exists()) {
469 mTargetFile
.setStoragePath(null
);
470 mContainerActivity
.getStorageManager().saveFile(mTargetFile
);
473 mContainerActivity
.onTransferStateChanged(mTargetFile
, false
, false
);
477 public void onCancel(String callerTag
) {
478 Log_OC
.d(TAG
, "REMOVAL CANCELED");