X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/adde411b6f23f1ecc73faff82de2c3543cdba753..ad7666370f248124a6c49846f78cd3cef71f19f0:/src/com/owncloud/android/ui/activity/ShareActivity.java diff --git a/src/com/owncloud/android/ui/activity/ShareActivity.java b/src/com/owncloud/android/ui/activity/ShareActivity.java index 0aacdeb5..9c4d33ef 100644 --- a/src/com/owncloud/android/ui/activity/ShareActivity.java +++ b/src/com/owncloud/android/ui/activity/ShareActivity.java @@ -25,8 +25,8 @@ import android.app.SearchManager; import android.content.Intent; import android.net.Uri; import android.os.Bundle; +import android.support.v4.app.Fragment; import android.support.v4.app.FragmentTransaction; -import android.widget.Toast; import com.owncloud.android.R; import com.owncloud.android.lib.common.utils.Log_OC; @@ -37,82 +37,56 @@ import com.owncloud.android.lib.common.operations.RemoteOperationResult; import com.owncloud.android.datamodel.OCFile; import com.owncloud.android.lib.resources.shares.OCShare; import com.owncloud.android.lib.resources.shares.ShareType; -import com.owncloud.android.operations.CreateShareWithShareeOperation; -import com.owncloud.android.operations.UnshareOperation; -import com.owncloud.android.ui.fragment.SearchFragment; +import com.owncloud.android.ui.fragment.SearchShareesFragment; import com.owncloud.android.ui.fragment.ShareFileFragment; import com.owncloud.android.utils.GetShareWithUsersAsyncTask; -import java.util.ArrayList; /** * Activity for sharing files */ public class ShareActivity extends FileActivity - implements GetShareWithUsersAsyncTask.OnGetSharesWithUsersTaskListener, - ShareFileFragment.OnShareFragmentInteractionListener, - SearchFragment.OnSearchFragmentInteractionListener { + implements ShareFileFragment.OnShareFragmentInteractionListener, + SearchShareesFragment.OnSearchFragmentInteractionListener { private static final String TAG = ShareActivity.class.getSimpleName(); private static final String TAG_SHARE_FRAGMENT = "SHARE_FRAGMENT"; private static final String TAG_SEARCH_FRAGMENT = "SEARCH_USER_AND_GROUPS_FRAGMENT"; - private static final String DIALOG_WAIT_LOAD_DATA = "DIALOG_WAIT_LOAD_DATA"; - - private ShareFileFragment mShareFileFragment; - private SearchFragment mSearchFragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); - onAccountSet(false); setContentView(R.layout.share_activity); FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); - if (savedInstanceState != null) { - - mShareFileFragment = (ShareFileFragment) getSupportFragmentManager(). - getFragment(savedInstanceState, TAG_SHARE_FRAGMENT); - mSearchFragment = (SearchFragment) getSupportFragmentManager(). - getFragment(savedInstanceState, TAG_SEARCH_FRAGMENT); - - if (mShareFileFragment != null){ - ft.replace(R.id.share_fragment_container, mShareFileFragment, TAG_SHARE_FRAGMENT); - - if (mSearchFragment != null){ - ft.hide(mShareFileFragment); - ft.add(R.id.share_fragment_container, mSearchFragment, TAG_SEARCH_FRAGMENT); - } - ft.commit(); - } - - } else { - // Add Share fragment - mShareFileFragment = ShareFileFragment.newInstance(getFile(), getAccount()); - ft.replace(R.id.share_fragment_container, mShareFileFragment, TAG_SHARE_FRAGMENT); + if (savedInstanceState == null) { + // Add Share fragment on first creation + Fragment fragment = ShareFileFragment.newInstance(getFile(), getAccount()); + ft.replace(R.id.share_fragment_container, fragment, TAG_SHARE_FRAGMENT); ft.commit(); - - mSearchFragment = null; } - handleIntent(getIntent()); + } + protected void onAccountSet(boolean stateWasRecovered) { + super.onAccountSet(stateWasRecovered); + // Load data into the list + Log_OC.d(TAG, "Refreshing lists on account set"); + refreshSharesFromStorageManager(); + + // Request for a refresh of the data through the server (starts an Async Task) + refreshUsersOrGroupsListFromServer(); } @Override protected void onNewIntent(Intent intent) { - setIntent(intent); - handleIntent(intent); - } - - - private void handleIntent(Intent intent) { // Verify the action and get the query if (Intent.ACTION_SEARCH.equals(intent.getAction())) { String query = intent.getStringExtra(SearchManager.QUERY); @@ -131,11 +105,6 @@ public class ShareActivity extends FileActivity } private void doShareWith(String shareeName, boolean isGroup) { - if (isGroup) { - Log_OC.d(TAG, "You want to SHARE with GROUP [" + shareeName + "]"); - } else { - Log_OC.d(TAG, "You want to SHARE with USER [" + shareeName + "]"); - } getFileOperationsHelper().shareFileWithSharee( getFile(), shareeName, @@ -144,29 +113,18 @@ public class ShareActivity extends FileActivity } @Override - protected void onSaveInstanceState(Bundle outState) { - super.onSaveInstanceState(outState); - //Save the fragment's instance - getSupportFragmentManager().putFragment(outState, TAG_SHARE_FRAGMENT, mShareFileFragment); - if (mSearchFragment != null) { - getSupportFragmentManager().putFragment(outState, TAG_SEARCH_FRAGMENT, mSearchFragment); - } - - } - - @Override - public void showSearchUsersAndGroups(ArrayList shares) { + public void showSearchUsersAndGroups() { + // replace ShareFragment with SearchFragment on demand FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); - mSearchFragment = SearchFragment.newInstance(getFile(), getAccount(), shares); - ft.hide(mShareFileFragment); - ft.add(R.id.share_fragment_container, mSearchFragment, TAG_SEARCH_FRAGMENT); - ft.addToBackStack(TAG_SEARCH_FRAGMENT); + Fragment searchFragment = SearchShareesFragment.newInstance(getFile(), getAccount()); + ft.replace(R.id.share_fragment_container, searchFragment, TAG_SEARCH_FRAGMENT); + ft.addToBackStack(null); // BACK button will recover the ShareFragment ft.commit(); } @Override // Call to Unshare operation - public void unshareWith(OCShare share){ + public void unshareWith(OCShare share) { OCFile file = getFile(); getFileOperationsHelper().unshareFileWithUserOrGroup(file, share.getShareType(), share.getShareWith()); } @@ -175,25 +133,15 @@ public class ShareActivity extends FileActivity * Get users and groups from the server to fill in the "share with" list */ @Override - public void refreshUsersOrGroupsListFromServer(){ + public void refreshUsersOrGroupsListFromServer() { // Show loading showLoadingDialog(getString(R.string.common_loading)); // Get Users and Groups GetShareWithUsersAsyncTask getTask = new GetShareWithUsersAsyncTask(this); - Object[] params = { getFile(), getAccount(), getStorageManager()}; + Object[] params = {getFile(), getAccount(), getStorageManager()}; getTask.execute(params); } - @Override - public void onBackPressed() { - super.onBackPressed(); - if (mSearchFragment != null){ - mSearchFragment = null; - getSupportFragmentManager().popBackStackImmediate(); - mShareFileFragment.refreshUsersOrGroupsListFromDB(); - } - } - /** * Updates the view associated to the activity after the finish of some operation over files * in the current account. @@ -204,37 +152,49 @@ public class ShareActivity extends FileActivity @Override public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) { super.onRemoteOperationFinish(operation, result); - if (operation instanceof UnshareOperation) { - refreshUsersInLists(); - } else if(operation instanceof CreateShareWithShareeOperation){ - refreshUsersInLists(); - // Clean action - getIntent().setAction(null); + + if (result.isSuccess()) { + Log_OC.d(TAG, "Refreshing view on successful operation"); + refreshSharesFromStorageManager(); } } - @Override - public void onGetDataShareWithFinish(RemoteOperationResult result) { - // Remove loading - dismissLoadingDialog(); - if (result != null && result.isSuccess()) { - Log_OC.d(TAG, "Get Data Share With finishes sucessfully"); - } else { - Toast.makeText(this, result.getLogMessage(), Toast.LENGTH_SHORT).show(); + /** + * Updates the view, reading data from {@link com.owncloud.android.datamodel.FileDataStorageManager} + */ + private void refreshSharesFromStorageManager() { + + ShareFileFragment shareFileFragment = getShareFileFragment(); + if (shareFileFragment != null + && shareFileFragment.isAdded()) { // only if added to the view hierarchy!! + shareFileFragment.refreshUsersOrGroupsListFromDB(); + shareFileFragment.refreshPublicShareFromDB(); + } + + SearchShareesFragment searchShareesFragment = getSearchFragment(); + if (searchShareesFragment != null && + searchShareesFragment.isAdded()) { // only if added to the view hierarchy!! + searchShareesFragment.refreshUsersOrGroupsListFromDB(); } + } - // Data is on Database - refreshUsersInLists(); + /** + * Shortcut to get access to the {@link ShareFileFragment} instance, if any + * + * @return A {@link ShareFileFragment} instance, or null + */ + private ShareFileFragment getShareFileFragment() { + return (ShareFileFragment) getSupportFragmentManager().findFragmentByTag(TAG_SHARE_FRAGMENT); } - private void refreshUsersInLists(){ - if (mShareFileFragment != null){ - mShareFileFragment.refreshUsersOrGroupsListFromDB(); - } - if (mSearchFragment != null) { - mSearchFragment.refreshUsersOrGroupsListFromDB(); - } + /** + * Shortcut to get access to the {@link SearchShareesFragment} instance, if any + * + * @return A {@link SearchShareesFragment} instance, or null + */ + private SearchShareesFragment getSearchFragment() { + return (SearchShareesFragment) getSupportFragmentManager().findFragmentByTag(TAG_SEARCH_FRAGMENT); } }