1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
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.
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.
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/>.
17 package com
.owncloud
.android
.ui
.preview
;
19 import android
.annotation
.SuppressLint
;
20 import android
.content
.BroadcastReceiver
;
21 import android
.content
.ComponentName
;
22 import android
.content
.Context
;
23 import android
.content
.Intent
;
24 import android
.content
.IntentFilter
;
25 import android
.content
.ServiceConnection
;
26 import android
.os
.Build
;
27 import android
.os
.Bundle
;
28 import android
.os
.Handler
;
29 import android
.os
.IBinder
;
30 import android
.os
.Message
;
31 import android
.support
.v4
.view
.ViewPager
;
32 import android
.view
.View
;
34 import com
.actionbarsherlock
.app
.ActionBar
;
35 import com
.actionbarsherlock
.view
.MenuItem
;
36 import com
.actionbarsherlock
.view
.Window
;
37 import com
.ortiz
.touch
.ExtendedViewPager
;
38 import com
.owncloud
.android
.MainApp
;
39 import com
.owncloud
.android
.R
;
40 import com
.owncloud
.android
.authentication
.AccountUtils
;
41 import com
.owncloud
.android
.authentication
.PinCheck
;
42 import com
.owncloud
.android
.datamodel
.FileDataStorageManager
;
43 import com
.owncloud
.android
.datamodel
.OCFile
;
44 import com
.owncloud
.android
.files
.services
.FileDownloader
;
45 import com
.owncloud
.android
.files
.services
.FileDownloader
.FileDownloaderBinder
;
46 import com
.owncloud
.android
.files
.services
.FileUploader
;
47 import com
.owncloud
.android
.files
.services
.FileUploader
.FileUploaderBinder
;
48 import com
.owncloud
.android
.lib
.common
.operations
.OnRemoteOperationListener
;
49 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperation
;
50 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperationResult
;
51 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperationResult
.ResultCode
;
52 import com
.owncloud
.android
.lib
.common
.utils
.Log_OC
;
53 import com
.owncloud
.android
.operations
.CreateShareOperation
;
54 import com
.owncloud
.android
.operations
.RemoveFileOperation
;
55 import com
.owncloud
.android
.operations
.UnshareLinkOperation
;
56 import com
.owncloud
.android
.ui
.activity
.FileActivity
;
57 import com
.owncloud
.android
.ui
.activity
.FileDisplayActivity
;
58 import com
.owncloud
.android
.ui
.activity
.PinCodeActivity
;
59 import com
.owncloud
.android
.ui
.fragment
.FileFragment
;
60 import com
.owncloud
.android
.utils
.DisplayUtils
;
64 * Holds a swiping galley where image files contained in an ownCloud directory are shown
66 * @author David A. Velasco
68 public class PreviewImageActivity
extends FileActivity
implements
69 FileFragment
.ContainerActivity
,
70 ViewPager
.OnPageChangeListener
, OnRemoteOperationListener
{
72 public static final int DIALOG_SHORT_WAIT
= 0;
74 public static final String TAG
= PreviewImageActivity
.class.getSimpleName();
76 public static final String KEY_WAITING_TO_PREVIEW
= "WAITING_TO_PREVIEW";
77 private static final String KEY_WAITING_FOR_BINDER
= "WAITING_FOR_BINDER";
79 private static final int INITIAL_HIDE_DELAY
= 0; // immediate hide
81 private ExtendedViewPager mViewPager
;
82 private PreviewImagePagerAdapter mPreviewImagePagerAdapter
;
83 private int mSavedPosition
= 0;
84 private boolean mHasSavedPosition
= false
;
86 private boolean mRequestWaitingForBinder
;
88 private DownloadFinishReceiver mDownloadFinishReceiver
;
90 private View mFullScreenAnchorView
;
92 private Boolean mUnlocked
= false
;
96 protected void onCreate(Bundle savedInstanceState
) {
97 super.onCreate(savedInstanceState
);
99 requestWindowFeature(Window
.FEATURE_ACTION_BAR_OVERLAY
);
100 setContentView(R
.layout
.preview_image_activity
);
102 ActionBar actionBar
= getSupportActionBar();
103 actionBar
.setIcon(DisplayUtils
.getSeasonalIconId());
104 actionBar
.setDisplayHomeAsUpEnabled(true
);
108 if (PinCheck
.checkIfPinEntry()){
109 Intent i
= new Intent(MainApp
.getAppContext(), PinCodeActivity
.class);
110 i
.putExtra(PinCodeActivity
.EXTRA_ACTIVITY
, "PreviewImageActivity");
114 // Make sure we're running on Honeycomb or higher to use FullScreen and
116 if (isHoneycombOrHigher()) {
118 mFullScreenAnchorView
= getWindow().getDecorView();
119 // to keep our UI controls visibility in line with system bars
121 mFullScreenAnchorView
.setOnSystemUiVisibilityChangeListener(new View
.OnSystemUiVisibilityChangeListener() {
122 @SuppressLint("InlinedApi")
124 public void onSystemUiVisibilityChange(int flags
) {
125 boolean visible
= (flags
& View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
) == 0;
126 ActionBar actionBar
= getSupportActionBar();
137 if (savedInstanceState
!= null
) {
138 mRequestWaitingForBinder
= savedInstanceState
.getBoolean(KEY_WAITING_FOR_BINDER
);
140 mRequestWaitingForBinder
= false
;
145 private void initViewPager() {
146 // get parent from path
147 String parentPath
= getFile().getRemotePath().substring(0, getFile().getRemotePath().lastIndexOf(getFile().getFileName()));
148 OCFile parentFolder
= getStorageManager().getFileByPath(parentPath
);
149 if (parentFolder
== null
) {
150 // should not be necessary
151 parentFolder
= getStorageManager().getFileByPath(OCFile
.ROOT_PATH
);
153 mPreviewImagePagerAdapter
= new PreviewImagePagerAdapter(getSupportFragmentManager(), parentFolder
, getAccount(), getStorageManager());
154 mViewPager
= (ExtendedViewPager
) findViewById(R
.id
.fragmentPager
);
155 int position
= mHasSavedPosition ? mSavedPosition
: mPreviewImagePagerAdapter
.getFilePosition(getFile());
156 position
= (position
>= 0) ? position
: 0;
157 mViewPager
.setAdapter(mPreviewImagePagerAdapter
);
158 mViewPager
.setOnPageChangeListener(this);
159 mViewPager
.setCurrentItem(position
);
160 if (position
== 0 && !getFile().isDown()) {
161 // this is necessary because mViewPager.setCurrentItem(0) just after setting the adapter does not result in a call to #onPageSelected(0)
162 mRequestWaitingForBinder
= true
;
167 protected void onPostCreate(Bundle savedInstanceState
) {
168 super.onPostCreate(savedInstanceState
);
170 // Trigger the initial hide() shortly after the activity has been
171 // created, to briefly hint to the user that UI controls
173 delayedHide(INITIAL_HIDE_DELAY
);
177 Handler mHideSystemUiHandler
= new Handler() {
179 public void handleMessage(Message msg
) {
180 if (isHoneycombOrHigher()) {
181 hideSystemUI(mFullScreenAnchorView
);
183 getSupportActionBar().hide();
187 private void delayedHide(int delayMillis
) {
188 mHideSystemUiHandler
.removeMessages(0);
189 mHideSystemUiHandler
.sendEmptyMessageDelayed(0, delayMillis
);
193 /// handle Window Focus changes
195 public void onWindowFocusChanged(boolean hasFocus
) {
196 super.onWindowFocusChanged(hasFocus
);
198 // When the window loses focus (e.g. the action overflow is shown),
199 // cancel any pending hide action.
201 mHideSystemUiHandler
.removeMessages(0);
208 public void onStart() {
213 protected void onSaveInstanceState(Bundle outState
) {
214 super.onSaveInstanceState(outState
);
215 outState
.putBoolean(KEY_WAITING_FOR_BINDER
, mRequestWaitingForBinder
);
219 public void onRemoteOperationFinish(RemoteOperation operation
, RemoteOperationResult result
) {
220 super.onRemoteOperationFinish(operation
, result
);
222 if (operation
instanceof CreateShareOperation
) {
223 onCreateShareOperationFinish((CreateShareOperation
) operation
, result
);
225 } else if (operation
instanceof UnshareLinkOperation
) {
226 onUnshareLinkOperationFinish((UnshareLinkOperation
) operation
, result
);
228 } else if (operation
instanceof RemoveFileOperation
) {
234 private void onUnshareLinkOperationFinish(UnshareLinkOperation operation
, RemoteOperationResult result
) {
235 if (result
.isSuccess()) {
236 OCFile file
= getStorageManager().getFileByPath(getFile().getRemotePath());
240 invalidateOptionsMenu();
241 } else if (result
.getCode() == ResultCode
.SHARE_NOT_FOUND
) {
242 backToDisplayActivity();
247 private void onCreateShareOperationFinish(CreateShareOperation operation
, RemoteOperationResult result
) {
248 if (result
.isSuccess()) {
249 OCFile file
= getStorageManager().getFileByPath(getFile().getRemotePath());
253 invalidateOptionsMenu();
258 protected ServiceConnection
newTransferenceServiceConnection() {
259 return new PreviewImageServiceConnection();
262 /** Defines callbacks for service binding, passed to bindService() */
263 private class PreviewImageServiceConnection
implements ServiceConnection
{
266 public void onServiceConnected(ComponentName component
, IBinder service
) {
268 if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileDownloader
.class))) {
269 mDownloaderBinder
= (FileDownloaderBinder
) service
;
270 if (mRequestWaitingForBinder
) {
271 mRequestWaitingForBinder
= false
;
272 Log_OC
.d(TAG
, "Simulating reselection of current page after connection of download binder");
273 onPageSelected(mViewPager
.getCurrentItem());
276 } else if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileUploader
.class))) {
277 Log_OC
.d(TAG
, "Upload service connected");
278 mUploaderBinder
= (FileUploaderBinder
) service
;
286 public void onServiceDisconnected(ComponentName component
) {
287 if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileDownloader
.class))) {
288 Log_OC
.d(TAG
, "Download service suddenly disconnected");
289 mDownloaderBinder
= null
;
290 } else if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileUploader
.class))) {
291 Log_OC
.d(TAG
, "Upload service suddenly disconnected");
292 mUploaderBinder
= null
;
299 public void onStop() {
305 public void onDestroy() {
310 public boolean onOptionsItemSelected(MenuItem item
) {
311 boolean returnValue
= false
;
313 switch(item
.getItemId()){
314 case android
.R
.id
.home
:
315 backToDisplayActivity();
319 returnValue
= super.onOptionsItemSelected(item
);
327 protected void onResume() {
330 if (PinCheck
.checkIfPinEntry()){
331 Intent i
= new Intent(MainApp
.getAppContext(), PinCodeActivity
.class);
332 i
.putExtra(PinCodeActivity
.EXTRA_ACTIVITY
, "PreviewImageActivity");
336 //Log_OC.e(TAG, "ACTIVITY, ONRESUME");
337 mDownloadFinishReceiver
= new DownloadFinishReceiver();
339 IntentFilter filter
= new IntentFilter(FileDownloader
.getDownloadFinishMessage());
340 filter
.addAction(FileDownloader
.getDownloadAddedMessage());
341 registerReceiver(mDownloadFinishReceiver
, filter
);
345 protected void onPostResume() {
346 //Log_OC.e(TAG, "ACTIVITY, ONPOSTRESUME");
347 super.onPostResume();
351 public void onPause() {
352 if (mDownloadFinishReceiver
!= null
){
353 unregisterReceiver(mDownloadFinishReceiver
);
354 mDownloadFinishReceiver
= null
;
357 PinCheck
.setUnlockTimestamp();
362 private void backToDisplayActivity() {
367 public void showDetails(OCFile file
) {
368 Intent showDetailsIntent
= new Intent(this, FileDisplayActivity
.class);
369 showDetailsIntent
.setAction(FileDisplayActivity
.ACTION_DETAILS
);
370 showDetailsIntent
.putExtra(FileActivity
.EXTRA_FILE
, file
);
371 showDetailsIntent
.putExtra(FileActivity
.EXTRA_ACCOUNT
, AccountUtils
.getCurrentOwnCloudAccount(this));
372 startActivity(showDetailsIntent
);
373 int pos
= mPreviewImagePagerAdapter
.getFilePosition(file
);
374 file
= mPreviewImagePagerAdapter
.getFileAt(pos
);
379 private void requestForDownload(OCFile file
) {
380 if (mDownloaderBinder
== null
) {
381 Log_OC
.d(TAG
, "requestForDownload called without binder to download service");
383 } else if (!mDownloaderBinder
.isDownloading(getAccount(), file
)) {
384 Intent i
= new Intent(this, FileDownloader
.class);
385 i
.putExtra(FileDownloader
.EXTRA_ACCOUNT
, getAccount());
386 i
.putExtra(FileDownloader
.EXTRA_FILE
, file
);
392 * This method will be invoked when a new page becomes selected. Animation is not necessarily complete.
394 * @param Position Position index of the new selected page
397 public void onPageSelected(int position
) {
398 mSavedPosition
= position
;
399 mHasSavedPosition
= true
;
400 if (mDownloaderBinder
== null
) {
401 mRequestWaitingForBinder
= true
;
404 OCFile currentFile
= mPreviewImagePagerAdapter
.getFileAt(position
);
405 getSupportActionBar().setTitle(currentFile
.getFileName());
406 if (!currentFile
.isDown()) {
407 if (!mPreviewImagePagerAdapter
.pendingErrorAt(position
)) {
408 requestForDownload(currentFile
);
412 // Call to reset image zoom to initial state
413 ((PreviewImagePagerAdapter
) mViewPager
.getAdapter()).resetZoom();
419 * Called when the scroll state changes. Useful for discovering when the user begins dragging,
420 * when the pager is automatically settling to the current page. when it is fully stopped/idle.
422 * @param State The new scroll state (SCROLL_STATE_IDLE, _DRAGGING, _SETTLING
425 public void onPageScrollStateChanged(int state
) {
429 * This method will be invoked when the current page is scrolled, either as part of a programmatically
430 * initiated smooth scroll or a user initiated touch scroll.
432 * @param position Position index of the first page currently being displayed.
433 * Page position+1 will be visible if positionOffset is nonzero.
435 * @param positionOffset Value from [0, 1) indicating the offset from the page at position.
436 * @param positionOffsetPixels Value in pixels indicating the offset from position.
439 public void onPageScrolled(int position
, float positionOffset
, int positionOffsetPixels
) {
444 * Class waiting for broadcast events from the {@link FielDownloader} service.
446 * Updates the UI when a download is started or finished, provided that it is relevant for the
447 * folder displayed in the gallery.
449 private class DownloadFinishReceiver
extends BroadcastReceiver
{
451 public void onReceive(Context context
, Intent intent
) {
452 String accountName
= intent
.getStringExtra(FileDownloader
.ACCOUNT_NAME
);
453 String downloadedRemotePath
= intent
.getStringExtra(FileDownloader
.EXTRA_REMOTE_PATH
);
454 if (getAccount().name
.equals(accountName
) &&
455 downloadedRemotePath
!= null
) {
457 OCFile file
= getStorageManager().getFileByPath(downloadedRemotePath
);
458 int position
= mPreviewImagePagerAdapter
.getFilePosition(file
);
459 boolean downloadWasFine
= intent
.getBooleanExtra(FileDownloader
.EXTRA_DOWNLOAD_RESULT
, false
);
460 //boolean isOffscreen = Math.abs((mViewPager.getCurrentItem() - position)) <= mViewPager.getOffscreenPageLimit();
462 if (position
>= 0 && intent
.getAction().equals(FileDownloader
.getDownloadFinishMessage())) {
463 if (downloadWasFine
) {
464 mPreviewImagePagerAdapter
.updateFile(position
, file
);
467 mPreviewImagePagerAdapter
.updateWithDownloadError(position
);
469 mPreviewImagePagerAdapter
.notifyDataSetChanged(); // will trigger the creation of new fragments
472 Log_OC
.d(TAG
, "Download finished, but the fragment is offscreen");
476 removeStickyBroadcast(intent
);
481 @SuppressLint("InlinedApi")
482 public void toggleFullScreen() {
484 if (isHoneycombOrHigher()) {
486 boolean visible
= (mFullScreenAnchorView
.getSystemUiVisibility()
487 & View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
) == 0;
490 hideSystemUI(mFullScreenAnchorView
);
491 // actionBar.hide(); // propagated through
492 // OnSystemUiVisibilityChangeListener()
494 showSystemUI(mFullScreenAnchorView
);
495 // actionBar.show(); // propagated through
496 // OnSystemUiVisibilityChangeListener()
501 ActionBar actionBar
= getSupportActionBar();
502 if (!actionBar
.isShowing()) {
514 protected void onAccountSet(boolean stateWasRecovered
) {
515 super.onAccountSet(stateWasRecovered
);
516 if (getAccount() != null
) {
517 OCFile file
= getFile();
518 /// Validate handled file (first image to preview)
520 throw new IllegalStateException("Instanced with a NULL OCFile");
522 if (!file
.isImage()) {
523 throw new IllegalArgumentException("Non-image file passed as argument");
526 // Update file according to DB file, if it is possible
527 if (file
.getFileId() > FileDataStorageManager
.ROOT_PARENT_ID
)
528 file
= getStorageManager().getFileById(file
.getFileId());
531 /// Refresh the activity according to the Account and OCFile set
532 setFile(file
); // reset after getting it fresh from storageManager
533 getSupportActionBar().setTitle(getFile().getFileName());
534 //if (!stateWasRecovered) {
539 // handled file not in the current Account
546 public void onBrowsedDownTo(OCFile folder
) {
547 // TODO Auto-generated method stub
552 public void onTransferStateChanged(OCFile file
, boolean downloading
, boolean uploading
) {
553 // TODO Auto-generated method stub
558 @SuppressLint("InlinedApi")
559 private void hideSystemUI(View anchorView
) {
560 anchorView
.setSystemUiVisibility(
561 View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
// hides NAVIGATION BAR; Android >= 4.0
562 | View
.SYSTEM_UI_FLAG_FULLSCREEN
// hides STATUS BAR; Android >= 4.1
563 | View
.SYSTEM_UI_FLAG_IMMERSIVE
// stays interactive; Android >= 4.4
564 | View
.SYSTEM_UI_FLAG_LAYOUT_STABLE
// draw full window; Android >= 4.1
565 | View
.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// draw full window; Android >= 4.1
566 | View
.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
// draw full window; Android >= 4.1
570 @SuppressLint("InlinedApi")
571 private void showSystemUI(View anchorView
) {
572 anchorView
.setSystemUiVisibility(
573 View
.SYSTEM_UI_FLAG_LAYOUT_STABLE
// draw full window; Android >= 4.1
574 | View
.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// draw full window; Android >= 4.1
575 | View
.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
// draw full window; Android >= 4.1
580 * Checks if OS version is Honeycomb one or higher
584 private boolean isHoneycombOrHigher() {
585 if (Build
.VERSION
.SDK_INT
>= Build
.VERSION_CODES
.HONEYCOMB
) {