PreviewImageActivity.java 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2013 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. package com.owncloud.android.ui.preview;
  18. import android.content.BroadcastReceiver;
  19. import android.content.ComponentName;
  20. import android.content.Context;
  21. import android.content.Intent;
  22. import android.content.IntentFilter;
  23. import android.content.ServiceConnection;
  24. import android.content.SharedPreferences;
  25. import android.os.Bundle;
  26. import android.os.IBinder;
  27. import android.preference.PreferenceManager;
  28. import android.support.v4.app.Fragment;
  29. import android.support.v4.app.FragmentManager;
  30. import android.support.v4.app.FragmentTransaction;
  31. import android.support.v4.view.ViewPager;
  32. import android.view.MotionEvent;
  33. import android.view.View;
  34. import android.view.View.OnTouchListener;
  35. import com.actionbarsherlock.app.ActionBar;
  36. import com.actionbarsherlock.view.MenuItem;
  37. import com.actionbarsherlock.view.Window;
  38. import com.owncloud.android.R;
  39. import com.owncloud.android.authentication.AccountUtils;
  40. import com.owncloud.android.datamodel.FileDataStorageManager;
  41. import com.owncloud.android.datamodel.OCFile;
  42. import com.owncloud.android.files.services.FileDownloader;
  43. import com.owncloud.android.files.services.FileUploader;
  44. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  45. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  46. import com.owncloud.android.ui.activity.FileActivity;
  47. import com.owncloud.android.ui.activity.FileDisplayActivity;
  48. import com.owncloud.android.ui.activity.PinCodeActivity;
  49. import com.owncloud.android.ui.dialog.LoadingDialog;
  50. import com.owncloud.android.ui.fragment.FileFragment;
  51. import com.owncloud.android.utils.DisplayUtils;
  52. import com.owncloud.android.utils.Log_OC;
  53. /**
  54. * Holds a swiping galley where image files contained in an ownCloud directory are shown
  55. *
  56. * @author David A. Velasco
  57. */
  58. public class PreviewImageActivity extends FileActivity implements FileFragment.ContainerActivity, ViewPager.OnPageChangeListener, OnTouchListener {
  59. public static final int DIALOG_SHORT_WAIT = 0;
  60. public static final String TAG = PreviewImageActivity.class.getSimpleName();
  61. public static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  62. private static final String KEY_WAITING_FOR_BINDER = "WAITING_FOR_BINDER";
  63. private static final String DIALOG_WAIT_TAG = "DIALOG_WAIT";
  64. private FileDataStorageManager mStorageManager;
  65. private ViewPager mViewPager;
  66. private PreviewImagePagerAdapter mPreviewImagePagerAdapter;
  67. private FileDownloaderBinder mDownloaderBinder = null;
  68. private ServiceConnection mDownloadConnection, mUploadConnection = null;
  69. private FileUploaderBinder mUploaderBinder = null;
  70. private boolean mRequestWaitingForBinder;
  71. private DownloadFinishReceiver mDownloadFinishReceiver;
  72. private boolean mFullScreen;
  73. @Override
  74. protected void onCreate(Bundle savedInstanceState) {
  75. super.onCreate(savedInstanceState);
  76. requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
  77. setContentView(R.layout.preview_image_activity);
  78. ActionBar actionBar = getSupportActionBar();
  79. actionBar.setIcon(DisplayUtils.getSeasonalIconId());
  80. actionBar.setDisplayHomeAsUpEnabled(true);
  81. actionBar.hide();
  82. // PIN CODE request
  83. if (getIntent().getExtras() != null && savedInstanceState == null && fromNotification()) {
  84. requestPinCode();
  85. }
  86. mFullScreen = true;
  87. if (savedInstanceState != null) {
  88. mRequestWaitingForBinder = savedInstanceState.getBoolean(KEY_WAITING_FOR_BINDER);
  89. } else {
  90. mRequestWaitingForBinder = false;
  91. }
  92. }
  93. private void initViewPager() {
  94. // get parent from path
  95. String parentPath = getFile().getRemotePath().substring(0, getFile().getRemotePath().lastIndexOf(getFile().getFileName()));
  96. OCFile parentFolder = mStorageManager.getFileByPath(parentPath);
  97. //OCFile parentFolder = mStorageManager.getFileById(getFile().getParentId());
  98. if (parentFolder == null) {
  99. // should not be necessary
  100. parentFolder = mStorageManager.getFileByPath(OCFile.ROOT_PATH);
  101. }
  102. mPreviewImagePagerAdapter = new PreviewImagePagerAdapter(getSupportFragmentManager(), parentFolder, getAccount(), mStorageManager);
  103. mViewPager = (ViewPager) findViewById(R.id.fragmentPager);
  104. int position = mPreviewImagePagerAdapter.getFilePosition(getFile());
  105. position = (position >= 0) ? position : 0;
  106. mViewPager.setAdapter(mPreviewImagePagerAdapter);
  107. mViewPager.setOnPageChangeListener(this);
  108. mViewPager.setCurrentItem(position);
  109. if (position == 0 && !getFile().isDown()) {
  110. // this is necessary because mViewPager.setCurrentItem(0) just after setting the adapter does not result in a call to #onPageSelected(0)
  111. mRequestWaitingForBinder = true;
  112. }
  113. }
  114. @Override
  115. public void onStart() {
  116. super.onStart();
  117. mDownloadConnection = new PreviewImageServiceConnection();
  118. bindService(new Intent(this, FileDownloader.class), mDownloadConnection, Context.BIND_AUTO_CREATE);
  119. mUploadConnection = new PreviewImageServiceConnection();
  120. bindService(new Intent(this, FileUploader.class), mUploadConnection, Context.BIND_AUTO_CREATE);
  121. }
  122. @Override
  123. protected void onSaveInstanceState(Bundle outState) {
  124. super.onSaveInstanceState(outState);
  125. outState.putBoolean(KEY_WAITING_FOR_BINDER, mRequestWaitingForBinder);
  126. }
  127. /** Defines callbacks for service binding, passed to bindService() */
  128. private class PreviewImageServiceConnection implements ServiceConnection {
  129. @Override
  130. public void onServiceConnected(ComponentName component, IBinder service) {
  131. if (component.equals(new ComponentName(PreviewImageActivity.this, FileDownloader.class))) {
  132. mDownloaderBinder = (FileDownloaderBinder) service;
  133. if (mRequestWaitingForBinder) {
  134. mRequestWaitingForBinder = false;
  135. Log_OC.d(TAG, "Simulating reselection of current page after connection of download binder");
  136. onPageSelected(mViewPager.getCurrentItem());
  137. }
  138. } else if (component.equals(new ComponentName(PreviewImageActivity.this, FileUploader.class))) {
  139. Log_OC.d(TAG, "Upload service connected");
  140. mUploaderBinder = (FileUploaderBinder) service;
  141. } else {
  142. return;
  143. }
  144. }
  145. @Override
  146. public void onServiceDisconnected(ComponentName component) {
  147. if (component.equals(new ComponentName(PreviewImageActivity.this, FileDownloader.class))) {
  148. Log_OC.d(TAG, "Download service suddenly disconnected");
  149. mDownloaderBinder = null;
  150. } else if (component.equals(new ComponentName(PreviewImageActivity.this, FileUploader.class))) {
  151. Log_OC.d(TAG, "Upload service suddenly disconnected");
  152. mUploaderBinder = null;
  153. }
  154. }
  155. };
  156. @Override
  157. public void onStop() {
  158. super.onStop();
  159. if (mDownloadConnection != null) {
  160. unbindService(mDownloadConnection);
  161. mDownloadConnection = null;
  162. }
  163. if (mUploadConnection != null) {
  164. unbindService(mUploadConnection);
  165. mUploadConnection = null;
  166. }
  167. }
  168. @Override
  169. public void onDestroy() {
  170. super.onDestroy();
  171. }
  172. @Override
  173. public boolean onOptionsItemSelected(MenuItem item) {
  174. boolean returnValue = false;
  175. switch(item.getItemId()){
  176. case android.R.id.home:
  177. backToDisplayActivity();
  178. returnValue = true;
  179. break;
  180. default:
  181. returnValue = super.onOptionsItemSelected(item);
  182. }
  183. return returnValue;
  184. }
  185. @Override
  186. protected void onResume() {
  187. super.onResume();
  188. //Log.e(TAG, "ACTIVITY, ONRESUME");
  189. mDownloadFinishReceiver = new DownloadFinishReceiver();
  190. IntentFilter filter = new IntentFilter(FileDownloader.getDownloadFinishMessage());
  191. filter.addAction(FileDownloader.getDownloadAddedMessage());
  192. registerReceiver(mDownloadFinishReceiver, filter);
  193. }
  194. @Override
  195. protected void onPostResume() {
  196. //Log.e(TAG, "ACTIVITY, ONPOSTRESUME");
  197. super.onPostResume();
  198. }
  199. @Override
  200. public void onPause() {
  201. super.onPause();
  202. unregisterReceiver(mDownloadFinishReceiver);
  203. mDownloadFinishReceiver = null;
  204. }
  205. private void backToDisplayActivity() {
  206. finish();
  207. }
  208. /**
  209. * Show loading dialog
  210. */
  211. public void showLoadingDialog() {
  212. // Construct dialog
  213. LoadingDialog loading = new LoadingDialog(getResources().getString(R.string.wait_a_moment));
  214. FragmentManager fm = getSupportFragmentManager();
  215. FragmentTransaction ft = fm.beginTransaction();
  216. loading.show(ft, DIALOG_WAIT_TAG);
  217. }
  218. /**
  219. * Dismiss loading dialog
  220. */
  221. public void dismissLoadingDialog(){
  222. Fragment frag = getSupportFragmentManager().findFragmentByTag(DIALOG_WAIT_TAG);
  223. if (frag != null) {
  224. LoadingDialog loading = (LoadingDialog) frag;
  225. loading.dismiss();
  226. }
  227. }
  228. /**
  229. * {@inheritDoc}
  230. */
  231. @Override
  232. public void onFileStateChanged() {
  233. // nothing to do here!
  234. }
  235. /**
  236. * {@inheritDoc}
  237. */
  238. @Override
  239. public FileDownloaderBinder getFileDownloaderBinder() {
  240. return mDownloaderBinder;
  241. }
  242. @Override
  243. public FileUploaderBinder getFileUploaderBinder() {
  244. return mUploaderBinder;
  245. }
  246. @Override
  247. public void showDetails(OCFile file) {
  248. Intent showDetailsIntent = new Intent(this, FileDisplayActivity.class);
  249. showDetailsIntent.setAction(FileDisplayActivity.ACTION_DETAILS);
  250. showDetailsIntent.putExtra(FileActivity.EXTRA_FILE, file);
  251. showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT, AccountUtils.getCurrentOwnCloudAccount(this));
  252. startActivity(showDetailsIntent);
  253. int pos = mPreviewImagePagerAdapter.getFilePosition(file);
  254. file = mPreviewImagePagerAdapter.getFileAt(pos);
  255. }
  256. private void requestForDownload(OCFile file) {
  257. if (mDownloaderBinder == null) {
  258. Log_OC.d(TAG, "requestForDownload called without binder to download service");
  259. } else if (!mDownloaderBinder.isDownloading(getAccount(), file)) {
  260. Intent i = new Intent(this, FileDownloader.class);
  261. i.putExtra(FileDownloader.EXTRA_ACCOUNT, getAccount());
  262. i.putExtra(FileDownloader.EXTRA_FILE, file);
  263. startService(i);
  264. }
  265. }
  266. /**
  267. * This method will be invoked when a new page becomes selected. Animation is not necessarily complete.
  268. *
  269. * @param Position Position index of the new selected page
  270. */
  271. @Override
  272. public void onPageSelected(int position) {
  273. if (mDownloaderBinder == null) {
  274. mRequestWaitingForBinder = true;
  275. } else {
  276. OCFile currentFile = mPreviewImagePagerAdapter.getFileAt(position);
  277. getSupportActionBar().setTitle(currentFile.getFileName());
  278. if (!currentFile.isDown()) {
  279. if (!mPreviewImagePagerAdapter.pendingErrorAt(position)) {
  280. requestForDownload(currentFile);
  281. }
  282. }
  283. }
  284. }
  285. /**
  286. * Called when the scroll state changes. Useful for discovering when the user begins dragging,
  287. * when the pager is automatically settling to the current page. when it is fully stopped/idle.
  288. *
  289. * @param State The new scroll state (SCROLL_STATE_IDLE, _DRAGGING, _SETTLING
  290. */
  291. @Override
  292. public void onPageScrollStateChanged(int state) {
  293. }
  294. /**
  295. * This method will be invoked when the current page is scrolled, either as part of a programmatically
  296. * initiated smooth scroll or a user initiated touch scroll.
  297. *
  298. * @param position Position index of the first page currently being displayed.
  299. * Page position+1 will be visible if positionOffset is nonzero.
  300. *
  301. * @param positionOffset Value from [0, 1) indicating the offset from the page at position.
  302. * @param positionOffsetPixels Value in pixels indicating the offset from position.
  303. */
  304. @Override
  305. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  306. }
  307. /**
  308. * Class waiting for broadcast events from the {@link FielDownloader} service.
  309. *
  310. * Updates the UI when a download is started or finished, provided that it is relevant for the
  311. * folder displayed in the gallery.
  312. */
  313. private class DownloadFinishReceiver extends BroadcastReceiver {
  314. @Override
  315. public void onReceive(Context context, Intent intent) {
  316. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  317. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  318. if (getAccount().name.equals(accountName) &&
  319. downloadedRemotePath != null) {
  320. OCFile file = mStorageManager.getFileByPath(downloadedRemotePath);
  321. int position = mPreviewImagePagerAdapter.getFilePosition(file);
  322. boolean downloadWasFine = intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false);
  323. //boolean isOffscreen = Math.abs((mViewPager.getCurrentItem() - position)) <= mViewPager.getOffscreenPageLimit();
  324. if (position >= 0 && intent.getAction().equals(FileDownloader.getDownloadFinishMessage())) {
  325. if (downloadWasFine) {
  326. mPreviewImagePagerAdapter.updateFile(position, file);
  327. } else {
  328. mPreviewImagePagerAdapter.updateWithDownloadError(position);
  329. }
  330. mPreviewImagePagerAdapter.notifyDataSetChanged(); // will trigger the creation of new fragments
  331. } else {
  332. Log_OC.d(TAG, "Download finished, but the fragment is offscreen");
  333. }
  334. }
  335. removeStickyBroadcast(intent);
  336. }
  337. }
  338. @Override
  339. public boolean onTouch(View v, MotionEvent event) {
  340. if (event.getAction() == MotionEvent.ACTION_UP) {
  341. toggleFullScreen();
  342. }
  343. return true;
  344. }
  345. private void toggleFullScreen() {
  346. ActionBar actionBar = getSupportActionBar();
  347. if (mFullScreen) {
  348. actionBar.show();
  349. } else {
  350. actionBar.hide();
  351. }
  352. mFullScreen = !mFullScreen;
  353. }
  354. @Override
  355. protected void onAccountSet(boolean stateWasRecovered) {
  356. if (getAccount() != null) {
  357. OCFile file = getFile();
  358. /// Validate handled file (first image to preview)
  359. if (file == null) {
  360. throw new IllegalStateException("Instanced with a NULL OCFile");
  361. }
  362. if (!file.isImage()) {
  363. throw new IllegalArgumentException("Non-image file passed as argument");
  364. }
  365. mStorageManager = new FileDataStorageManager(getAccount(), getContentResolver());
  366. // Update file according to DB file, if it is possible
  367. if (file.getFileId() > FileDataStorageManager.ROOT_PARENT_ID)
  368. file = mStorageManager.getFileById(file.getFileId());
  369. if (file != null) {
  370. /// Refresh the activity according to the Account and OCFile set
  371. setFile(file); // reset after getting it fresh from mStorageManager
  372. getSupportActionBar().setTitle(getFile().getFileName());
  373. //if (!stateWasRecovered) {
  374. initViewPager();
  375. //}
  376. } else {
  377. // handled file not in the current Account
  378. finish();
  379. }
  380. } else {
  381. Log_OC.wtf(TAG, "onAccountChanged was called with NULL account associated!");
  382. }
  383. }
  384. /**
  385. * Launch an intent to request the PIN code to the user before letting him use the app
  386. */
  387. private void requestPinCode() {
  388. boolean pinStart = false;
  389. SharedPreferences appPrefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
  390. pinStart = appPrefs.getBoolean("set_pincode", false);
  391. if (pinStart) {
  392. Intent i = new Intent(getApplicationContext(), PinCodeActivity.class);
  393. i.putExtra(PinCodeActivity.EXTRA_ACTIVITY, "PreviewImageActivity");
  394. startActivity(i);
  395. }
  396. }
  397. @Override
  398. public void shareFileWithLink(OCFile file) {
  399. }
  400. }