DrawerMenuUtil.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.utils;
  21. import android.accounts.Account;
  22. import android.content.res.Resources;
  23. import android.view.Menu;
  24. import com.owncloud.android.R;
  25. import com.owncloud.android.authentication.AccountUtils;
  26. import com.owncloud.android.lib.resources.status.OCCapability;
  27. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  28. import androidx.annotation.Nullable;
  29. /**
  30. * A helper class for drawer menu related operations.
  31. */
  32. public final class DrawerMenuUtil {
  33. private DrawerMenuUtil() {
  34. }
  35. public static void filterForBottomToolbarMenuItems(Menu menu, Resources resources) {
  36. if (resources.getBoolean(R.bool.bottom_toolbar_enabled)) {
  37. filterMenuItems(menu, R.id.nav_all_files, R.id.nav_settings, R.id.nav_favorites, R.id.nav_photos);
  38. }
  39. }
  40. public static void filterSearchMenuItems(Menu menu, Account account, Resources resources) {
  41. boolean hasSearchSupport = AccountUtils.hasSearchSupport(account);
  42. if (account != null && !hasSearchSupport) {
  43. filterMenuItems(menu, R.id.nav_photos, R.id.nav_favorites, R.id.nav_videos);
  44. }
  45. if (hasSearchSupport) {
  46. if (!resources.getBoolean(R.bool.recently_added_enabled)) {
  47. menu.removeItem(R.id.nav_recently_added);
  48. }
  49. if (!resources.getBoolean(R.bool.recently_modified_enabled)) {
  50. menu.removeItem(R.id.nav_recently_modified);
  51. }
  52. if (!resources.getBoolean(R.bool.videos_enabled)) {
  53. menu.removeItem(R.id.nav_videos);
  54. }
  55. } else if (account != null) {
  56. filterMenuItems(menu, R.id.nav_recently_added, R.id.nav_recently_modified, R.id.nav_videos);
  57. }
  58. }
  59. public static void filterTrashbinMenuItem(Menu menu, @Nullable Account account, @Nullable OCCapability capability) {
  60. if (account != null && capability != null &&
  61. (AccountUtils.getServerVersion(account).compareTo(OwnCloudVersion.nextcloud_14) < 0 ||
  62. capability.getFilesUndelete().isFalse() || capability.getFilesUndelete().isUnknown())) {
  63. filterMenuItems(menu, R.id.nav_trashbin);
  64. }
  65. }
  66. public static void filterActivityMenuItem(Menu menu, @Nullable OCCapability capability) {
  67. if (capability != null && capability.getActivity().isFalse()) {
  68. filterMenuItems(menu, R.id.nav_activity);
  69. }
  70. }
  71. public static void removeMenuItem(Menu menu, int id, boolean remove) {
  72. if (remove) {
  73. menu.removeItem(id);
  74. }
  75. }
  76. public static void setupHomeMenuItem(Menu menu, Resources resources) {
  77. if (resources.getBoolean(R.bool.use_home) && menu.findItem(R.id.nav_all_files) != null) {
  78. menu.findItem(R.id.nav_all_files).setTitle(resources.getString(R.string.drawer_item_home));
  79. menu.findItem(R.id.nav_all_files).setIcon(R.drawable.ic_home);
  80. }
  81. }
  82. private static void filterMenuItems(Menu menu, int... menuIds) {
  83. if (menuIds != null) {
  84. for (int menuId : menuIds) {
  85. menu.removeItem(menuId);
  86. }
  87. }
  88. }
  89. }