OCFileListFragment.java 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @author masensio
  6. * @author David A. Velasco
  7. * Copyright (C) 2011 Bartek Przybylski
  8. * Copyright (C) 2015 ownCloud Inc.
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. package com.owncloud.android.ui.fragment;
  24. import android.app.Activity;
  25. import android.content.Intent;
  26. import android.os.Bundle;
  27. import android.support.v4.widget.SwipeRefreshLayout;
  28. import android.view.ContextMenu;
  29. import android.view.Menu;
  30. import android.view.MenuInflater;
  31. import android.view.MenuItem;
  32. import android.view.View;
  33. import android.widget.AdapterView;
  34. import android.widget.AdapterView.AdapterContextMenuInfo;
  35. import android.widget.PopupMenu;
  36. import com.owncloud.android.R;
  37. import com.owncloud.android.authentication.AccountUtils;
  38. import com.owncloud.android.datamodel.FileDataStorageManager;
  39. import com.owncloud.android.datamodel.OCFile;
  40. import com.owncloud.android.files.FileMenuFilter;
  41. import com.owncloud.android.lib.common.utils.Log_OC;
  42. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  43. import com.owncloud.android.ui.activity.FileActivity;
  44. import com.owncloud.android.ui.activity.FileDisplayActivity;
  45. import com.owncloud.android.ui.activity.FolderPickerActivity;
  46. import com.owncloud.android.ui.activity.OnEnforceableRefreshListener;
  47. import com.owncloud.android.ui.adapter.FileListListAdapter;
  48. import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
  49. import com.owncloud.android.ui.dialog.FileActionsDialogFragment;
  50. import com.owncloud.android.ui.dialog.RemoveFileDialogFragment;
  51. import com.owncloud.android.ui.dialog.RenameFileDialogFragment;
  52. import com.owncloud.android.ui.preview.PreviewImageFragment;
  53. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  54. import com.owncloud.android.utils.FileStorageUtils;
  55. import com.owncloud.android.ui.preview.PreviewTextFragment;
  56. import java.io.File;
  57. /**
  58. * A Fragment that lists all files and folders in a given path.
  59. *
  60. * TODO refactor to get rid of direct dependency on FileDisplayActivity
  61. */
  62. public class OCFileListFragment extends ExtendedListFragment implements FileActionsDialogFragment.FileActionsDialogFragmentListener {
  63. private static final String TAG = OCFileListFragment.class.getSimpleName();
  64. private static final String MY_PACKAGE = OCFileListFragment.class.getPackage() != null ?
  65. OCFileListFragment.class.getPackage().getName() : "com.owncloud.android.ui.fragment";
  66. public final static String ARG_JUST_FOLDERS = MY_PACKAGE + ".JUST_FOLDERS";
  67. public final static String ARG_ALLOW_CONTEXTUAL_ACTIONS = MY_PACKAGE + ".ALLOW_CONTEXTUAL";
  68. private static final String KEY_FILE = MY_PACKAGE + ".extra.FILE";
  69. private FileFragment.ContainerActivity mContainerActivity;
  70. private OCFile mFile = null;
  71. private FileListListAdapter mAdapter;
  72. private boolean mJustFolders;
  73. private OCFile mTargetFile;
  74. /**
  75. * {@inheritDoc}
  76. */
  77. @Override
  78. public void onAttach(Activity activity) {
  79. super.onAttach(activity);
  80. Log_OC.e(TAG, "onAttach");
  81. try {
  82. mContainerActivity = (FileFragment.ContainerActivity) activity;
  83. } catch (ClassCastException e) {
  84. throw new ClassCastException(activity.toString() + " must implement " +
  85. FileFragment.ContainerActivity.class.getSimpleName());
  86. }
  87. try {
  88. setOnRefreshListener((OnEnforceableRefreshListener) activity);
  89. } catch (ClassCastException e) {
  90. throw new ClassCastException(activity.toString() + " must implement " +
  91. SwipeRefreshLayout.OnRefreshListener.class.getSimpleName());
  92. }
  93. }
  94. @Override
  95. public void onDetach() {
  96. setOnRefreshListener(null);
  97. mContainerActivity = null;
  98. super.onDetach();
  99. }
  100. /**
  101. * {@inheritDoc}
  102. */
  103. @Override
  104. public void onActivityCreated(Bundle savedInstanceState) {
  105. super.onActivityCreated(savedInstanceState);
  106. Log_OC.e(TAG, "onActivityCreated() start");
  107. if (savedInstanceState != null) {
  108. mFile = savedInstanceState.getParcelable(KEY_FILE);
  109. }
  110. if (mJustFolders) {
  111. setFooterEnabled(false);
  112. } else {
  113. setFooterEnabled(true);
  114. }
  115. Bundle args = getArguments();
  116. mJustFolders = (args == null) ? false : args.getBoolean(ARG_JUST_FOLDERS, false);
  117. mAdapter = new FileListListAdapter(
  118. mJustFolders,
  119. getActivity(),
  120. mContainerActivity
  121. );
  122. setListAdapter(mAdapter);
  123. registerLongClickListener();
  124. }
  125. private void registerLongClickListener() {
  126. getListView().setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
  127. public boolean onItemLongClick(AdapterView<?> arg0, View v,
  128. int index, long arg3) {
  129. showFileAction(index);
  130. return true;
  131. }
  132. });
  133. }
  134. private void showFileAction(int fileIndex) {
  135. Bundle args = getArguments();
  136. PopupMenu pm = new PopupMenu(getActivity(),null);
  137. Menu menu = pm.getMenu();
  138. boolean allowContextualActions =
  139. (args == null) ? true : args.getBoolean(ARG_ALLOW_CONTEXTUAL_ACTIONS, true);
  140. if (allowContextualActions) {
  141. MenuInflater inflater = getActivity().getMenuInflater();
  142. inflater.inflate(R.menu.file_actions_menu, menu);
  143. OCFile targetFile = (OCFile) mAdapter.getItem(fileIndex);
  144. if (mContainerActivity.getStorageManager() != null) {
  145. FileMenuFilter mf = new FileMenuFilter(
  146. targetFile,
  147. mContainerActivity.getStorageManager().getAccount(),
  148. mContainerActivity,
  149. getActivity()
  150. );
  151. mf.filter(menu);
  152. }
  153. /// TODO break this direct dependency on FileDisplayActivity... if possible
  154. MenuItem item = menu.findItem(R.id.action_open_file_with);
  155. FileFragment frag = ((FileDisplayActivity)getActivity()).getSecondFragment();
  156. if (frag != null && frag instanceof FileDetailFragment &&
  157. frag.getFile().getFileId() == targetFile.getFileId()) {
  158. item = menu.findItem(R.id.action_see_details);
  159. if (item != null) {
  160. item.setVisible(false);
  161. item.setEnabled(false);
  162. }
  163. }
  164. FileActionsDialogFragment dialog = FileActionsDialogFragment.newInstance(menu, fileIndex, targetFile.getFileName());
  165. dialog.setTargetFragment(this, 0);
  166. dialog.show(getFragmentManager(), FileActionsDialogFragment.FTAG_FILE_ACTIONS);
  167. }
  168. }
  169. /**
  170. * Saves the current listed folder.
  171. */
  172. @Override
  173. public void onSaveInstanceState(Bundle outState) {
  174. super.onSaveInstanceState(outState);
  175. outState.putParcelable(KEY_FILE, mFile);
  176. }
  177. /**
  178. * Call this, when the user presses the up button.
  179. *
  180. * Tries to move up the current folder one level. If the parent folder was removed from the
  181. * database, it continues browsing up until finding an existing folders.
  182. * <p/>
  183. * return Count of folder levels browsed up.
  184. */
  185. public int onBrowseUp() {
  186. OCFile parentDir = null;
  187. int moveCount = 0;
  188. if (mFile != null) {
  189. FileDataStorageManager storageManager = mContainerActivity.getStorageManager();
  190. String parentPath = null;
  191. if (mFile.getParentId() != FileDataStorageManager.ROOT_PARENT_ID) {
  192. parentPath = new File(mFile.getRemotePath()).getParent();
  193. parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath :
  194. parentPath + OCFile.PATH_SEPARATOR;
  195. parentDir = storageManager.getFileByPath(parentPath);
  196. moveCount++;
  197. } else {
  198. parentDir = storageManager.getFileByPath(OCFile.ROOT_PATH);
  199. }
  200. while (parentDir == null) {
  201. parentPath = new File(parentPath).getParent();
  202. parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath :
  203. parentPath + OCFile.PATH_SEPARATOR;
  204. parentDir = storageManager.getFileByPath(parentPath);
  205. moveCount++;
  206. } // exit is granted because storageManager.getFileByPath("/") never returns null
  207. mFile = parentDir;
  208. // TODO Enable when "On Device" is recovered ?
  209. listDirectory(mFile /*, MainApp.getOnlyOnDevice()*/);
  210. onRefresh(false);
  211. // restore index and top position
  212. restoreIndexAndTopPosition();
  213. } // else - should never happen now
  214. return moveCount;
  215. }
  216. @Override
  217. public void onItemClick(AdapterView<?> l, View v, int position, long id) {
  218. OCFile file = (OCFile) mAdapter.getItem(position);
  219. if (file != null) {
  220. if (file.isFolder()) {
  221. // update state and view of this fragment
  222. // TODO Enable when "On Device" is recovered ?
  223. listDirectory(file/*, MainApp.getOnlyOnDevice()*/);
  224. // then, notify parent activity to let it update its state and view
  225. mContainerActivity.onBrowsedDownTo(file);
  226. // save index and top position
  227. saveIndexAndTopPosition(position);
  228. } else { /// Click on a file
  229. if (PreviewImageFragment.canBePreviewed(file)) {
  230. // preview image - it handles the download, if needed
  231. ((FileDisplayActivity)mContainerActivity).startImagePreview(file);
  232. } else if (PreviewTextFragment.canBePreviewed(file)){
  233. ((FileDisplayActivity)mContainerActivity).startTextPreview(file);
  234. } else if (file.isDown()) {
  235. if (PreviewMediaFragment.canBePreviewed(file)) {
  236. // media preview
  237. ((FileDisplayActivity) mContainerActivity).startMediaPreview(file, 0, true);
  238. } else {
  239. mContainerActivity.getFileOperationsHelper().openFile(file);
  240. }
  241. } else {
  242. // automatic download, preview on finish
  243. ((FileDisplayActivity) mContainerActivity).startDownloadForPreview(file);
  244. }
  245. }
  246. } else {
  247. Log_OC.d(TAG, "Null object in ListAdapter!!");
  248. }
  249. }
  250. /**
  251. * {@inheritDoc}
  252. */
  253. @Override
  254. public void onCreateContextMenu(
  255. ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
  256. Bundle args = getArguments();
  257. boolean allowContextualActions =
  258. (args == null) ? true : args.getBoolean(ARG_ALLOW_CONTEXTUAL_ACTIONS, true);
  259. if (allowContextualActions) {
  260. MenuInflater inflater = getActivity().getMenuInflater();
  261. inflater.inflate(R.menu.file_actions_menu, menu);
  262. AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
  263. OCFile targetFile = (OCFile) mAdapter.getItem(info.position);
  264. if (mContainerActivity.getStorageManager() != null) {
  265. FileMenuFilter mf = new FileMenuFilter(
  266. targetFile,
  267. mContainerActivity.getStorageManager().getAccount(),
  268. mContainerActivity,
  269. getActivity()
  270. );
  271. mf.filter(menu);
  272. }
  273. /// TODO break this direct dependency on FileDisplayActivity... if possible
  274. MenuItem item = menu.findItem(R.id.action_open_file_with);
  275. FileFragment frag = ((FileDisplayActivity)getActivity()).getSecondFragment();
  276. if (frag != null && frag instanceof FileDetailFragment &&
  277. frag.getFile().getFileId() == targetFile.getFileId()) {
  278. item = menu.findItem(R.id.action_see_details);
  279. if (item != null) {
  280. item.setVisible(false);
  281. item.setEnabled(false);
  282. }
  283. }
  284. }
  285. }
  286. /**
  287. * {@inheritDoc}
  288. */
  289. @Override
  290. public boolean onFileActionChosen(int menuId, int filePosition) {
  291. mTargetFile = (OCFile) mAdapter.getItem(filePosition);
  292. switch (menuId) {
  293. case R.id.action_share_file: {
  294. mContainerActivity.getFileOperationsHelper().shareFileWithLink(mTargetFile);
  295. return true;
  296. }
  297. case R.id.action_open_file_with: {
  298. mContainerActivity.getFileOperationsHelper().openFile(mTargetFile);
  299. return true;
  300. }
  301. case R.id.action_unshare_file: {
  302. mContainerActivity.getFileOperationsHelper().unshareFileWithLink(mTargetFile);
  303. return true;
  304. }
  305. case R.id.action_rename_file: {
  306. RenameFileDialogFragment dialog = RenameFileDialogFragment.newInstance(mTargetFile);
  307. dialog.show(getFragmentManager(), FileDetailFragment.FTAG_RENAME_FILE);
  308. return true;
  309. }
  310. case R.id.action_remove_file: {
  311. RemoveFileDialogFragment dialog = RemoveFileDialogFragment.newInstance(mTargetFile);
  312. dialog.show(getFragmentManager(), ConfirmationDialogFragment.FTAG_CONFIRMATION);
  313. return true;
  314. }
  315. case R.id.action_download_file: {
  316. mContainerActivity.getFileOperationsHelper().downloadFile(mTargetFile);
  317. return true;
  318. }
  319. case R.id.action_sync_file: {
  320. mContainerActivity.getFileOperationsHelper().syncFile(mTargetFile);
  321. return true;
  322. }
  323. case R.id.action_cancel_download:
  324. case R.id.action_cancel_upload: {
  325. ((FileDisplayActivity) mContainerActivity).cancelTransference(mTargetFile);
  326. return true;
  327. }
  328. case R.id.action_see_details: {
  329. mContainerActivity.showDetails(mTargetFile);
  330. return true;
  331. }
  332. case R.id.action_send_file: {
  333. // Obtain the file
  334. if (!mTargetFile.isDown()) { // Download the file
  335. Log_OC.d(TAG, mTargetFile.getRemotePath() + " : File must be downloaded");
  336. ((FileDisplayActivity) mContainerActivity).startDownloadForSending(mTargetFile);
  337. } else {
  338. mContainerActivity.getFileOperationsHelper().sendDownloadedFile(mTargetFile);
  339. }
  340. return true;
  341. }
  342. case R.id.action_move: {
  343. Intent action = new Intent(getActivity(), FolderPickerActivity.class);
  344. // Pass mTargetFile that contains info of selected file/folder
  345. action.putExtra(FolderPickerActivity.EXTRA_FILE, mTargetFile);
  346. getActivity().startActivityForResult(action, FileDisplayActivity.ACTION_MOVE_FILES);
  347. return true;
  348. }
  349. case R.id.action_favorite_file: {
  350. mContainerActivity.getFileOperationsHelper().toggleFavorite(mTargetFile, true);
  351. return true;
  352. }
  353. case R.id.action_unfavorite_file: {
  354. mContainerActivity.getFileOperationsHelper().toggleFavorite(mTargetFile, false);
  355. return true;
  356. }
  357. case R.id.action_copy:
  358. Intent action = new Intent(getActivity(), FolderPickerActivity.class);
  359. // Pass mTargetFile that contains info of selected file/folder
  360. action.putExtra(FolderPickerActivity.EXTRA_FILE, mTargetFile);
  361. getActivity().startActivityForResult(action, FileDisplayActivity.ACTION_COPY_FILES);
  362. return true;
  363. default:
  364. return false;
  365. }
  366. }
  367. /**
  368. * {@inhericDoc}
  369. */
  370. @Override
  371. public boolean onContextItemSelected (MenuItem item) {
  372. AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
  373. boolean matched = onFileActionChosen(item.getItemId(), ((AdapterContextMenuInfo) item.getMenuInfo()).position);
  374. if(!matched) {
  375. return super.onContextItemSelected(item);
  376. } else {
  377. return matched;
  378. }
  379. }
  380. /**
  381. * Use this to query the {@link OCFile} that is currently
  382. * being displayed by this fragment
  383. *
  384. * @return The currently viewed OCFile
  385. */
  386. public OCFile getCurrentFile() {
  387. return mFile;
  388. }
  389. /**
  390. * Calls {@link OCFileListFragment#listDirectory(OCFile)} with a null parameter
  391. */
  392. public void listDirectory(/*boolean onlyOnDevice*/){
  393. listDirectory(null);
  394. // TODO Enable when "On Device" is recovered ?
  395. // listDirectory(null, onlyOnDevice);
  396. }
  397. public void refreshDirectory(){
  398. // TODO Enable when "On Device" is recovered ?
  399. listDirectory(getCurrentFile()/*, MainApp.getOnlyOnDevice()*/);
  400. }
  401. /**
  402. * Lists the given directory on the view. When the input parameter is null,
  403. * it will either refresh the last known directory. list the root
  404. * if there never was a directory.
  405. *
  406. * @param directory File to be listed
  407. */
  408. public void listDirectory(OCFile directory/*, boolean onlyOnDevice*/) {
  409. FileDataStorageManager storageManager = mContainerActivity.getStorageManager();
  410. if (storageManager != null) {
  411. // Check input parameters for null
  412. if (directory == null) {
  413. if (mFile != null) {
  414. directory = mFile;
  415. } else {
  416. directory = storageManager.getFileByPath("/");
  417. if (directory == null) return; // no files, wait for sync
  418. }
  419. }
  420. // If that's not a directory -> List its parent
  421. if (!directory.isFolder()) {
  422. Log_OC.w(TAG, "You see, that is not a directory -> " + directory.toString());
  423. directory = storageManager.getFileById(directory.getParentId());
  424. }
  425. // TODO Enable when "On Device" is recovered ?
  426. mAdapter.swapDirectory(directory, storageManager/*, onlyOnDevice*/);
  427. if (mFile == null || !mFile.equals(directory)) {
  428. mCurrentListView.setSelection(0);
  429. }
  430. mFile = directory;
  431. updateLayout();
  432. }
  433. }
  434. private void updateLayout() {
  435. if (!mJustFolders) {
  436. int filesCount = 0, foldersCount = 0, imagesCount = 0;
  437. int count = mAdapter.getCount();
  438. OCFile file;
  439. for (int i=0; i < count ; i++) {
  440. file = (OCFile) mAdapter.getItem(i);
  441. if (file.isFolder()) {
  442. foldersCount++;
  443. } else {
  444. if (!file.isHidden()) {
  445. filesCount++;
  446. if (file.isImage()) {
  447. imagesCount++;
  448. }
  449. }
  450. }
  451. }
  452. // set footer text
  453. setFooterText(generateFooterText(filesCount, foldersCount));
  454. // decide grid vs list view
  455. OwnCloudVersion version = AccountUtils.getServerVersion(
  456. ((FileActivity)mContainerActivity).getAccount());
  457. if (version != null && version.supportsRemoteThumbnails() &&
  458. imagesCount > 0 && imagesCount == filesCount) {
  459. switchToGridView();
  460. registerLongClickListener();
  461. } else {
  462. switchToListView();
  463. }
  464. }
  465. }
  466. private String generateFooterText(int filesCount, int foldersCount) {
  467. String output;
  468. if (filesCount <= 0) {
  469. if (foldersCount <= 0) {
  470. output = "";
  471. } else if (foldersCount == 1) {
  472. output = getResources().getString(R.string.file_list__footer__folder);
  473. } else { // foldersCount > 1
  474. output = getResources().getString(R.string.file_list__footer__folders, foldersCount);
  475. }
  476. } else if (filesCount == 1) {
  477. if (foldersCount <= 0) {
  478. output = getResources().getString(R.string.file_list__footer__file);
  479. } else if (foldersCount == 1) {
  480. output = getResources().getString(R.string.file_list__footer__file_and_folder);
  481. } else { // foldersCount > 1
  482. output = getResources().getString(R.string.file_list__footer__file_and_folders, foldersCount);
  483. }
  484. } else { // filesCount > 1
  485. if (foldersCount <= 0) {
  486. output = getResources().getString(R.string.file_list__footer__files, filesCount);
  487. } else if (foldersCount == 1) {
  488. output = getResources().getString(R.string.file_list__footer__files_and_folder, filesCount);
  489. } else { // foldersCount > 1
  490. output = getResources().getString(
  491. R.string.file_list__footer__files_and_folders, filesCount, foldersCount
  492. );
  493. }
  494. }
  495. return output;
  496. }
  497. public void sortByName(boolean descending) {
  498. mAdapter.setSortOrder(FileStorageUtils.SORT_NAME, descending);
  499. }
  500. public void sortByDate(boolean descending) {
  501. mAdapter.setSortOrder(FileStorageUtils.SORT_DATE, descending);
  502. }
  503. public void sortBySize(boolean descending) {
  504. mAdapter.setSortOrder(FileStorageUtils.SORT_SIZE, descending);
  505. }
  506. }