NCShare+Menu.swift 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // NCShare+Menu.swift
  3. // Nextcloud
  4. //
  5. // Created by Henrik Storch on 16.03.22.
  6. // Copyright © 2022 Henrik Storch. All rights reserved.
  7. //
  8. // Author Henrik Storch <henrik.storch@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. extension NCShare {
  25. func toggleShareMenu(for share: tableShare) {
  26. var actions = [NCMenuAction]()
  27. if share.shareType == 3, canReshare {
  28. actions.append(
  29. NCMenuAction(
  30. title: NSLocalizedString("_share_add_sharelink_", comment: ""),
  31. icon: NCUtility.shared.loadImage(named: "shareAdd"),
  32. action: { _ in
  33. self.makeNewLinkShare()
  34. }
  35. )
  36. )
  37. }
  38. actions.append(
  39. NCMenuAction(
  40. title: NSLocalizedString("_details_", comment: ""),
  41. icon: NCUtility.shared.loadImage(named: "edit"),
  42. action: { _ in
  43. guard
  44. let advancePermission = UIStoryboard(name: "NCShare", bundle: nil).instantiateViewController(withIdentifier: "NCShareAdvancePermission") as? NCShareAdvancePermission,
  45. let navigationController = self.navigationController, !share.isInvalidated else { return }
  46. advancePermission.networking = self.networking
  47. advancePermission.share = tableShare(value: share)
  48. advancePermission.metadata = self.metadata
  49. navigationController.pushViewController(advancePermission, animated: true)
  50. }
  51. )
  52. )
  53. actions.append(
  54. NCMenuAction(
  55. title: NSLocalizedString("_share_unshare_", comment: ""),
  56. icon: NCUtility.shared.loadImage(named: "trash"),
  57. action: { _ in
  58. self.networking?.unShare(idShare: share.idShare)
  59. }
  60. )
  61. )
  62. self.presentMenu(with: actions)
  63. }
  64. func toggleUserPermissionMenu(isDirectory: Bool, tableShare: tableShare) {
  65. var actions = [NCMenuAction]()
  66. actions.append(
  67. NCMenuAction(
  68. title: NSLocalizedString("_share_read_only_", comment: ""),
  69. icon: UIImage(),
  70. selected: tableShare.permissions == (NCGlobal.shared.permissionReadShare + NCGlobal.shared.permissionShareShare) || tableShare.permissions == NCGlobal.shared.permissionReadShare,
  71. on: false,
  72. action: { _ in
  73. let canShare = CCUtility.isPermission(toCanShare: tableShare.permissions)
  74. let permissions = CCUtility.getPermissionsValue(byCanEdit: false, andCanCreate: false, andCanChange: false, andCanDelete: false, andCanShare: canShare, andIsFolder: isDirectory)
  75. self.updateSharePermissions(share: tableShare, permissions: permissions)
  76. }
  77. )
  78. )
  79. actions.append(
  80. NCMenuAction(
  81. title: isDirectory ? NSLocalizedString("_share_allow_upload_", comment: "") : NSLocalizedString("_share_editing_", comment: ""),
  82. icon: UIImage(),
  83. selected: hasUploadPermission(tableShare: tableShare),
  84. on: false,
  85. action: { _ in
  86. let canShare = CCUtility.isPermission(toCanShare: tableShare.permissions)
  87. let permissions = CCUtility.getPermissionsValue(byCanEdit: true, andCanCreate: true, andCanChange: true, andCanDelete: true, andCanShare: canShare, andIsFolder: isDirectory)
  88. self.updateSharePermissions(share: tableShare, permissions: permissions)
  89. }
  90. )
  91. )
  92. self.presentMenu(with: actions)
  93. }
  94. fileprivate func hasUploadPermission(tableShare: tableShare) -> Bool {
  95. let uploadPermissions = [
  96. NCGlobal.shared.permissionMaxFileShare,
  97. NCGlobal.shared.permissionMaxFolderShare,
  98. NCGlobal.shared.permissionDefaultFileRemoteShareNoSupportShareOption,
  99. NCGlobal.shared.permissionDefaultFolderRemoteShareNoSupportShareOption]
  100. return uploadPermissions.contains(tableShare.permissions)
  101. }
  102. func updateSharePermissions(share: tableShare, permissions: Int) {
  103. let updatedShare = tableShare(value: share)
  104. updatedShare.permissions = permissions
  105. networking?.updateShare(option: updatedShare)
  106. }
  107. }