NCShare+Helper.swift 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. //
  2. // NCShare+Helper.swift
  3. // Nextcloud
  4. //
  5. // Created by Henrik Storch on 19.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 UIKit
  24. import NCCommunication
  25. extension tableShare: NCTableShareable { }
  26. protocol NCTableShareable: AnyObject {
  27. var shareType: Int { get set }
  28. var permissions: Int { get set }
  29. var account: String { get }
  30. var idShare: Int { get set }
  31. var shareWith: String { get set }
  32. // var publicUpload: Bool? = false
  33. var hideDownload: Bool { get set }
  34. var password: String { get set }
  35. var label: String { get set }
  36. var note: String { get set }
  37. var expirationDate: NSDate? { get set }
  38. var shareWithDisplayname: String { get set }
  39. }
  40. extension NCTableShareable {
  41. var expDateString: String? {
  42. guard let date = expirationDate else { return nil }
  43. let dateFormatter = DateFormatter()
  44. dateFormatter.dateFormat = "YYYY-MM-dd HH:mm:ss"
  45. return dateFormatter.string(from: date as Date)
  46. }
  47. }
  48. class NCTableShareOptions: NCTableShareable {
  49. var shareType: Int
  50. var permissions: Int
  51. let account: String
  52. var idShare: Int = 0
  53. var shareWith: String = ""
  54. // var publicUpload: Bool? = false
  55. var hideDownload: Bool = false
  56. var password: String = ""
  57. var label: String = ""
  58. var note: String = ""
  59. var expirationDate: NSDate?
  60. var shareWithDisplayname: String = ""
  61. private init(shareType: Int, metadata: tableMetadata, password: String?) {
  62. self.permissions = NCManageDatabase.shared.getCapabilitiesServerInt(account: metadata.account, elements: ["ocs", "data", "capabilities", "files_sharing", "default_permissions"]) & metadata.sharePermissionsCollaborationServices
  63. self.shareType = shareType
  64. self.account = metadata.account
  65. if let password = password {
  66. self.password = password
  67. }
  68. }
  69. convenience init(sharee: NCCommunicationSharee, metadata: tableMetadata, password: String?) {
  70. self.init(shareType: sharee.shareType, metadata: metadata, password: password)
  71. self.shareWith = sharee.shareWith
  72. }
  73. static func shareLink(metadata: tableMetadata, password: String?) -> NCTableShareOptions {
  74. return NCTableShareOptions(shareType: NCShareCommon.shared.SHARE_TYPE_LINK, metadata: metadata, password: password)
  75. }
  76. }
  77. protocol NCShareDetail {
  78. var share: NCTableShareable! { get }
  79. }
  80. extension NCShareDetail where Self: UIViewController {
  81. func setNavigationTitle() {
  82. title = NSLocalizedString("_share_", comment: "") + " – "
  83. if share.shareType == NCShareCommon.shared.SHARE_TYPE_LINK {
  84. title! += share.label.isEmpty ? NSLocalizedString("_share_link_", comment: "") : share.label
  85. } else {
  86. title! += share.shareWithDisplayname.isEmpty ? share.shareWith : share.shareWithDisplayname
  87. }
  88. }
  89. }