PreviewImageActivity.java 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2016 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 hd 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.preview;
  21. import android.annotation.SuppressLint;
  22. import android.content.BroadcastReceiver;
  23. import android.content.ComponentName;
  24. import android.content.Context;
  25. import android.content.Intent;
  26. import android.content.IntentFilter;
  27. import android.content.ServiceConnection;
  28. import android.os.Bundle;
  29. import android.os.IBinder;
  30. import android.view.MenuItem;
  31. import android.view.View;
  32. import com.google.android.material.snackbar.Snackbar;
  33. import com.owncloud.android.MainApp;
  34. import com.owncloud.android.R;
  35. import com.owncloud.android.authentication.AccountUtils;
  36. import com.owncloud.android.datamodel.FileDataStorageManager;
  37. import com.owncloud.android.datamodel.OCFile;
  38. import com.owncloud.android.datamodel.VirtualFolderType;
  39. import com.owncloud.android.files.services.FileDownloader;
  40. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  41. import com.owncloud.android.files.services.FileUploader;
  42. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  43. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  44. import com.owncloud.android.lib.common.operations.RemoteOperation;
  45. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  46. import com.owncloud.android.lib.common.utils.Log_OC;
  47. import com.owncloud.android.lib.resources.shares.OCShare;
  48. import com.owncloud.android.operations.CreateShareViaLinkOperation;
  49. import com.owncloud.android.operations.RemoveFileOperation;
  50. import com.owncloud.android.operations.SynchronizeFileOperation;
  51. import com.owncloud.android.ui.activity.FileActivity;
  52. import com.owncloud.android.ui.activity.FileDisplayActivity;
  53. import com.owncloud.android.ui.fragment.FileFragment;
  54. import com.owncloud.android.utils.ClipboardUtil;
  55. import com.owncloud.android.utils.ErrorMessageAdapter;
  56. import com.owncloud.android.utils.MimeTypeUtil;
  57. import com.owncloud.android.utils.ThemeUtils;
  58. import androidx.appcompat.app.ActionBar;
  59. import androidx.drawerlayout.widget.DrawerLayout;
  60. import androidx.viewpager.widget.ViewPager;
  61. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  62. /**
  63. * Holds a swiping galley where image files contained in an ownCloud directory are shown
  64. */
  65. @SuppressWarnings("PMD.AvoidDuplicateLiterals")
  66. public class PreviewImageActivity extends FileActivity implements
  67. FileFragment.ContainerActivity,
  68. ViewPager.OnPageChangeListener, OnRemoteOperationListener {
  69. public static final String TAG = PreviewImageActivity.class.getSimpleName();
  70. private static final String KEY_WAITING_FOR_BINDER = "WAITING_FOR_BINDER";
  71. private static final String KEY_SYSTEM_VISIBLE = "TRUE";
  72. public static final String EXTRA_VIRTUAL_TYPE = "EXTRA_VIRTUAL_TYPE";
  73. private ViewPager mViewPager;
  74. private PreviewImagePagerAdapter mPreviewImagePagerAdapter;
  75. private int mSavedPosition;
  76. private boolean mHasSavedPosition;
  77. private boolean mRequestWaitingForBinder;
  78. private DownloadFinishReceiver mDownloadFinishReceiver;
  79. private View mFullScreenAnchorView;
  80. @Override
  81. protected void onCreate(Bundle savedInstanceState) {
  82. super.onCreate(savedInstanceState);
  83. final ActionBar actionBar = getSupportActionBar();
  84. if (savedInstanceState != null && !savedInstanceState.getBoolean(KEY_SYSTEM_VISIBLE, true) &&
  85. actionBar != null) {
  86. actionBar.hide();
  87. }
  88. setContentView(R.layout.preview_image_activity);
  89. // Navigation Drawer
  90. setupDrawer();
  91. // ActionBar
  92. updateActionBarTitleAndHomeButton(null);
  93. mFullScreenAnchorView = getWindow().getDecorView();
  94. // to keep our UI controls visibility in line with system bars visibility
  95. mFullScreenAnchorView.setOnSystemUiVisibilityChangeListener
  96. (flags -> {
  97. boolean visible = (flags & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
  98. if (visible) {
  99. actionBar.show();
  100. setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
  101. } else {
  102. actionBar.hide();
  103. setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
  104. }
  105. });
  106. if (savedInstanceState != null) {
  107. mRequestWaitingForBinder = savedInstanceState.getBoolean(KEY_WAITING_FOR_BINDER);
  108. } else {
  109. mRequestWaitingForBinder = false;
  110. }
  111. }
  112. private void initViewPager() {
  113. // virtual folder
  114. if (getIntent().getSerializableExtra(EXTRA_VIRTUAL_TYPE) != null) {
  115. VirtualFolderType type = (VirtualFolderType) getIntent().getSerializableExtra(EXTRA_VIRTUAL_TYPE);
  116. mPreviewImagePagerAdapter = new PreviewImagePagerAdapter(getSupportFragmentManager(),
  117. type, getAccount(), getStorageManager());
  118. } else {
  119. // get parent from path
  120. OCFile parentFolder = getStorageManager().getFileById(getFile().getParentId());
  121. if (parentFolder == null) {
  122. // should not be necessary
  123. parentFolder = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  124. }
  125. mPreviewImagePagerAdapter = new PreviewImagePagerAdapter(getSupportFragmentManager(),
  126. parentFolder, getAccount(), getStorageManager(), MainApp.isOnlyOnDevice(), this);
  127. }
  128. mViewPager = findViewById(R.id.fragmentPager);
  129. int position = mHasSavedPosition ? mSavedPosition : mPreviewImagePagerAdapter.getFilePosition(getFile());
  130. position = position >= 0 ? position : 0;
  131. mViewPager.setAdapter(mPreviewImagePagerAdapter);
  132. mViewPager.addOnPageChangeListener(this);
  133. mViewPager.setCurrentItem(position);
  134. if (position == 0 && !getFile().isDown()) {
  135. // this is necessary because mViewPager.setCurrentItem(0) just after setting the
  136. // adapter does not result in a call to #onPageSelected(0)
  137. mRequestWaitingForBinder = true;
  138. }
  139. }
  140. @Override
  141. public void onStart() {
  142. super.onStart();
  143. }
  144. @Override
  145. protected void onSaveInstanceState(Bundle outState) {
  146. super.onSaveInstanceState(outState);
  147. outState.putBoolean(KEY_WAITING_FOR_BINDER, mRequestWaitingForBinder);
  148. outState.putBoolean(KEY_SYSTEM_VISIBLE, isSystemUIVisible());
  149. }
  150. @Override
  151. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  152. super.onRemoteOperationFinish(operation, result);
  153. if (operation instanceof RemoveFileOperation) {
  154. finish();
  155. } else if (operation instanceof SynchronizeFileOperation) {
  156. onSynchronizeFileOperationFinish(result);
  157. } else if (operation instanceof CreateShareViaLinkOperation) {
  158. CreateShareViaLinkOperation op = (CreateShareViaLinkOperation) operation;
  159. if (result.isSuccess()) {
  160. updateFileFromDB();
  161. // if share to user and share via link multiple ocshares are returned,
  162. // therefore filtering for public_link
  163. String link = "";
  164. for (Object object : result.getData()) {
  165. OCShare shareLink = (OCShare) object;
  166. if (FileDisplayActivity.TAG_PUBLIC_LINK.equalsIgnoreCase(shareLink.getShareType().name())) {
  167. link = shareLink.getShareLink();
  168. break;
  169. }
  170. }
  171. copyAndShareFileLink(link);
  172. } else {
  173. // Detect Failure (403) --> maybe needs password
  174. String password = op.getPassword();
  175. if (result.getCode() == RemoteOperationResult.ResultCode.SHARE_FORBIDDEN &&
  176. (password == null || password.length() == 0) &&
  177. getCapabilities().getFilesSharingPublicEnabled().isUnknown()) {
  178. // Was tried without password, but not sure that it's optional.
  179. Snackbar snackbar = Snackbar.make(findViewById(android.R.id.content),
  180. ErrorMessageAdapter.getErrorCauseMessage(result,
  181. operation,
  182. getResources()),
  183. Snackbar.LENGTH_LONG);
  184. ThemeUtils.colorSnackbar(this, snackbar);
  185. snackbar.show();
  186. }
  187. }
  188. }
  189. }
  190. private void copyAndShareFileLink(String link) {
  191. ClipboardUtil.copyToClipboard(this, link, false);
  192. Snackbar snackbar = Snackbar.make(findViewById(android.R.id.content), R.string.clipboard_text_copied,
  193. Snackbar.LENGTH_LONG)
  194. .setAction(R.string.share, v -> showShareLinkDialog(this, link));
  195. ThemeUtils.colorSnackbar(this, snackbar);
  196. snackbar.show();
  197. }
  198. private void onSynchronizeFileOperationFinish(RemoteOperationResult result) {
  199. if (result.isSuccess()) {
  200. supportInvalidateOptionsMenu();
  201. }
  202. }
  203. @Override
  204. protected ServiceConnection newTransferenceServiceConnection() {
  205. return new PreviewImageServiceConnection();
  206. }
  207. /** Defines callbacks for service binding, passed to bindService() */
  208. private class PreviewImageServiceConnection implements ServiceConnection {
  209. @Override
  210. public void onServiceConnected(ComponentName component, IBinder service) {
  211. if (component.equals(new ComponentName(PreviewImageActivity.this,
  212. FileDownloader.class))) {
  213. mDownloaderBinder = (FileDownloaderBinder) service;
  214. if (mRequestWaitingForBinder) {
  215. mRequestWaitingForBinder = false;
  216. Log_OC.d(TAG, "Simulating reselection of current page after connection " +
  217. "of download binder");
  218. onPageSelected(mViewPager.getCurrentItem());
  219. }
  220. } else if (component.equals(new ComponentName(PreviewImageActivity.this,
  221. FileUploader.class))) {
  222. Log_OC.d(TAG, "Upload service connected");
  223. mUploaderBinder = (FileUploaderBinder) service;
  224. }
  225. }
  226. @Override
  227. public void onServiceDisconnected(ComponentName component) {
  228. if (component.equals(new ComponentName(PreviewImageActivity.this,
  229. FileDownloader.class))) {
  230. Log_OC.d(TAG, "Download service suddenly disconnected");
  231. mDownloaderBinder = null;
  232. } else if (component.equals(new ComponentName(PreviewImageActivity.this,
  233. FileUploader.class))) {
  234. Log_OC.d(TAG, "Upload service suddenly disconnected");
  235. mUploaderBinder = null;
  236. }
  237. }
  238. }
  239. @Override
  240. public void onStop() {
  241. super.onStop();
  242. }
  243. @Override
  244. public void onDestroy() {
  245. super.onDestroy();
  246. }
  247. @Override
  248. public boolean onOptionsItemSelected(MenuItem item) {
  249. boolean returnValue = false;
  250. switch(item.getItemId()){
  251. case android.R.id.home:
  252. if (isDrawerOpen()) {
  253. closeDrawer();
  254. } else {
  255. backToDisplayActivity();
  256. }
  257. returnValue = true;
  258. break;
  259. default:
  260. returnValue = super.onOptionsItemSelected(item);
  261. break;
  262. }
  263. return returnValue;
  264. }
  265. @Override
  266. protected void onResume() {
  267. super.onResume();
  268. mDownloadFinishReceiver = new DownloadFinishReceiver();
  269. IntentFilter filter = new IntentFilter(FileDownloader.getDownloadFinishMessage());
  270. filter.addAction(FileDownloader.getDownloadAddedMessage());
  271. registerReceiver(mDownloadFinishReceiver, filter);
  272. }
  273. @Override
  274. protected void onPostResume() {
  275. super.onPostResume();
  276. }
  277. @Override
  278. public void onPause() {
  279. if (mDownloadFinishReceiver != null){
  280. unregisterReceiver(mDownloadFinishReceiver);
  281. mDownloadFinishReceiver = null;
  282. }
  283. super.onPause();
  284. }
  285. private void backToDisplayActivity() {
  286. finish();
  287. }
  288. @SuppressFBWarnings("DLS")
  289. @Override
  290. public void showDetails(OCFile file) {
  291. final Intent showDetailsIntent = new Intent(this, FileDisplayActivity.class);
  292. showDetailsIntent.setAction(FileDisplayActivity.ACTION_DETAILS);
  293. showDetailsIntent.putExtra(FileActivity.EXTRA_FILE, file);
  294. showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT,
  295. AccountUtils.getCurrentOwnCloudAccount(this));
  296. showDetailsIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
  297. startActivity(showDetailsIntent);
  298. finish();
  299. }
  300. @Override
  301. public void showDetails(OCFile file, int activeTab) {
  302. showDetails(file);
  303. }
  304. public void requestForDownload(OCFile file) {
  305. if (mDownloaderBinder == null) {
  306. Log_OC.d(TAG, "requestForDownload called without binder to download service");
  307. } else if (!mDownloaderBinder.isDownloading(getAccount(), file)) {
  308. Intent i = new Intent(this, FileDownloader.class);
  309. i.putExtra(FileDownloader.EXTRA_ACCOUNT, getAccount());
  310. i.putExtra(FileDownloader.EXTRA_FILE, file);
  311. startService(i);
  312. }
  313. }
  314. /**
  315. * This method will be invoked when a new page becomes selected. Animation is not necessarily
  316. * complete.
  317. *
  318. * @param position Position index of the new selected page
  319. */
  320. @Override
  321. public void onPageSelected(int position) {
  322. mSavedPosition = position;
  323. mHasSavedPosition = true;
  324. if (mDownloaderBinder == null) {
  325. mRequestWaitingForBinder = true;
  326. } else {
  327. OCFile currentFile = mPreviewImagePagerAdapter.getFileAt(position);
  328. if (currentFile != null) {
  329. if (getSupportActionBar() != null) {
  330. getSupportActionBar().setTitle(currentFile.getFileName());
  331. }
  332. setDrawerIndicatorEnabled(false);
  333. if (currentFile.isEncrypted() && !currentFile.isDown() &&
  334. !mPreviewImagePagerAdapter.pendingErrorAt(position)) {
  335. requestForDownload(currentFile);
  336. }
  337. // Call to reset image zoom to initial state
  338. ((PreviewImagePagerAdapter) mViewPager.getAdapter()).resetZoom();
  339. }
  340. }
  341. }
  342. /**
  343. * Called when the scroll state changes. Useful for discovering when the user begins dragging,
  344. * when the pager is automatically settling to the current page. when it is fully stopped/idle.
  345. *
  346. * @param state The new scroll state (SCROLL_STATE_IDLE, _DRAGGING, _SETTLING
  347. */
  348. @Override
  349. public void onPageScrollStateChanged(int state) {
  350. // not used at the moment
  351. }
  352. /**
  353. * This method will be invoked when the current page is scrolled, either as part of a
  354. * programmatically initiated smooth scroll or a user initiated touch scroll.
  355. *
  356. * @param position Position index of the first page currently being displayed.
  357. * Page position+1 will be visible if positionOffset is
  358. * nonzero.
  359. * @param positionOffset Value from [0, 1) indicating the offset from the page
  360. * at position.
  361. * @param positionOffsetPixels Value in pixels indicating the offset from position.
  362. */
  363. @Override
  364. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  365. // not used at the moment
  366. }
  367. /**
  368. * Class waiting for broadcast events from the {@link FileDownloader} service.
  369. *
  370. * Updates the UI when a download is started or finished, provided that it is relevant for the
  371. * folder displayed in the gallery.
  372. */
  373. private class DownloadFinishReceiver extends BroadcastReceiver {
  374. @Override
  375. public void onReceive(Context context, Intent intent) {
  376. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  377. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  378. if (getAccount().name.equals(accountName) &&
  379. downloadedRemotePath != null) {
  380. OCFile file = getStorageManager().getFileByPath(downloadedRemotePath);
  381. int position = mPreviewImagePagerAdapter.getFilePosition(file);
  382. boolean downloadWasFine = intent.getBooleanExtra(
  383. FileDownloader.EXTRA_DOWNLOAD_RESULT, false);
  384. //boolean isOffscreen = Math.abs((mViewPager.getCurrentItem() - position))
  385. // <= mViewPager.getOffscreenPageLimit();
  386. if (position >= 0 &&
  387. intent.getAction().equals(FileDownloader.getDownloadFinishMessage())) {
  388. if (downloadWasFine) {
  389. mPreviewImagePagerAdapter.updateFile(position, file);
  390. } else {
  391. mPreviewImagePagerAdapter.updateWithDownloadError(position);
  392. }
  393. mPreviewImagePagerAdapter.notifyDataSetChanged(); // will trigger the creation
  394. // of new fragments
  395. } else {
  396. Log_OC.d(TAG, "Download finished, but the fragment is offscreen");
  397. }
  398. }
  399. removeStickyBroadcast(intent);
  400. }
  401. }
  402. public boolean isSystemUIVisible() {
  403. return getSupportActionBar() == null || getSupportActionBar().isShowing();
  404. }
  405. public void toggleFullScreen() {
  406. boolean visible = (mFullScreenAnchorView.getSystemUiVisibility()
  407. & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
  408. if (visible) {
  409. hideSystemUI(mFullScreenAnchorView);
  410. // actionBar.hide(); // propagated through
  411. // OnSystemUiVisibilityChangeListener()
  412. } else {
  413. showSystemUI(mFullScreenAnchorView);
  414. // actionBar.show(); // propagated through
  415. // OnSystemUiVisibilityChangeListener()
  416. }
  417. }
  418. public void switchToFullScreen() {
  419. hideSystemUI(mFullScreenAnchorView);
  420. }
  421. @Override
  422. protected void onAccountSet(boolean stateWasRecovered) {
  423. super.onAccountSet(stateWasRecovered);
  424. if (getAccount() != null) {
  425. OCFile file = getFile();
  426. /// Validate handled file (first image to preview)
  427. if (file == null) {
  428. throw new IllegalStateException("Instanced with a NULL OCFile");
  429. }
  430. if (!MimeTypeUtil.isImage(file)) {
  431. throw new IllegalArgumentException("Non-image file passed as argument");
  432. }
  433. // Update file according to DB file, if it is possible
  434. if (file.getFileId() > FileDataStorageManager.ROOT_PARENT_ID) {
  435. file = getStorageManager().getFileById(file.getFileId());
  436. }
  437. if (file != null) {
  438. /// Refresh the activity according to the Account and OCFile set
  439. setFile(file); // reset after getting it fresh from storageManager
  440. getSupportActionBar().setTitle(getFile().getFileName());
  441. //if (!stateWasRecovered) {
  442. initViewPager();
  443. //}
  444. } else {
  445. // handled file not in the current Account
  446. finish();
  447. }
  448. }
  449. }
  450. @Override
  451. public void onBrowsedDownTo(OCFile folder) {
  452. // TODO Auto-generated method stub
  453. }
  454. @Override
  455. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  456. // TODO Auto-generated method stub
  457. }
  458. @SuppressLint("InlinedApi")
  459. private void hideSystemUI(View anchorView) {
  460. anchorView.setSystemUiVisibility(
  461. View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hides NAVIGATION BAR; Android >= 4.0
  462. | View.SYSTEM_UI_FLAG_FULLSCREEN // hides STATUS BAR; Android >= 4.1
  463. | View.SYSTEM_UI_FLAG_IMMERSIVE // stays interactive; Android >= 4.4
  464. | View.SYSTEM_UI_FLAG_LAYOUT_STABLE // draw full window; Android >= 4.1
  465. | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN // draw full window; Android >= 4.1
  466. | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION // draw full window; Android >= 4.1
  467. );
  468. }
  469. @SuppressLint("InlinedApi")
  470. private void showSystemUI(View anchorView) {
  471. anchorView.setSystemUiVisibility(
  472. View.SYSTEM_UI_FLAG_LAYOUT_STABLE // draw full window; Android >= 4.1
  473. | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN // draw full window; Android >= 4.1
  474. | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION // draw full window; Android >= 4.
  475. );
  476. }
  477. }