OCFileListFragment.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  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.
  8. *
  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.
  13. *
  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/>.
  16. *
  17. */
  18. package com.owncloud.android.ui.fragment;
  19. import java.io.File;
  20. import java.util.ArrayList;
  21. import java.util.List;
  22. import com.owncloud.android.Log_OC;
  23. import com.owncloud.android.R;
  24. import com.owncloud.android.authentication.AccountUtils;
  25. import com.owncloud.android.datamodel.DataStorageManager;
  26. import com.owncloud.android.datamodel.OCFile;
  27. import com.owncloud.android.files.FileHandler;
  28. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  29. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  30. import com.owncloud.android.operations.OnRemoteOperationListener;
  31. import com.owncloud.android.operations.RemoteOperation;
  32. import com.owncloud.android.operations.RemoveFileOperation;
  33. import com.owncloud.android.operations.RenameFileOperation;
  34. import com.owncloud.android.operations.SynchronizeFileOperation;
  35. import com.owncloud.android.ui.activity.FileDisplayActivity;
  36. import com.owncloud.android.ui.activity.TransferServiceGetter;
  37. import com.owncloud.android.ui.adapter.FileListListAdapter;
  38. import com.owncloud.android.ui.dialog.EditNameDialog;
  39. import com.owncloud.android.ui.dialog.EditNameDialog.EditNameDialogListener;
  40. import com.owncloud.android.ui.fragment.ConfirmationDialogFragment.ConfirmationDialogFragmentListener;
  41. import com.owncloud.android.ui.preview.PreviewImageFragment;
  42. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  43. import android.accounts.Account;
  44. import android.app.Activity;
  45. import android.os.Bundle;
  46. import android.os.Handler;
  47. import android.view.ContextMenu;
  48. import android.view.MenuInflater;
  49. import android.view.MenuItem;
  50. import android.view.View;
  51. import android.widget.AdapterView;
  52. import android.widget.AdapterView.AdapterContextMenuInfo;
  53. /**
  54. * A Fragment that lists all files and folders in a given path.
  55. *
  56. * @author Bartek Przybylski
  57. *
  58. */
  59. public class OCFileListFragment extends ExtendedListFragment implements EditNameDialogListener, ConfirmationDialogFragmentListener {
  60. private static final String TAG = OCFileListFragment.class.getSimpleName();
  61. private static final String MY_PACKAGE = OCFileListFragment.class.getPackage() != null ? OCFileListFragment.class.getPackage().getName() : "com.owncloud.android.ui.fragment";
  62. private static final String EXTRA_FILE = MY_PACKAGE + ".extra.FILE";
  63. private OCFileListFragment.ContainerActivity mContainerActivity;
  64. private OCFile mFile = null;
  65. private FileListListAdapter mAdapter;
  66. private Handler mHandler;
  67. private OCFile mTargetFile;
  68. /**
  69. * {@inheritDoc}
  70. */
  71. @Override
  72. public void onAttach(Activity activity) {
  73. super.onAttach(activity);
  74. Log_OC.e(TAG, "onAttach");
  75. try {
  76. mContainerActivity = (ContainerActivity) activity;
  77. } catch (ClassCastException e) {
  78. throw new ClassCastException(activity.toString() + " must implement " + OCFileListFragment.ContainerActivity.class.getSimpleName());
  79. }
  80. }
  81. /**
  82. * {@inheritDoc}
  83. */
  84. @Override
  85. public void onActivityCreated(Bundle savedInstanceState) {
  86. super.onActivityCreated(savedInstanceState);
  87. Log_OC.e(TAG, "onActivityCreated() start");
  88. mAdapter = new FileListListAdapter(getActivity(), mContainerActivity);
  89. if (savedInstanceState != null) {
  90. mFile = savedInstanceState.getParcelable(EXTRA_FILE);
  91. }
  92. setListAdapter(mAdapter);
  93. registerForContextMenu(getListView());
  94. getListView().setOnCreateContextMenuListener(this);
  95. mHandler = new Handler();
  96. }
  97. /**
  98. * Saves the current listed folder.
  99. */
  100. @Override
  101. public void onSaveInstanceState (Bundle outState) {
  102. super.onSaveInstanceState(outState);
  103. outState.putParcelable(EXTRA_FILE, mFile);
  104. }
  105. /**
  106. * Call this, when the user presses the up button
  107. */
  108. public void onBrowseUp() {
  109. OCFile parentDir = null;
  110. if(mFile != null){
  111. DataStorageManager storageManager = mContainerActivity.getStorageManager();
  112. parentDir = storageManager.getFileById(mFile.getParentId());
  113. mFile = parentDir;
  114. }
  115. listDirectory(parentDir);
  116. }
  117. @Override
  118. public void onItemClick(AdapterView<?> l, View v, int position, long id) {
  119. OCFile file = (OCFile) mAdapter.getItem(position);
  120. if (file != null) {
  121. if (file.isDirectory()) {
  122. // update state and view of this fragment
  123. listDirectory(file);
  124. // then, notify parent activity to let it update its state and view, and other fragments
  125. mContainerActivity.onBrowsedDownTo(file);
  126. } else { /// Click on a file
  127. if (PreviewImageFragment.canBePreviewed(file)) {
  128. // preview image - it handles the download, if needed
  129. mContainerActivity.startImagePreview(file);
  130. } else if (file.isDown()) {
  131. if (PreviewMediaFragment.canBePreviewed(file)) {
  132. // media preview
  133. mContainerActivity.startMediaPreview(file, 0, true);
  134. } else {
  135. // open with
  136. mContainerActivity.openFile(file);
  137. }
  138. } else {
  139. // automatic download, preview on finish
  140. mContainerActivity.startDownloadForPreview(file);
  141. }
  142. }
  143. } else {
  144. Log_OC.d(TAG, "Null object in ListAdapter!!");
  145. }
  146. }
  147. /**
  148. * {@inheritDoc}
  149. */
  150. @Override
  151. public void onCreateContextMenu (ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
  152. super.onCreateContextMenu(menu, v, menuInfo);
  153. MenuInflater inflater = getActivity().getMenuInflater();
  154. inflater.inflate(R.menu.file_actions_menu, menu);
  155. AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
  156. OCFile targetFile = (OCFile) mAdapter.getItem(info.position);
  157. List<Integer> toHide = new ArrayList<Integer>();
  158. List<Integer> toDisable = new ArrayList<Integer>();
  159. MenuItem item = null;
  160. if (targetFile.isDirectory()) {
  161. // contextual menu for folders
  162. toHide.add(R.id.action_open_file_with);
  163. toHide.add(R.id.action_download_file);
  164. toHide.add(R.id.action_cancel_download);
  165. toHide.add(R.id.action_cancel_upload);
  166. toHide.add(R.id.action_sync_file);
  167. toHide.add(R.id.action_see_details);
  168. if ( mContainerActivity.getFileDownloaderBinder().isDownloading(AccountUtils.getCurrentOwnCloudAccount(getActivity()), targetFile) ||
  169. mContainerActivity.getFileUploaderBinder().isUploading(AccountUtils.getCurrentOwnCloudAccount(getActivity()), targetFile) ) {
  170. toDisable.add(R.id.action_rename_file);
  171. toDisable.add(R.id.action_remove_file);
  172. }
  173. } else {
  174. // contextual menu for regular files
  175. // new design: 'download' and 'open with' won't be available anymore in context menu
  176. toHide.add(R.id.action_download_file);
  177. toHide.add(R.id.action_open_file_with);
  178. if (targetFile.isDown()) {
  179. toHide.add(R.id.action_cancel_download);
  180. toHide.add(R.id.action_cancel_upload);
  181. } else {
  182. toHide.add(R.id.action_sync_file);
  183. }
  184. if ( mContainerActivity.getFileDownloaderBinder().isDownloading(AccountUtils.getCurrentOwnCloudAccount(getActivity()), targetFile)) {
  185. toHide.add(R.id.action_cancel_upload);
  186. toDisable.add(R.id.action_rename_file);
  187. toDisable.add(R.id.action_remove_file);
  188. } else if ( mContainerActivity.getFileUploaderBinder().isUploading(AccountUtils.getCurrentOwnCloudAccount(getActivity()), targetFile)) {
  189. toHide.add(R.id.action_cancel_download);
  190. toDisable.add(R.id.action_rename_file);
  191. toDisable.add(R.id.action_remove_file);
  192. } else {
  193. toHide.add(R.id.action_cancel_download);
  194. toHide.add(R.id.action_cancel_upload);
  195. }
  196. }
  197. for (int i : toHide) {
  198. item = menu.findItem(i);
  199. if (item != null) {
  200. item.setVisible(false);
  201. item.setEnabled(false);
  202. }
  203. }
  204. for (int i : toDisable) {
  205. item = menu.findItem(i);
  206. if (item != null) {
  207. item.setEnabled(false);
  208. }
  209. }
  210. }
  211. /**
  212. * {@inhericDoc}
  213. */
  214. @Override
  215. public boolean onContextItemSelected (MenuItem item) {
  216. AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
  217. mTargetFile = (OCFile) mAdapter.getItem(info.position);
  218. switch (item.getItemId()) {
  219. case R.id.action_rename_file: {
  220. String fileName = mTargetFile.getFileName();
  221. int extensionStart = mTargetFile.isDirectory() ? -1 : fileName.lastIndexOf(".");
  222. int selectionEnd = (extensionStart >= 0) ? extensionStart : fileName.length();
  223. EditNameDialog dialog = EditNameDialog.newInstance(getString(R.string.rename_dialog_title), fileName, 0, selectionEnd, this);
  224. dialog.show(getFragmentManager(), EditNameDialog.TAG);
  225. return true;
  226. }
  227. case R.id.action_remove_file: {
  228. int messageStringId = R.string.confirmation_remove_alert;
  229. int posBtnStringId = R.string.confirmation_remove_remote;
  230. int neuBtnStringId = -1;
  231. if (mTargetFile.isDirectory()) {
  232. messageStringId = R.string.confirmation_remove_folder_alert;
  233. posBtnStringId = R.string.confirmation_remove_remote_and_local;
  234. neuBtnStringId = R.string.confirmation_remove_folder_local;
  235. } else if (mTargetFile.isDown()) {
  236. posBtnStringId = R.string.confirmation_remove_remote_and_local;
  237. neuBtnStringId = R.string.confirmation_remove_local;
  238. }
  239. ConfirmationDialogFragment confDialog = ConfirmationDialogFragment.newInstance(
  240. messageStringId,
  241. new String[]{mTargetFile.getFileName()},
  242. posBtnStringId,
  243. neuBtnStringId,
  244. R.string.common_cancel);
  245. confDialog.setOnConfirmationListener(this);
  246. confDialog.show(getFragmentManager(), FileDetailFragment.FTAG_CONFIRMATION);
  247. return true;
  248. }
  249. case R.id.action_sync_file: {
  250. Account account = AccountUtils.getCurrentOwnCloudAccount(getSherlockActivity());
  251. RemoteOperation operation = new SynchronizeFileOperation(mTargetFile, null, mContainerActivity.getStorageManager(), account, true, false, getSherlockActivity());
  252. operation.execute(account, getSherlockActivity(), mContainerActivity, mHandler, getSherlockActivity());
  253. ((FileDisplayActivity) getSherlockActivity()).showLoadingDialog();
  254. return true;
  255. }
  256. case R.id.action_cancel_download: {
  257. FileDownloaderBinder downloaderBinder = mContainerActivity.getFileDownloaderBinder();
  258. Account account = AccountUtils.getCurrentOwnCloudAccount(getActivity());
  259. if (downloaderBinder != null && downloaderBinder.isDownloading(account, mTargetFile)) {
  260. downloaderBinder.cancel(account, mTargetFile);
  261. listDirectory();
  262. mContainerActivity.onTransferStateChanged(mTargetFile, false, false);
  263. }
  264. return true;
  265. }
  266. case R.id.action_cancel_upload: {
  267. FileUploaderBinder uploaderBinder = mContainerActivity.getFileUploaderBinder();
  268. Account account = AccountUtils.getCurrentOwnCloudAccount(getActivity());
  269. if (uploaderBinder != null && uploaderBinder.isUploading(account, mTargetFile)) {
  270. uploaderBinder.cancel(account, mTargetFile);
  271. listDirectory();
  272. mContainerActivity.onTransferStateChanged(mTargetFile, false, false);
  273. }
  274. return true;
  275. }
  276. case R.id.action_see_details: {
  277. ((FileFragment.ContainerActivity)getActivity()).showDetails(mTargetFile);
  278. return true;
  279. }
  280. default:
  281. return super.onContextItemSelected(item);
  282. }
  283. }
  284. /**
  285. * Use this to query the {@link OCFile} that is currently
  286. * being displayed by this fragment
  287. * @return The currently viewed OCFile
  288. */
  289. public OCFile getCurrentFile(){
  290. return mFile;
  291. }
  292. /**
  293. * Calls {@link OCFileListFragment#listDirectory(OCFile)} with a null parameter
  294. */
  295. public void listDirectory(){
  296. listDirectory(null);
  297. }
  298. /**
  299. * Lists the given directory on the view. When the input parameter is null,
  300. * it will either refresh the last known directory. list the root
  301. * if there never was a directory.
  302. *
  303. * @param directory File to be listed
  304. */
  305. public void listDirectory(OCFile directory) {
  306. DataStorageManager storageManager = mContainerActivity.getStorageManager();
  307. if (storageManager != null) {
  308. // Check input parameters for null
  309. if(directory == null){
  310. if(mFile != null){
  311. directory = mFile;
  312. } else {
  313. directory = storageManager.getFileByPath("/");
  314. if (directory == null) return; // no files, wait for sync
  315. }
  316. }
  317. // If that's not a directory -> List its parent
  318. if(!directory.isDirectory()){
  319. Log_OC.w(TAG, "You see, that is not a directory -> " + directory.toString());
  320. directory = storageManager.getFileById(directory.getParentId());
  321. }
  322. mAdapter.swapDirectory(directory, storageManager);
  323. if (mFile == null || !mFile.equals(directory)) {
  324. mList.setSelectionFromTop(0, 0);
  325. }
  326. mFile = directory;
  327. }
  328. }
  329. /**
  330. * Interface to implement by any Activity that includes some instance of FileListFragment
  331. *
  332. * @author David A. Velasco
  333. */
  334. public interface ContainerActivity extends TransferServiceGetter, OnRemoteOperationListener, FileHandler {
  335. /**
  336. * Callback method invoked when a the user browsed into a different folder through the list of files
  337. *
  338. * @param file
  339. */
  340. public void onBrowsedDownTo(OCFile folder);
  341. public void startDownloadForPreview(OCFile file);
  342. public void startMediaPreview(OCFile file, int i, boolean b);
  343. public void startImagePreview(OCFile file);
  344. /**
  345. * Getter for the current DataStorageManager in the container activity
  346. */
  347. public DataStorageManager getStorageManager();
  348. /**
  349. * Callback method invoked when a the 'transfer state' of a file changes.
  350. *
  351. * This happens when a download or upload is started or ended for a file.
  352. *
  353. * This method is necessary by now to update the user interface of the double-pane layout in tablets
  354. * because methods {@link FileDownloaderBinder#isDownloading(Account, OCFile)} and {@link FileUploaderBinder#isUploading(Account, OCFile)}
  355. * won't provide the needed response before the method where this is called finishes.
  356. *
  357. * TODO Remove this when the transfer state of a file is kept in the database (other thing TODO)
  358. *
  359. * @param file OCFile which state changed.
  360. * @param downloading Flag signaling if the file is now downloading.
  361. * @param uploading Flag signaling if the file is now uploading.
  362. */
  363. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading);
  364. }
  365. @Override
  366. public void onDismiss(EditNameDialog dialog) {
  367. if (dialog.getResult()) {
  368. String newFilename = dialog.getNewFilename();
  369. Log_OC.d(TAG, "name edit dialog dismissed with new name " + newFilename);
  370. RemoteOperation operation = new RenameFileOperation(mTargetFile,
  371. AccountUtils.getCurrentOwnCloudAccount(getActivity()),
  372. newFilename,
  373. mContainerActivity.getStorageManager());
  374. operation.execute(AccountUtils.getCurrentOwnCloudAccount(getSherlockActivity()), getSherlockActivity(), mContainerActivity, mHandler, getSherlockActivity());
  375. ((FileDisplayActivity) getActivity()).showLoadingDialog();
  376. }
  377. }
  378. @Override
  379. public void onConfirmation(String callerTag) {
  380. if (callerTag.equals(FileDetailFragment.FTAG_CONFIRMATION)) {
  381. if (mContainerActivity.getStorageManager().getFileById(mTargetFile.getFileId()) != null) {
  382. RemoteOperation operation = new RemoveFileOperation( mTargetFile,
  383. true,
  384. mContainerActivity.getStorageManager());
  385. operation.execute(AccountUtils.getCurrentOwnCloudAccount(getSherlockActivity()), getSherlockActivity(), mContainerActivity, mHandler, getSherlockActivity());
  386. ((FileDisplayActivity) getActivity()).showLoadingDialog();
  387. }
  388. }
  389. }
  390. @Override
  391. public void onNeutral(String callerTag) {
  392. File f = null;
  393. if (mTargetFile.isDirectory()) {
  394. // TODO run in a secondary thread?
  395. mContainerActivity.getStorageManager().removeDirectory(mTargetFile, false, true);
  396. } else if (mTargetFile.isDown() && (f = new File(mTargetFile.getStoragePath())).exists()) {
  397. f.delete();
  398. mTargetFile.setStoragePath(null);
  399. mContainerActivity.getStorageManager().saveFile(mTargetFile);
  400. }
  401. listDirectory();
  402. mContainerActivity.onTransferStateChanged(mTargetFile, false, false);
  403. }
  404. @Override
  405. public void onCancel(String callerTag) {
  406. Log_OC.d(TAG, "REMOVAL CANCELED");
  407. }
  408. }