FileDetailSharingFragment.java 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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. @BindView(R.id.shared_with_you_note)
  109. TextView sharedWithYouNote;
  110. public static FileDetailSharingFragment newInstance(OCFile file, Account account) {
  111. FileDetailSharingFragment fragment = new FileDetailSharingFragment();
  112. Bundle args = new Bundle();
  113. args.putParcelable(ARG_FILE, file);
  114. args.putParcelable(ARG_ACCOUNT, account);
  115. fragment.setArguments(args);
  116. return fragment;
  117. }
  118. @Override
  119. public void onCreate(@Nullable Bundle savedInstanceState) {
  120. super.onCreate(savedInstanceState);
  121. if (savedInstanceState != null) {
  122. file = savedInstanceState.getParcelable(FileActivity.EXTRA_FILE);
  123. account = savedInstanceState.getParcelable(FileActivity.EXTRA_ACCOUNT);
  124. } else {
  125. Bundle arguments = getArguments();
  126. if (arguments != null) {
  127. file = getArguments().getParcelable(ARG_FILE);
  128. account = getArguments().getParcelable(ARG_ACCOUNT);
  129. }
  130. }
  131. if (file == null) {
  132. throw new IllegalArgumentException("File may not be null");
  133. }
  134. if (account == null) {
  135. throw new IllegalArgumentException("Account may not be null");
  136. }
  137. fileDisplayActivity = (FileDisplayActivity) getActivity();
  138. if (fileDisplayActivity == null) {
  139. throw new IllegalArgumentException("FileActivity may not be null");
  140. }
  141. fileOperationsHelper = fileDisplayActivity.getFileOperationsHelper();
  142. fileDataStorageManager = fileDisplayActivity.getStorageManager();
  143. }
  144. @Override
  145. public void onActivityCreated(Bundle savedInstanceState) {
  146. super.onActivityCreated(savedInstanceState);
  147. refreshCapabilitiesFromDB();
  148. refreshPublicShareFromDB();
  149. }
  150. @Override
  151. public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
  152. View view = inflater.inflate(R.layout.file_details_sharing_fragment, container, false);
  153. unbinder = ButterKnife.bind(this, view);
  154. if (fileDataStorageManager == null) {
  155. fileDataStorageManager = new FileDataStorageManager(account, fileDisplayActivity.getContentResolver());
  156. }
  157. setupView();
  158. return view;
  159. }
  160. @Override
  161. public void onDestroy() {
  162. super.onDestroy();
  163. unbinder.unbind();
  164. }
  165. @Override
  166. public void onAttach(Context context) {
  167. super.onAttach(context);
  168. if (!(getActivity() instanceof FileActivity)) {
  169. throw new IllegalArgumentException("Calling activity must be of type FileActivity");
  170. }
  171. }
  172. private void setupView() {
  173. setShareWithYou();
  174. if (file.canReshare()) {
  175. setShareByLinkInfo(file.isSharedViaLink());
  176. setShareWithUserInfo();
  177. FileDetailSharingFragmentHelper.setupSearchView(
  178. (SearchManager) fileDisplayActivity.getSystemService(Context.SEARCH_SERVICE), searchView,
  179. fileDisplayActivity.getComponentName());
  180. ThemeUtils.themeSearchView(getContext(), searchView, false);
  181. } else {
  182. searchView.setVisibility(View.GONE);
  183. noList.setText(R.string.reshare_not_allowed);
  184. }
  185. }
  186. /**
  187. * Updates Share by link UI
  188. *
  189. * @param isShareByLink flag is share by link is enable
  190. */
  191. public void setShareByLinkInfo(boolean isShareByLink) {
  192. shareByLink.setChecked(isShareByLink);
  193. if (isShareByLink) {
  194. shareLinkCopyIcon.setVisibility(View.VISIBLE);
  195. } else {
  196. shareLinkCopyIcon.setVisibility(View.INVISIBLE);
  197. }
  198. int accentColor = ThemeUtils.primaryAccentColor(getContext());
  199. ThemeUtils.tintCheckbox(shareByLink, accentColor);
  200. ThemeUtils.tintCheckbox(shareByLinkAllowEditing, accentColor);
  201. setLinkDetailVisible(isShareByLink);
  202. }
  203. private void setLinkDetailVisible(boolean visible) {
  204. if (visible) {
  205. if (file.isFolder()) {
  206. shareByLinkAllowEditing.setVisibility(View.VISIBLE);
  207. } else {
  208. shareByLinkAllowEditing.setVisibility(View.INVISIBLE);
  209. }
  210. overflowMenuShareLink.setVisibility(View.VISIBLE);
  211. } else {
  212. shareByLinkAllowEditing.setVisibility(View.INVISIBLE);
  213. overflowMenuShareLink.setVisibility(View.INVISIBLE);
  214. }
  215. }
  216. /**
  217. * Update Share With data
  218. */
  219. public void setShareWithUserInfo() {
  220. // Get Users and Groups
  221. shares = fileDataStorageManager.getSharesWithForAFile(file.getRemotePath(), account.name);
  222. // Update list of users/groups
  223. updateListOfUserGroups();
  224. }
  225. private void setShareWithYou() {
  226. if (AccountUtils.accountOwnsFile(file, account)) {
  227. sharedWithYouContainer.setVisibility(View.GONE);
  228. } else {
  229. sharedWithYouUsername.setText(
  230. String.format(getString(R.string.shared_with_you_by), file.getOwnerDisplayName()));
  231. DisplayUtils.setAvatar(account, file.getOwnerId(), this, getResources().getDimension(
  232. R.dimen.file_list_item_avatar_icon_radius), getResources(), sharedWithYouAvatar,
  233. getContext());
  234. sharedWithYouAvatar.setVisibility(View.VISIBLE);
  235. String note = file.getNote();
  236. if (!TextUtils.isEmpty(note)) {
  237. sharedWithYouNote.setText(file.getNote());
  238. sharedWithYouNote.setVisibility(View.VISIBLE);
  239. } else {
  240. sharedWithYouNote.setVisibility(View.GONE);
  241. }
  242. }
  243. }
  244. private void updateListOfUserGroups() {
  245. // TODO Refactoring: create a new {@link ShareUserListAdapter} instance with every call should not be needed
  246. if (shares.size() > 0) {
  247. usersList.setVisibility(View.VISIBLE);
  248. usersList.setAdapter(new UserListAdapter(fileDisplayActivity.getSupportFragmentManager(), fileDisplayActivity, shares,
  249. account, file, this));
  250. usersList.setLayoutManager(new LinearLayoutManager(getContext()));
  251. usersList.addItemDecoration(new SimpleListItemDividerDecoration(getContext()));
  252. noList.setVisibility(View.GONE);
  253. } else {
  254. usersList.setVisibility(View.GONE);
  255. noList.setVisibility(View.VISIBLE);
  256. }
  257. }
  258. @OnClick(R.id.share_by_link)
  259. public void toggleShareByLink() {
  260. if (shareByLink.isChecked()) {
  261. createShareLink();
  262. } else {
  263. fileOperationsHelper.unshareFileViaLink(file);
  264. }
  265. }
  266. private void createShareLink() {
  267. if (capabilities != null &&
  268. capabilities.getFilesSharingPublicPasswordEnforced().isTrue()) {
  269. // password enforced by server, request to the user before trying to create
  270. requestPasswordForShareViaLink(true);
  271. } else {
  272. // create without password if not enforced by server or we don't know if enforced;
  273. fileOperationsHelper.shareFileViaLink(file, null);
  274. }
  275. }
  276. private void showSendLinkTo() {
  277. if (file.isSharedViaLink()) {
  278. if (TextUtils.isEmpty(file.getPublicLink())) {
  279. fileOperationsHelper.getFileWithLink(file);
  280. } else {
  281. FileDisplayActivity.showShareLinkDialog(fileDisplayActivity, file.getPublicLink());
  282. }
  283. }
  284. }
  285. @OnClick({R.id.share_link_copy_icon})
  286. public void copyLinkToClipboard() {
  287. if (file.isSharedViaLink()) {
  288. if (TextUtils.isEmpty(file.getPublicLink())) {
  289. fileOperationsHelper.getFileWithLink(file);
  290. } else {
  291. ClipboardUtil.copyToClipboard(getActivity(), file.getPublicLink());
  292. }
  293. }
  294. }
  295. @OnClick(R.id.share_by_link_allow_editing)
  296. public void toggleShareLinkAllowEditing() {
  297. if (file.isSharedViaLink()) {
  298. fileOperationsHelper.setUploadPermissionsToShare(file, shareByLinkAllowEditing.isChecked());
  299. }
  300. }
  301. @OnClick(R.id.overflow_menu_share_link)
  302. public void showLinkOverflowMenu() {
  303. Context context = getContext();
  304. if (context != null && ThemeUtils.themingEnabled(context)) {
  305. // use grey as fallback for elements where custom theming is not available
  306. context.getTheme().applyStyle(R.style.FallbackThemingTheme, true);
  307. } else {
  308. context = getActivity();
  309. }
  310. PopupMenu popup = new PopupMenu(context, overflowMenuShareLink);
  311. popup.inflate(R.menu.file_detail_sharing_link_menu);
  312. prepareOptionsMenu(popup.getMenu());
  313. popup.setOnMenuItemClickListener(this::optionsItemSelected);
  314. popup.show();
  315. }
  316. private void prepareOptionsMenu(Menu menu) {
  317. Resources res = getResources();
  318. SharingMenuHelper.setupHideFileListingMenuItem(
  319. menu.findItem(R.id.action_hide_file_listing),
  320. file.isFolder(),
  321. shareByLinkAllowEditing.isChecked(),
  322. publicShare.getPermissions()
  323. );
  324. SharingMenuHelper.setupHideFileDownload(menu.findItem(R.id.action_hide_file_download),
  325. publicShare.isHideFileDownload(), capabilities);
  326. SharingMenuHelper.setupPasswordMenuItem(
  327. menu.findItem(R.id.action_password),
  328. publicShare.isPasswordProtected()
  329. );
  330. SharingMenuHelper.setupExpirationDateMenuItem(
  331. menu.findItem(R.id.action_share_expiration_date),
  332. publicShare.getExpirationDate(),
  333. res
  334. );
  335. menu.findItem(R.id.action_share_send_note).setVisible(capabilities.getVersion().isNoteOnShareSupported());
  336. }
  337. private boolean optionsItemSelected(MenuItem item) {
  338. switch (item.getItemId()) {
  339. case R.id.action_hide_file_listing: {
  340. item.setChecked(!item.isChecked());
  341. if (capabilities.getFilesFileDrop().isTrue()) {
  342. setHideFileListingPermissionsToShare(publicShare, item.isChecked());
  343. } else {
  344. // not supported in ownCloud
  345. showNotSupportedByOcMessage();
  346. }
  347. return true;
  348. }
  349. case R.id.action_hide_file_download:
  350. item.setChecked(!item.isChecked());
  351. setHideFileDownloadPermissionToShare(file, item.isChecked());
  352. return true;
  353. case R.id.action_password: {
  354. requestPasswordForShareViaLink(false);
  355. return true;
  356. }
  357. case R.id.action_share_expiration_date: {
  358. ExpirationDatePickerDialogFragment dialog = ExpirationDatePickerDialogFragment.newInstance(file, -1);
  359. dialog.show(
  360. fileDisplayActivity.getSupportFragmentManager(),
  361. ExpirationDatePickerDialogFragment.DATE_PICKER_DIALOG
  362. );
  363. return true;
  364. }
  365. case R.id.action_share_send_link: {
  366. if(shareByLink.isChecked() && file.isSharedViaLink() && !TextUtils.isEmpty(file.getPublicLink())) {
  367. FileDisplayActivity.showShareLinkDialog(fileDisplayActivity, file.getPublicLink());
  368. } else {
  369. showSendLinkTo();
  370. }
  371. return true;
  372. }
  373. case R.id.action_share_send_note:
  374. NoteDialogFragment dialog = NoteDialogFragment.newInstance(publicShare);
  375. dialog.show(fileDisplayActivity.getSupportFragmentManager(), NoteDialogFragment.NOTE_FRAGMENT);
  376. return true;
  377. default:
  378. return super.onOptionsItemSelected(item);
  379. }
  380. }
  381. @Override
  382. public void setHideFileListingPermissionsToShare(OCShare share, boolean hideFileListing) {
  383. fileOperationsHelper.setHideFileListingPermissionsToShare(share, hideFileListing);
  384. }
  385. @Override
  386. public void setHideFileDownloadPermissionToShare(OCFile file, boolean hideFileDownload) {
  387. fileOperationsHelper.setHideFileDownloadPermissionsToShare(file, hideFileDownload);
  388. }
  389. @Override
  390. public void showNotSupportedByOcMessage() {
  391. if (getView() != null) {
  392. Snackbar.make(getView(), R.string.files_drop_not_supported, Snackbar.LENGTH_LONG)
  393. .setAction(R.string.learn_more, v ->
  394. DisplayUtils.startLinkIntent(requireActivity(), R.string.url_server_install))
  395. .show();
  396. }
  397. }
  398. /**
  399. * Updates the UI after the result of an update operation on the edited {@link OCFile}.
  400. *
  401. * @param result {@link RemoteOperationResult} of an update on the edited {@link OCFile} sharing information.
  402. * @param file the edited {@link OCFile}
  403. */
  404. public void onUpdateShareInformation(RemoteOperationResult result, OCFile file) {
  405. this.file = file;
  406. if (result.isSuccess()) {
  407. refreshUiFromDB();
  408. } else {
  409. setupView();
  410. }
  411. }
  412. /**
  413. * Get {@link OCShare} instance from DB and updates the UI.
  414. */
  415. private void refreshUiFromDB() {
  416. if (publicShare != null) {
  417. // Get edited shared by link
  418. publicShare = fileDataStorageManager.getShareById(publicShare.getId());
  419. }
  420. // Updates UI with new state
  421. setupView();
  422. }
  423. @Override
  424. public void unshareWith(OCShare share) {
  425. fileOperationsHelper.unshareFileWithUserOrGroup(file, share.getShareType(), share.getShareWith());
  426. }
  427. @Override
  428. public int updatePermissionsToShare(OCShare share, boolean canReshare, boolean canEdit, boolean canEditCreate,
  429. boolean canEditChange, boolean canEditDelete) {
  430. SharePermissionsBuilder spb = new SharePermissionsBuilder();
  431. spb.setSharePermission(canReshare);
  432. if (file.isFolder()) {
  433. spb.setUpdatePermission(canEditChange)
  434. .setCreatePermission(canEditCreate)
  435. .setDeletePermission(canEditDelete);
  436. } else {
  437. spb.setUpdatePermission(canEdit);
  438. }
  439. int permissions = spb.build();
  440. fileOperationsHelper.setPermissionsToShare(share, permissions);
  441. return permissions;
  442. }
  443. @Override
  444. public void updateNoteToShare(OCShare share, String note) {
  445. fileOperationsHelper.updateNoteToShare(share, note);
  446. }
  447. /**
  448. * Starts a dialog that requests a password to the user to protect a share link.
  449. *
  450. * @param createShare When 'true', the request for password will be followed by the creation of a new
  451. * public link; when 'false', a public share is assumed to exist, and the password
  452. * is bound to it.
  453. */
  454. public void requestPasswordForShareViaLink(boolean createShare) {
  455. SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(file, createShare);
  456. dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
  457. }
  458. @Override
  459. public void requestPasswordForShare(OCShare share) {
  460. SharePasswordDialogFragment dialog = SharePasswordDialogFragment.newInstance(share);
  461. dialog.show(getChildFragmentManager(), SharePasswordDialogFragment.PASSWORD_FRAGMENT);
  462. }
  463. /**
  464. * Get known server capabilities from DB
  465. */
  466. public void refreshCapabilitiesFromDB() {
  467. capabilities = fileDataStorageManager.getCapability(account.name);
  468. }
  469. /**
  470. * Get public link from the DB to fill in the "Share link" section in the UI.
  471. *
  472. * Takes into account server capabilities before reading database.
  473. */
  474. public void refreshPublicShareFromDB() {
  475. if (FileDetailSharingFragmentHelper.isPublicShareDisabled(capabilities) || !file.canReshare()) {
  476. shareByLinkContainer.setVisibility(View.GONE);
  477. } else {
  478. // Get public share
  479. publicShare = fileDataStorageManager.getFirstShareByPathAndType(file.getRemotePath(),
  480. ShareType.PUBLIC_LINK, "");
  481. // Update public share section
  482. updatePublicShareSection();
  483. }
  484. }
  485. /**
  486. * Updates in the UI the section about public share with the information
  487. * in the current public share bound to, if any.
  488. */
  489. private void updatePublicShareSection() {
  490. if (publicShare != null && ShareType.PUBLIC_LINK.equals(publicShare.getShareType())) {
  491. shareByLink.setChecked(true);
  492. if (publicShare.getPermissions() > OCShare.READ_PERMISSION_FLAG) {
  493. shareByLinkAllowEditing.setChecked(true);
  494. } else {
  495. shareByLinkAllowEditing.setChecked(false);
  496. }
  497. setShareByLinkInfo(true);
  498. } else {
  499. setShareByLinkInfo(false);
  500. }
  501. }
  502. @Override
  503. public void onSaveInstanceState(@NonNull Bundle outState) {
  504. super.onSaveInstanceState(outState);
  505. outState.putParcelable(FileActivity.EXTRA_FILE, file);
  506. outState.putParcelable(FileActivity.EXTRA_ACCOUNT, account);
  507. }
  508. @Override
  509. public void avatarGenerated(Drawable avatarDrawable, Object callContext) {
  510. sharedWithYouAvatar.setImageDrawable(avatarDrawable);
  511. }
  512. @Override
  513. public boolean shouldCallGeneratedCallback(String tag, Object callContext) {
  514. return false;
  515. }
  516. }