123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- /*
- * Nextcloud Android client application
- *
- * @author Andy Scherzinger
- * @author Chris Narkiewicz <hello@ezaquarii.com>
- * @author TSI-mc
- *
- * Copyright (C) 2018 Andy Scherzinger
- * Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
- * Copyright (C) 2020 TSI-mc
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.fragment;
- import android.accounts.AccountManager;
- import android.app.AlertDialog;
- import android.app.SearchManager;
- import android.content.Context;
- import android.graphics.drawable.Drawable;
- import android.os.Bundle;
- import android.text.InputType;
- import android.text.TextUtils;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import com.nextcloud.client.account.User;
- import com.nextcloud.client.account.UserAccountManager;
- import com.nextcloud.client.di.Injectable;
- import com.nextcloud.client.network.ClientFactory;
- import com.owncloud.android.R;
- import com.owncloud.android.databinding.FileDetailsSharingFragmentBinding;
- import com.owncloud.android.datamodel.FileDataStorageManager;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.lib.common.OwnCloudAccount;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.resources.shares.OCShare;
- import com.owncloud.android.lib.resources.shares.ShareType;
- import com.owncloud.android.lib.resources.status.NextcloudVersion;
- import com.owncloud.android.lib.resources.status.OCCapability;
- import com.owncloud.android.lib.resources.status.OwnCloudVersion;
- import com.owncloud.android.ui.activity.FileActivity;
- import com.owncloud.android.ui.activity.FileDisplayActivity;
- import com.owncloud.android.ui.adapter.ShareeListAdapter;
- import com.owncloud.android.ui.adapter.ShareeListAdapterListener;
- import com.owncloud.android.ui.asynctasks.RetrieveHoverCardAsyncTask;
- import com.owncloud.android.ui.dialog.SharePasswordDialogFragment;
- import com.owncloud.android.ui.fragment.util.FileDetailSharingFragmentHelper;
- import com.owncloud.android.ui.helpers.FileOperationsHelper;
- import com.owncloud.android.utils.ClipboardUtil;
- import com.owncloud.android.utils.DisplayUtils;
- import com.owncloud.android.utils.theme.ThemeToolbarUtils;
- import java.util.ArrayList;
- import java.util.List;
- import javax.inject.Inject;
- import androidx.annotation.NonNull;
- import androidx.annotation.Nullable;
- import androidx.annotation.VisibleForTesting;
- import androidx.appcompat.widget.SearchView;
- import androidx.fragment.app.Fragment;
- import androidx.recyclerview.widget.LinearLayoutManager;
- public class FileDetailSharingFragment extends Fragment implements ShareeListAdapterListener,
- DisplayUtils.AvatarGenerationListener,
- Injectable, FileDetailsSharingMenuBottomSheetActions, QuickSharingPermissionsBottomSheetDialog.QuickPermissionSharingBottomSheetActions {
- private static final String ARG_FILE = "FILE";
- private static final String ARG_USER = "USER";
- public static final int PERMISSION_EDITING_ALLOWED = 17;
- private OCFile file;
- private User user;
- private OCCapability capabilities;
- private FileOperationsHelper fileOperationsHelper;
- private FileActivity fileActivity;
- private FileDataStorageManager fileDataStorageManager;
- private FileDetailsSharingFragmentBinding binding;
- private OnEditShareListener onEditShareListener;
- @Inject UserAccountManager accountManager;
- @Inject ClientFactory clientFactory;
- public static FileDetailSharingFragment newInstance(OCFile file, User user) {
- FileDetailSharingFragment fragment = new FileDetailSharingFragment();
- Bundle args = new Bundle();
- args.putParcelable(ARG_FILE, file);
- args.putParcelable(ARG_USER, user);
- fragment.setArguments(args);
- return fragment;
- }
- @Override
- public void onCreate(@Nullable Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- if (savedInstanceState != null) {
- file = savedInstanceState.getParcelable(ARG_FILE);
- user = savedInstanceState.getParcelable(ARG_USER);
- } else {
- Bundle arguments = getArguments();
- if (arguments != null) {
- file = getArguments().getParcelable(ARG_FILE);
- user = getArguments().getParcelable(ARG_USER);
- }
- }
- if (file == null) {
- throw new IllegalArgumentException("File may not be null");
- }
- if (user == null) {
- throw new IllegalArgumentException("Account may not be null");
- }
- fileActivity = (FileActivity) getActivity();
- if (fileActivity == null) {
- throw new IllegalArgumentException("FileActivity may not be null");
- }
- }
- @Override
- public void onActivityCreated(Bundle savedInstanceState) {
- super.onActivityCreated(savedInstanceState);
- refreshCapabilitiesFromDB();
- refreshSharesFromDB();
- }
- @Override
- public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
- binding = FileDetailsSharingFragmentBinding.inflate(inflater, container, false);
- View view = binding.getRoot();
- fileOperationsHelper = fileActivity.getFileOperationsHelper();
- fileDataStorageManager = fileActivity.getStorageManager();
- AccountManager accountManager = AccountManager.get(getContext());
- String userId = accountManager.getUserData(user.toPlatformAccount(),
- com.owncloud.android.lib.common.accounts.AccountUtils.Constants.KEY_USER_ID);
- binding.sharesList.setAdapter(new ShareeListAdapter(fileActivity,
- new ArrayList<>(),
- this,
- userId,
- user));
- binding.sharesList.setLayoutManager(new LinearLayoutManager(getContext()));
- setupView();
- return view;
- }
- @Override
- public void onDestroyView() {
- super.onDestroyView();
- binding = null;
- }
- @Override
- public void onAttach(@NonNull Context context) {
- super.onAttach(context);
- if (!(getActivity() instanceof FileActivity)) {
- throw new IllegalArgumentException("Calling activity must be of type FileActivity");
- }
- try {
- onEditShareListener = (OnEditShareListener) context;
- } catch (Exception ignored) {
- throw new IllegalArgumentException("Calling activity must implement the interface");
- }
- }
- private void setupView() {
- setShareWithYou();
- FileDetailSharingFragmentHelper.setupSearchView(
- (SearchManager) fileActivity.getSystemService(Context.SEARCH_SERVICE),
- binding.searchView,
- fileActivity.getComponentName());
- ThemeToolbarUtils.themeSearchView(binding.searchView, requireContext());
- if (file.canReshare()) {
- binding.searchView.setQueryHint(getResources().getString(R.string.share_search));
- } else {
- binding.searchView.setQueryHint(getResources().getString(R.string.reshare_not_allowed));
- binding.searchView.setInputType(InputType.TYPE_NULL);
- disableSearchView(binding.searchView);
- }
- }
- private void disableSearchView(View view) {
- view.setEnabled(false);
- if (view instanceof ViewGroup) {
- ViewGroup viewGroup = (ViewGroup) view;
- for (int i = 0; i < viewGroup.getChildCount(); i++) {
- disableSearchView(viewGroup.getChildAt(i));
- }
- }
- }
- private void setShareWithYou() {
- if (accountManager.userOwnsFile(file, user)) {
- binding.sharedWithYouContainer.setVisibility(View.GONE);
- } else {
- binding.sharedWithYouUsername.setText(
- String.format(getString(R.string.shared_with_you_by), file.getOwnerDisplayName()));
- DisplayUtils.setAvatar(user,
- file.getOwnerId(),
- this,
- getResources().getDimension(
- R.dimen.file_list_item_avatar_icon_radius),
- getResources(),
- binding.sharedWithYouAvatar,
- getContext());
- binding.sharedWithYouAvatar.setVisibility(View.VISIBLE);
- String note = file.getNote();
- if (!TextUtils.isEmpty(note)) {
- binding.sharedWithYouNote.setText(file.getNote());
- binding.sharedWithYouNoteContainer.setVisibility(View.VISIBLE);
- } else {
- binding.sharedWithYouNoteContainer.setVisibility(View.GONE);
- }
- }
- }
- @Override
- public void copyInternalLink() {
- OwnCloudAccount account = accountManager.getCurrentOwnCloudAccount();
- if (account == null) {
- DisplayUtils.showSnackMessage(getView(), getString(R.string.could_not_retrieve_url));
- return;
- }
- FileDisplayActivity.showShareLinkDialog(fileActivity, file, createInternalLink(account, file));
- }
- private String createInternalLink(OwnCloudAccount account, OCFile file) {
- return account.getBaseUri() + "/index.php/f/" + file.getLocalId();
- }
- @Override
- public void createPublicShareLink() {
- if (capabilities != null && (capabilities.getFilesSharingPublicPasswordEnforced().isTrue() ||
- capabilities.getFilesSharingPublicAskForOptionalPassword().isTrue())) {
- // password enforced by server, request to the user before trying to create
- requestPasswordForShareViaLink(true,
- capabilities.getFilesSharingPublicAskForOptionalPassword().isTrue());
- } else {
- // create without password if not enforced by server or we don't know if enforced;
- fileOperationsHelper.shareFileViaPublicShare(file, null);
- }
- }
- private void showSendLinkTo(OCShare publicShare) {
- if (file.isSharedViaLink()) {
- if (TextUtils.isEmpty(publicShare.getShareLink())) {
- fileOperationsHelper.getFileWithLink(file);
- } else {
- FileDisplayActivity.showShareLinkDialog(fileActivity, file, publicShare.getShareLink());
- }
- }
- }
- public void copyLink(OCShare share) {
- if (file.isSharedViaLink()) {
- if (TextUtils.isEmpty(share.getShareLink())) {
- fileOperationsHelper.getFileWithLink(file);
- } else {
- ClipboardUtil.copyToClipboard(getActivity(), share.getShareLink());
- }
- }
- }
- /**
- * show share action bottom sheet
- *
- * @param share
- */
- @Override
- @VisibleForTesting
- public void showSharingMenuActionSheet(OCShare share) {
- new FileDetailSharingMenuBottomSheetDialog(fileActivity, this, share).show();
- }
- /**
- * show quick sharing permission dialog
- * @param share
- */
- @Override
- public void showPermissionsDialog(OCShare share) {
- new QuickSharingPermissionsBottomSheetDialog(fileActivity, this, share).show();
- }
- /**
- * Updates the UI after the result of an update operation on the edited {@link OCFile}.
- *
- * @param result {@link RemoteOperationResult} of an update on the edited {@link OCFile} sharing information.
- * @param file the edited {@link OCFile}
- */
- public void onUpdateShareInformation(RemoteOperationResult result, OCFile file) {
- this.file = file;
- if (result.isSuccess()) {
- refreshUiFromDB();
- } else {
- setupView();
- }
- }
- /**
- * Get {@link OCShare} instance from DB and updates the UI.
- */
- private void refreshUiFromDB() {
- refreshSharesFromDB();
- // Updates UI with new state
- setupView();
- }
- private void unshareWith(OCShare share) {
- fileOperationsHelper.unshareShare(file, share);
- }
- /**
- * Starts a dialog that requests a password to the user to protect a share link.
- *
- * @param createShare When 'true', the request for password will be followed by the creation of a new public
- * link; when 'false', a public share is assumed to exist, and the password is bound to it.
- * @param askForPassword if true, password is optional
- */
- public void requestPasswordForShareViaLink(boolean createShare, boolean askForPassword) {
- SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(file,
- createShare,
- askForPassword);
- dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
- }
- @Override
- public void requestPasswordForShare(OCShare share, boolean askForPassword) {
- SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(share, askForPassword);
- dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
- }
- @Override
- public void showProfileBottomSheet(User user, String shareWith) {
- if (user.getServer().getVersion().isNewerOrEqual(NextcloudVersion.Companion.getNextcloud_23())) {
- new RetrieveHoverCardAsyncTask(user, shareWith, fileActivity, clientFactory).execute();
- }
- }
- /**
- * Get known server capabilities from DB
- */
- public void refreshCapabilitiesFromDB() {
- capabilities = fileDataStorageManager.getCapability(user.getAccountName());
- }
- /**
- * Get public link from the DB to fill in the "Share link" section in the UI. Takes into account server capabilities
- * before reading database.
- */
- public void refreshSharesFromDB() {
- ShareeListAdapter adapter = (ShareeListAdapter) binding.sharesList.getAdapter();
- if (adapter == null) {
- DisplayUtils.showSnackMessage(getView(), getString(R.string.could_not_retrieve_shares));
- return;
- }
- adapter.getShares().clear();
- // to show share with users/groups info
- List<OCShare> shares = fileDataStorageManager.getSharesWithForAFile(file.getRemotePath(),
- user.toPlatformAccount().name);
- adapter.addShares(shares);
- if (FileDetailSharingFragmentHelper.isPublicShareDisabled(capabilities) || !file.canReshare()) {
- return;
- }
- // Get public share
- List<OCShare> publicShares = fileDataStorageManager.getSharesByPathAndType(file.getRemotePath(),
- ShareType.PUBLIC_LINK,
- "");
- if (publicShares.isEmpty() && containsNoNewPublicShare(adapter.getShares())) {
- publicShares.add(new OCShare().setShareType(ShareType.NEW_PUBLIC_LINK));
- } else {
- adapter.removeNewPublicShare();
- }
- adapter.addShares(publicShares);
- }
- private boolean containsNoNewPublicShare(List<OCShare> shares) {
- for (OCShare share : shares) {
- if (share.getShareType() == ShareType.NEW_PUBLIC_LINK) {
- return false;
- }
- }
- return true;
- }
- @Override
- public void onSaveInstanceState(@NonNull Bundle outState) {
- super.onSaveInstanceState(outState);
- outState.putParcelable(ARG_FILE, file);
- outState.putParcelable(ARG_USER, user);
- }
- @Override
- public void avatarGenerated(Drawable avatarDrawable, Object callContext) {
- binding.sharedWithYouAvatar.setImageDrawable(avatarDrawable);
- }
- @Override
- public boolean shouldCallGeneratedCallback(String tag, Object callContext) {
- return false;
- }
- private boolean isReshareForbidden(OCShare share) {
- return ShareType.FEDERATED.equals(share.getShareType()) ||
- capabilities != null && capabilities.getFilesSharingResharing().isFalse();
- }
- @VisibleForTesting
- public void search(String query) {
- SearchView searchView = getView().findViewById(R.id.searchView);
- searchView.setQuery(query, true);
- }
- public OCFile getFile() {
- return file;
- }
- @Override
- public void openIn(OCShare share) {
- fileOperationsHelper.sendShareFile(file);
- }
- @Override
- public void advancedPermissions(OCShare share) {
- modifyExistingShare(share, FileDetailsSharingProcessFragment.SCREEN_TYPE_PERMISSION);
- }
- @Override
- public void sendNewEmail(OCShare share) {
- modifyExistingShare(share, FileDetailsSharingProcessFragment.SCREEN_TYPE_NOTE);
- }
- @Override
- public void unShare(OCShare share) {
- unshareWith(share);
- ShareeListAdapter adapter = (ShareeListAdapter) binding.sharesList.getAdapter();
- if (adapter == null) {
- DisplayUtils.showSnackMessage(getView(), getString(R.string.failed_update_ui));
- return;
- }
- adapter.remove(share);
- }
- @Override
- public void sendLink(OCShare share) {
- if (file.isSharedViaLink() && !TextUtils.isEmpty(share.getShareLink())) {
- FileDisplayActivity.showShareLinkDialog(fileActivity, file, share.getShareLink());
- } else {
- showSendLinkTo(share);
- }
- }
- @Override
- public void addAnotherLink(OCShare share) {
- createPublicShareLink();
- }
- private void modifyExistingShare(OCShare share, int screenTypePermission) {
- onEditShareListener.editExistingShare(share, screenTypePermission, !isReshareForbidden(share),
- capabilities.getVersion().isNewerOrEqual(OwnCloudVersion.nextcloud_18));
- }
- @Override
- public void onQuickPermissionChanged(OCShare share, int permission) {
- fileOperationsHelper.setPermissionsToShare(share, permission);
- }
- public interface OnEditShareListener {
- void editExistingShare(OCShare share, int screenTypePermission, boolean isReshareShown,
- boolean isExpiryDateShown);
- void onShareProcessClosed();
- }
- }
|