FileDetailSharingFragment.java 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Andy Scherzinger
  5. * Copyright (C) 2018 Andy Scherzinger
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public
  18. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.owncloud.android.ui.fragment;
  21. import android.accounts.Account;
  22. import android.app.SearchManager;
  23. import android.content.Context;
  24. import android.content.res.Resources;
  25. import android.graphics.drawable.Drawable;
  26. import android.os.Bundle;
  27. import android.text.TextUtils;
  28. import android.view.LayoutInflater;
  29. import android.view.Menu;
  30. import android.view.MenuItem;
  31. import android.view.View;
  32. import android.view.ViewGroup;
  33. import android.widget.ImageView;
  34. import android.widget.LinearLayout;
  35. import android.widget.PopupMenu;
  36. import android.widget.TextView;
  37. import com.google.android.material.snackbar.Snackbar;
  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.lib.common.operations.RemoteOperationResult;
  43. import com.owncloud.android.lib.resources.shares.OCShare;
  44. import com.owncloud.android.lib.resources.shares.SharePermissionsBuilder;
  45. import com.owncloud.android.lib.resources.shares.ShareType;
  46. import com.owncloud.android.lib.resources.status.OCCapability;
  47. import com.owncloud.android.ui.activity.FileActivity;
  48. import com.owncloud.android.ui.activity.FileDisplayActivity;
  49. import com.owncloud.android.ui.adapter.UserListAdapter;
  50. import com.owncloud.android.ui.decoration.SimpleListItemDividerDecoration;
  51. import com.owncloud.android.ui.dialog.ExpirationDatePickerDialogFragment;
  52. import com.owncloud.android.ui.dialog.NoteDialogFragment;
  53. import com.owncloud.android.ui.dialog.SharePasswordDialogFragment;
  54. import com.owncloud.android.ui.fragment.util.FileDetailSharingFragmentHelper;
  55. import com.owncloud.android.ui.fragment.util.SharingMenuHelper;
  56. import com.owncloud.android.ui.helpers.FileOperationsHelper;
  57. import com.owncloud.android.utils.ClipboardUtil;
  58. import com.owncloud.android.utils.DisplayUtils;
  59. import com.owncloud.android.utils.ThemeUtils;
  60. import java.util.List;
  61. import androidx.annotation.NonNull;
  62. import androidx.annotation.Nullable;
  63. import androidx.appcompat.widget.AppCompatCheckBox;
  64. import androidx.appcompat.widget.SearchView;
  65. import androidx.fragment.app.Fragment;
  66. import androidx.recyclerview.widget.LinearLayoutManager;
  67. import androidx.recyclerview.widget.RecyclerView;
  68. import butterknife.BindView;
  69. import butterknife.ButterKnife;
  70. import butterknife.OnClick;
  71. import butterknife.Unbinder;
  72. public class FileDetailSharingFragment extends Fragment implements UserListAdapter.ShareeListAdapterListener,
  73. DisplayUtils.AvatarGenerationListener {
  74. private static final String ARG_FILE = "FILE";
  75. private static final String ARG_ACCOUNT = "ACCOUNT";
  76. // to show share with users/groups info
  77. private List<OCShare> shares;
  78. private OCFile file;
  79. private Account account;
  80. private OCCapability capabilities;
  81. private OCShare publicShare;
  82. private FileOperationsHelper fileOperationsHelper;
  83. private FileDisplayActivity fileDisplayActivity;
  84. private FileDataStorageManager fileDataStorageManager;
  85. private Unbinder unbinder;
  86. @BindView(R.id.searchView)
  87. SearchView searchView;
  88. @BindView(R.id.shareUsersList)
  89. RecyclerView usersList;
  90. @BindView(R.id.shareNoUsers)
  91. TextView noList;
  92. @BindView(R.id.share_by_link)
  93. AppCompatCheckBox shareByLink;
  94. @BindView(R.id.share_link_copy_icon)
  95. ImageView shareLinkCopyIcon;
  96. @BindView(R.id.overflow_menu_share_link)
  97. ImageView overflowMenuShareLink;
  98. @BindView(R.id.share_by_link_allow_editing)
  99. AppCompatCheckBox shareByLinkAllowEditing;
  100. @BindView(R.id.share_by_link_container)
  101. LinearLayout shareByLinkContainer;
  102. @BindView(R.id.shared_with_you_container)
  103. LinearLayout sharedWithYouContainer;
  104. @BindView(R.id.shared_with_you_avatar)
  105. ImageView sharedWithYouAvatar;
  106. @BindView(R.id.shared_with_you_username)
  107. TextView sharedWithYouUsername;
  108. public static FileDetailSharingFragment newInstance(OCFile file, Account account) {
  109. FileDetailSharingFragment fragment = new FileDetailSharingFragment();
  110. Bundle args = new Bundle();
  111. args.putParcelable(ARG_FILE, file);
  112. args.putParcelable(ARG_ACCOUNT, account);
  113. fragment.setArguments(args);
  114. return fragment;
  115. }
  116. @Override
  117. public void onCreate(@Nullable Bundle savedInstanceState) {
  118. super.onCreate(savedInstanceState);
  119. if (savedInstanceState != null) {
  120. file = savedInstanceState.getParcelable(FileActivity.EXTRA_FILE);
  121. account = savedInstanceState.getParcelable(FileActivity.EXTRA_ACCOUNT);
  122. } else {
  123. Bundle arguments = getArguments();
  124. if (arguments != null) {
  125. file = getArguments().getParcelable(ARG_FILE);
  126. account = getArguments().getParcelable(ARG_ACCOUNT);
  127. }
  128. }
  129. if (file == null) {
  130. throw new IllegalArgumentException("File may not be null");
  131. }
  132. if (account == null) {
  133. throw new IllegalArgumentException("Account may not be null");
  134. }
  135. fileDisplayActivity = (FileDisplayActivity) getActivity();
  136. if (fileDisplayActivity == null) {
  137. throw new IllegalArgumentException("FileActivity may not be null");
  138. }
  139. fileOperationsHelper = fileDisplayActivity.getFileOperationsHelper();
  140. fileDataStorageManager = fileDisplayActivity.getStorageManager();
  141. }
  142. @Override
  143. public void onActivityCreated(Bundle savedInstanceState) {
  144. super.onActivityCreated(savedInstanceState);
  145. refreshCapabilitiesFromDB();
  146. refreshPublicShareFromDB();
  147. }
  148. @Override
  149. public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
  150. View view = inflater.inflate(R.layout.file_details_sharing_fragment, container, false);
  151. unbinder = ButterKnife.bind(this, view);
  152. if (fileDataStorageManager == null) {
  153. fileDataStorageManager = new FileDataStorageManager(account, fileDisplayActivity.getContentResolver());
  154. }
  155. setupView();
  156. return view;
  157. }
  158. @Override
  159. public void onDestroy() {
  160. super.onDestroy();
  161. unbinder.unbind();
  162. }
  163. @Override
  164. public void onAttach(Context context) {
  165. super.onAttach(context);
  166. if (!(getActivity() instanceof FileActivity)) {
  167. throw new IllegalArgumentException("Calling activity must be of type FileActivity");
  168. }
  169. }
  170. private void setupView() {
  171. setShareByLinkInfo(file.isSharedViaLink());
  172. setShareWithUserInfo();
  173. setShareWithYou();
  174. FileDetailSharingFragmentHelper.setupSearchView(
  175. (SearchManager) fileDisplayActivity.getSystemService(Context.SEARCH_SERVICE), searchView,
  176. fileDisplayActivity.getComponentName());
  177. ThemeUtils.themeSearchView(getContext(), searchView, false);
  178. }
  179. /**
  180. * Updates Share by link UI
  181. *
  182. * @param isShareByLink flag is share by link is enable
  183. */
  184. public void setShareByLinkInfo(boolean isShareByLink) {
  185. shareByLink.setChecked(isShareByLink);
  186. if (isShareByLink) {
  187. shareLinkCopyIcon.setVisibility(View.VISIBLE);
  188. } else {
  189. shareLinkCopyIcon.setVisibility(View.INVISIBLE);
  190. }
  191. int accentColor = ThemeUtils.primaryAccentColor(getContext());
  192. ThemeUtils.tintCheckbox(shareByLink, accentColor);
  193. ThemeUtils.tintCheckbox(shareByLinkAllowEditing, accentColor);
  194. setLinkDetailVisible(isShareByLink);
  195. }
  196. private void setLinkDetailVisible(boolean visible) {
  197. if (visible) {
  198. if (file.isFolder()) {
  199. shareByLinkAllowEditing.setVisibility(View.VISIBLE);
  200. } else {
  201. shareByLinkAllowEditing.setVisibility(View.INVISIBLE);
  202. }
  203. overflowMenuShareLink.setVisibility(View.VISIBLE);
  204. } else {
  205. shareByLinkAllowEditing.setVisibility(View.INVISIBLE);
  206. overflowMenuShareLink.setVisibility(View.INVISIBLE);
  207. }
  208. }
  209. /**
  210. * Update Share With data
  211. */
  212. public void setShareWithUserInfo() {
  213. // Get Users and Groups
  214. shares = fileDataStorageManager.getSharesWithForAFile(file.getRemotePath(), account.name);
  215. // Update list of users/groups
  216. updateListOfUserGroups();
  217. }
  218. private void setShareWithYou() {
  219. if (AccountUtils.accountOwnsFile(file, account)) {
  220. sharedWithYouContainer.setVisibility(View.GONE);
  221. } else {
  222. sharedWithYouUsername.setText(
  223. String.format(getString(R.string.shared_with_you_by), file.getOwnerDisplayName()));
  224. DisplayUtils.setAvatar(account, file.getOwnerId(), this, getResources().getDimension(
  225. R.dimen.file_list_item_avatar_icon_radius), getResources(), sharedWithYouAvatar,
  226. getContext());
  227. sharedWithYouAvatar.setVisibility(View.VISIBLE);
  228. }
  229. }
  230. private void updateListOfUserGroups() {
  231. // TODO Refactoring: create a new {@link ShareUserListAdapter} instance with every call should not be needed
  232. if (shares.size() > 0) {
  233. usersList.setVisibility(View.VISIBLE);
  234. usersList.setAdapter(new UserListAdapter(fileDisplayActivity.getSupportFragmentManager(), fileDisplayActivity, shares,
  235. account, file, this));
  236. usersList.setLayoutManager(new LinearLayoutManager(getContext()));
  237. usersList.addItemDecoration(new SimpleListItemDividerDecoration(getContext()));
  238. noList.setVisibility(View.GONE);
  239. } else {
  240. usersList.setVisibility(View.GONE);
  241. noList.setVisibility(View.VISIBLE);
  242. }
  243. }
  244. @OnClick(R.id.share_by_link)
  245. public void toggleShareByLink() {
  246. if (shareByLink.isChecked()) {
  247. createShareLink();
  248. } else {
  249. fileOperationsHelper.unshareFileViaLink(file);
  250. }
  251. }
  252. private void createShareLink() {
  253. if (capabilities != null &&
  254. capabilities.getFilesSharingPublicPasswordEnforced().isTrue()) {
  255. // password enforced by server, request to the user before trying to create
  256. requestPasswordForShareViaLink(true);
  257. } else {
  258. // create without password if not enforced by server or we don't know if enforced;
  259. fileOperationsHelper.shareFileViaLink(file, null);
  260. }
  261. }
  262. private void showSendLinkTo() {
  263. if (file.isSharedViaLink()) {
  264. if (TextUtils.isEmpty(file.getPublicLink())) {
  265. fileOperationsHelper.getFileWithLink(file);
  266. } else {
  267. FileDisplayActivity.showShareLinkDialog(fileDisplayActivity, file.getPublicLink());
  268. }
  269. }
  270. }
  271. @OnClick({R.id.share_link_copy_icon})
  272. public void copyLinkToClipboard() {
  273. if (file.isSharedViaLink()) {
  274. if (TextUtils.isEmpty(file.getPublicLink())) {
  275. fileOperationsHelper.getFileWithLink(file);
  276. } else {
  277. ClipboardUtil.copyToClipboard(getActivity(), file.getPublicLink());
  278. }
  279. }
  280. }
  281. @OnClick(R.id.share_by_link_allow_editing)
  282. public void toggleShareLinkAllowEditing() {
  283. if (file.isSharedViaLink()) {
  284. fileOperationsHelper.setUploadPermissionsToShare(file, shareByLinkAllowEditing.isChecked());
  285. }
  286. }
  287. @OnClick(R.id.overflow_menu_share_link)
  288. public void showLinkOverflowMenu() {
  289. Context context = getContext();
  290. if (context != null && ThemeUtils.themingEnabled(context)) {
  291. // use grey as fallback for elements where custom theming is not available
  292. context.getTheme().applyStyle(R.style.FallbackThemingTheme, true);
  293. } else {
  294. context = getActivity();
  295. }
  296. PopupMenu popup = new PopupMenu(context, overflowMenuShareLink);
  297. popup.inflate(R.menu.file_detail_sharing_link_menu);
  298. prepareOptionsMenu(popup.getMenu());
  299. popup.setOnMenuItemClickListener(this::optionsItemSelected);
  300. popup.show();
  301. }
  302. private void prepareOptionsMenu(Menu menu) {
  303. Resources res = getResources();
  304. SharingMenuHelper.setupHideFileListingMenuItem(
  305. menu.findItem(R.id.action_hide_file_listing),
  306. file.isFolder(),
  307. shareByLinkAllowEditing.isChecked(),
  308. publicShare.getPermissions()
  309. );
  310. SharingMenuHelper.setupHideFileDownload(menu.findItem(R.id.action_hide_file_download),
  311. publicShare.isHideFileDownload(), capabilities);
  312. SharingMenuHelper.setupPasswordMenuItem(
  313. menu.findItem(R.id.action_password),
  314. publicShare.isPasswordProtected()
  315. );
  316. SharingMenuHelper.setupExpirationDateMenuItem(
  317. menu.findItem(R.id.action_share_expiration_date),
  318. publicShare.getExpirationDate(),
  319. res
  320. );
  321. menu.findItem(R.id.action_share_send_note).setVisible(capabilities.getVersion().isNoteOnShareSupported());
  322. }
  323. private boolean optionsItemSelected(MenuItem item) {
  324. switch (item.getItemId()) {
  325. case R.id.action_hide_file_listing: {
  326. item.setChecked(!item.isChecked());
  327. if (capabilities.getFilesFileDrop().isTrue()) {
  328. setHideFileListingPermissionsToShare(publicShare, item.isChecked());
  329. } else {
  330. // not supported in ownCloud
  331. showNotSupportedByOcMessage();
  332. }
  333. return true;
  334. }
  335. case R.id.action_hide_file_download:
  336. item.setChecked(!item.isChecked());
  337. setHideFileDownloadPermissionToShare(file, item.isChecked());
  338. return true;
  339. case R.id.action_password: {
  340. requestPasswordForShareViaLink(false);
  341. return true;
  342. }
  343. case R.id.action_share_expiration_date: {
  344. ExpirationDatePickerDialogFragment dialog = ExpirationDatePickerDialogFragment.newInstance(file, -1);
  345. dialog.show(
  346. fileDisplayActivity.getSupportFragmentManager(),
  347. ExpirationDatePickerDialogFragment.DATE_PICKER_DIALOG
  348. );
  349. return true;
  350. }
  351. case R.id.action_share_send_link: {
  352. if(shareByLink.isChecked() && file.isSharedViaLink() && !TextUtils.isEmpty(file.getPublicLink())) {
  353. FileDisplayActivity.showShareLinkDialog(fileDisplayActivity, file.getPublicLink());
  354. } else {
  355. showSendLinkTo();
  356. }
  357. return true;
  358. }
  359. case R.id.action_share_send_note:
  360. NoteDialogFragment dialog = NoteDialogFragment.newInstance(publicShare);
  361. dialog.show(fileDisplayActivity.getSupportFragmentManager(), NoteDialogFragment.NOTE_FRAGMENT);
  362. return true;
  363. default:
  364. return super.onOptionsItemSelected(item);
  365. }
  366. }
  367. @Override
  368. public void setHideFileListingPermissionsToShare(OCShare share, boolean hideFileListing) {
  369. fileOperationsHelper.setHideFileListingPermissionsToShare(share, hideFileListing);
  370. }
  371. @Override
  372. public void setHideFileDownloadPermissionToShare(OCFile file, boolean hideFileDownload) {
  373. fileOperationsHelper.setHideFileDownloadPermissionsToShare(file, hideFileDownload);
  374. }
  375. @Override
  376. public void showNotSupportedByOcMessage() {
  377. if (getView() != null) {
  378. Snackbar.make(getView(), R.string.files_drop_not_supported, Snackbar.LENGTH_LONG)
  379. .setAction(R.string.learn_more, v ->
  380. DisplayUtils.startLinkIntent(requireActivity(), R.string.url_server_install))
  381. .show();
  382. }
  383. }
  384. /**
  385. * Updates the UI after the result of an update operation on the edited {@link OCFile}.
  386. *
  387. * @param result {@link RemoteOperationResult} of an update on the edited {@link OCFile} sharing information.
  388. * @param file the edited {@link OCFile}
  389. */
  390. public void onUpdateShareInformation(RemoteOperationResult result, OCFile file) {
  391. this.file = file;
  392. if (result.isSuccess()) {
  393. refreshUiFromDB();
  394. } else {
  395. setupView();
  396. }
  397. }
  398. /**
  399. * Get {@link OCShare} instance from DB and updates the UI.
  400. */
  401. private void refreshUiFromDB() {
  402. if (publicShare != null) {
  403. // Get edited shared by link
  404. publicShare = fileDataStorageManager.getShareById(publicShare.getId());
  405. }
  406. // Updates UI with new state
  407. setupView();
  408. }
  409. @Override
  410. public void unshareWith(OCShare share) {
  411. fileOperationsHelper.unshareFileWithUserOrGroup(file, share.getShareType(), share.getShareWith());
  412. }
  413. @Override
  414. public int updatePermissionsToShare(OCShare share, boolean canReshare, boolean canEdit, boolean canEditCreate,
  415. boolean canEditChange, boolean canEditDelete) {
  416. SharePermissionsBuilder spb = new SharePermissionsBuilder();
  417. spb.setSharePermission(canReshare);
  418. if (file.isFolder()) {
  419. spb.setUpdatePermission(canEditChange)
  420. .setCreatePermission(canEditCreate)
  421. .setDeletePermission(canEditDelete);
  422. } else {
  423. spb.setUpdatePermission(canEdit);
  424. }
  425. int permissions = spb.build();
  426. fileOperationsHelper.setPermissionsToShare(share, permissions);
  427. return permissions;
  428. }
  429. @Override
  430. public void updateNoteToShare(OCShare share, String note) {
  431. fileOperationsHelper.updateNoteToShare(share, note);
  432. }
  433. /**
  434. * Starts a dialog that requests a password to the user to protect a share link.
  435. *
  436. * @param createShare When 'true', the request for password will be followed by the creation of a new
  437. * public link; when 'false', a public share is assumed to exist, and the password
  438. * is bound to it.
  439. */
  440. public void requestPasswordForShareViaLink(boolean createShare) {
  441. SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(file, createShare);
  442. dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
  443. }
  444. @Override
  445. public void requestPasswordForShare(OCShare share) {
  446. SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(share);
  447. dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
  448. }
  449. /**
  450. * Get known server capabilities from DB
  451. */
  452. public void refreshCapabilitiesFromDB() {
  453. capabilities = fileDataStorageManager.getCapability(account.name);
  454. }
  455. /**
  456. * Get public link from the DB to fill in the "Share link" section in the UI.
  457. *
  458. * Takes into account server capabilities before reading database.
  459. */
  460. public void refreshPublicShareFromDB() {
  461. if (FileDetailSharingFragmentHelper.isPublicShareDisabled(capabilities)) {
  462. shareByLinkContainer.setVisibility(View.GONE);
  463. } else {
  464. // Get public share
  465. publicShare = fileDataStorageManager.getFirstShareByPathAndType(file.getRemotePath(),
  466. ShareType.PUBLIC_LINK, "");
  467. // Update public share section
  468. updatePublicShareSection();
  469. }
  470. }
  471. /**
  472. * Updates in the UI the section about public share with the information
  473. * in the current public share bound to, if any.
  474. */
  475. private void updatePublicShareSection() {
  476. if (publicShare != null && ShareType.PUBLIC_LINK.equals(publicShare.getShareType())) {
  477. shareByLink.setChecked(true);
  478. if (publicShare.getPermissions() > OCShare.READ_PERMISSION_FLAG) {
  479. shareByLinkAllowEditing.setChecked(true);
  480. } else {
  481. shareByLinkAllowEditing.setChecked(false);
  482. }
  483. setShareByLinkInfo(true);
  484. } else {
  485. setShareByLinkInfo(false);
  486. }
  487. }
  488. @Override
  489. public void onSaveInstanceState(@NonNull Bundle outState) {
  490. super.onSaveInstanceState(outState);
  491. outState.putParcelable(FileActivity.EXTRA_FILE, file);
  492. outState.putParcelable(FileActivity.EXTRA_ACCOUNT, account);
  493. }
  494. @Override
  495. public void avatarGenerated(Drawable avatarDrawable, Object callContext) {
  496. sharedWithYouAvatar.setImageDrawable(avatarDrawable);
  497. }
  498. @Override
  499. public boolean shouldCallGeneratedCallback(String tag, Object callContext) {
  500. return false;
  501. }
  502. }