NCShare.swift 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. //
  2. // NCShare.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/07/2019.
  6. // Copyright © 2019 Marino Faggiana. All rights reserved.
  7. // Copyright © 2022 Henrik Storch. All rights reserved.
  8. //
  9. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  10. // Author Henrik Storch <henrik.storch@nextcloud.com>
  11. //
  12. // This program is free software: you can redistribute it and/or modify
  13. // it under the terms of the GNU General Public License as published by
  14. // the Free Software Foundation, either version 3 of the License, or
  15. // (at your option) any later version.
  16. //
  17. // This program is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. // GNU General Public License for more details.
  21. //
  22. // You should have received a copy of the GNU General Public License
  23. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. //
  25. import UIKit
  26. import Parchment
  27. import DropDown
  28. import NextcloudKit
  29. import MarqueeLabel
  30. import ContactsUI
  31. class NCShare: UIViewController, NCShareNetworkingDelegate, NCSharePagingContent {
  32. @IBOutlet weak var viewContainerConstraint: NSLayoutConstraint!
  33. @IBOutlet weak var sharedWithYouByView: UIView!
  34. @IBOutlet weak var sharedWithYouByImage: UIImageView!
  35. @IBOutlet weak var sharedWithYouByLabel: UILabel!
  36. @IBOutlet weak var searchFieldTopConstraint: NSLayoutConstraint!
  37. @IBOutlet weak var searchField: UISearchBar!
  38. var textField: UIView? { searchField }
  39. @IBOutlet weak var tableView: UITableView!
  40. @IBOutlet weak var btnContact: UIButton!
  41. weak var appDelegate = UIApplication.shared.delegate as? AppDelegate
  42. public var metadata: tableMetadata?
  43. public var sharingEnabled = true
  44. public var height: CGFloat = 0
  45. let shareCommon = NCShareCommon()
  46. let utilityFileSystem = NCUtilityFileSystem()
  47. let utility = NCUtility()
  48. var canReshare: Bool {
  49. guard let metadata = metadata else { return true }
  50. return ((metadata.sharePermissionsCollaborationServices & NCPermissions().permissionShareShare) != 0)
  51. }
  52. var shares: (firstShareLink: tableShare?, share: [tableShare]?) = (nil, nil)
  53. private var dropDown = DropDown()
  54. var networking: NCShareNetworking?
  55. // MARK: - View Life Cycle
  56. override func viewDidLoad() {
  57. super.viewDidLoad()
  58. view.backgroundColor = .systemBackground
  59. viewContainerConstraint.constant = height
  60. searchFieldTopConstraint.constant = 0
  61. searchField.placeholder = NSLocalizedString("_shareLinksearch_placeholder_", comment: "")
  62. searchField.autocorrectionType = .no
  63. tableView.dataSource = self
  64. tableView.delegate = self
  65. tableView.allowsSelection = false
  66. tableView.backgroundColor = .systemBackground
  67. tableView.contentInset = UIEdgeInsets(top: 8, left: 0, bottom: 10, right: 0)
  68. tableView.register(UINib(nibName: "NCShareLinkCell", bundle: nil), forCellReuseIdentifier: "cellLink")
  69. tableView.register(UINib(nibName: "NCShareUserCell", bundle: nil), forCellReuseIdentifier: "cellUser")
  70. NotificationCenter.default.addObserver(self, selector: #selector(reloadData), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataNCShare), object: nil)
  71. guard let metadata = metadata else { return }
  72. if metadata.e2eEncrypted {
  73. let direcrory = NCManageDatabase.shared.getTableDirectory(account: metadata.account, serverUrl: metadata.serverUrl)
  74. if NCGlobal.shared.capabilityE2EEApiVersion == NCGlobal.shared.e2eeVersionV12 ||
  75. (NCGlobal.shared.capabilityE2EEApiVersion == NCGlobal.shared.e2eeVersionV20 && direcrory?.e2eEncrypted ?? false) {
  76. searchFieldTopConstraint.constant = -50
  77. searchField.alpha = 0
  78. btnContact.alpha = 0
  79. }
  80. } else {
  81. checkSharedWithYou()
  82. }
  83. reloadData()
  84. networking = NCShareNetworking(metadata: metadata, view: self.view, delegate: self)
  85. if sharingEnabled {
  86. let isVisible = (self.navigationController?.topViewController as? NCSharePaging)?.page == .sharing
  87. networking?.readShare(showLoadingIndicator: isVisible)
  88. }
  89. searchField.searchTextField.font = .systemFont(ofSize: 14)
  90. searchField.delegate = self
  91. }
  92. func makeNewLinkShare() {
  93. guard
  94. let advancePermission = UIStoryboard(name: "NCShare", bundle: nil).instantiateViewController(withIdentifier: "NCShareAdvancePermission") as? NCShareAdvancePermission,
  95. let navigationController = self.navigationController,
  96. let metadata = self.metadata else { return }
  97. self.checkEnforcedPassword(shareType: shareCommon.SHARE_TYPE_LINK) { password in
  98. advancePermission.networking = self.networking
  99. advancePermission.share = NCTableShareOptions.shareLink(metadata: metadata, password: password)
  100. advancePermission.metadata = self.metadata
  101. navigationController.pushViewController(advancePermission, animated: true)
  102. }
  103. }
  104. // Shared with you by ...
  105. func checkSharedWithYou() {
  106. guard let appDelegate = self.appDelegate, let metadata = metadata, !metadata.ownerId.isEmpty, metadata.ownerId != appDelegate.userId else { return }
  107. if !canReshare {
  108. searchField.isUserInteractionEnabled = false
  109. searchField.alpha = 0.5
  110. searchField.placeholder = NSLocalizedString("_share_reshare_disabled_", comment: "")
  111. }
  112. searchFieldTopConstraint.constant = 45
  113. sharedWithYouByView.isHidden = false
  114. sharedWithYouByLabel.text = NSLocalizedString("_shared_with_you_by_", comment: "") + " " + metadata.ownerDisplayName
  115. sharedWithYouByImage.image = utility.loadUserImage(
  116. for: metadata.ownerId,
  117. displayName: metadata.ownerDisplayName,
  118. userBaseUrl: appDelegate)
  119. sharedWithYouByLabel.accessibilityHint = NSLocalizedString("_show_profile_", comment: "")
  120. let shareAction = UITapGestureRecognizer(target: self, action: #selector(openShareProfile))
  121. sharedWithYouByImage.addGestureRecognizer(shareAction)
  122. let shareLabelAction = UITapGestureRecognizer(target: self, action: #selector(openShareProfile))
  123. sharedWithYouByLabel.addGestureRecognizer(shareLabelAction)
  124. let fileName = appDelegate.userBaseUrl + "-" + metadata.ownerId + ".png"
  125. if NCManageDatabase.shared.getImageAvatarLoaded(fileName: fileName) == nil {
  126. let fileNameLocalPath = utilityFileSystem.directoryUserData + "/" + fileName
  127. let etag = NCManageDatabase.shared.getTableAvatar(fileName: fileName)?.etag
  128. NextcloudKit.shared.downloadAvatar(
  129. user: metadata.ownerId,
  130. fileNameLocalPath: fileNameLocalPath,
  131. sizeImage: NCGlobal.shared.avatarSize,
  132. avatarSizeRounded: NCGlobal.shared.avatarSizeRounded,
  133. etag: etag,
  134. account: metadata.account) { _, imageAvatar, _, etag, error in
  135. if error == .success, let etag = etag, let imageAvatar = imageAvatar {
  136. NCManageDatabase.shared.addAvatar(fileName: fileName, etag: etag)
  137. self.sharedWithYouByImage.image = imageAvatar
  138. } else if error.errorCode == NCGlobal.shared.errorNotModified, let imageAvatar = NCManageDatabase.shared.setAvatarLoaded(fileName: fileName) {
  139. self.sharedWithYouByImage.image = imageAvatar
  140. }
  141. }
  142. }
  143. }
  144. // MARK: - Notification Center
  145. @objc func openShareProfile() {
  146. guard let metadata = metadata else { return }
  147. self.showProfileMenu(userId: metadata.ownerId)
  148. }
  149. // MARK: -
  150. @objc func reloadData() {
  151. if let metadata = metadata {
  152. shares = NCManageDatabase.shared.getTableShares(metadata: metadata)
  153. }
  154. tableView.reloadData()
  155. }
  156. // MARK: - IBAction
  157. @IBAction func searchFieldDidEndOnExit(textField: UITextField) {
  158. // https://stackoverflow.com/questions/25471114/how-to-validate-an-e-mail-address-in-swift
  159. func isValidEmail(_ email: String) -> Bool {
  160. let emailRegEx = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}"
  161. let emailPred = NSPredicate(format: "SELF MATCHES %@", emailRegEx)
  162. return emailPred.evaluate(with: email)
  163. }
  164. guard let searchString = textField.text, !searchString.isEmpty else { return }
  165. if searchString.contains("@"), !isValidEmail(searchString) { return }
  166. networking?.getSharees(searchString: searchString)
  167. }
  168. func checkEnforcedPassword(shareType: Int, completion: @escaping (String?) -> Void) {
  169. guard NCGlobal.shared.capabilityFileSharingPubPasswdEnforced,
  170. shareType == shareCommon.SHARE_TYPE_LINK || shareType == shareCommon.SHARE_TYPE_EMAIL
  171. else { return completion(nil) }
  172. self.present(UIAlertController.password(titleKey: "_enforce_password_protection_", completion: completion), animated: true)
  173. }
  174. @IBAction func selectContactClicked(_ sender: Any) {
  175. let cnPicker = CNContactPickerViewController()
  176. cnPicker.delegate = self
  177. cnPicker.displayedPropertyKeys = [CNContactEmailAddressesKey]
  178. cnPicker.predicateForEnablingContact = NSPredicate(format: "emailAddresses.@count > 0")
  179. cnPicker.predicateForSelectionOfProperty = NSPredicate(format: "emailAddresses.@count > 0")
  180. self.present(cnPicker, animated: true)
  181. }
  182. // MARK: - NCShareNetworkingDelegate
  183. func readShareCompleted() {
  184. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataNCShare)
  185. }
  186. func shareCompleted() {
  187. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataNCShare)
  188. }
  189. func unShareCompleted() {
  190. self.reloadData()
  191. }
  192. func updateShareWithError(idShare: Int) {
  193. self.reloadData()
  194. }
  195. func getSharees(sharees: [NKSharee]?) {
  196. guard let sharees = sharees, let appDelegate = appDelegate else { return }
  197. dropDown = DropDown()
  198. let appearance = DropDown.appearance()
  199. // Setting up the blur effect
  200. let blurEffect = UIBlurEffect(style: .light) // You can choose .dark, .extraLight, or .light
  201. let blurEffectView = UIVisualEffectView(effect: blurEffect)
  202. blurEffectView.frame = CGRect(x: 0, y: 0, width: 500, height: 20)
  203. appearance.backgroundColor = .systemBackground
  204. appearance.cornerRadius = 10
  205. appearance.shadowColor = .black
  206. appearance.shadowOpacity = 0.2
  207. appearance.shadowRadius = 30
  208. appearance.animationduration = 0.25
  209. appearance.textColor = .darkGray
  210. for sharee in sharees {
  211. var label = sharee.label
  212. if sharee.shareType == shareCommon.SHARE_TYPE_CIRCLE {
  213. label += " (\(sharee.circleInfo), \(sharee.circleOwner))"
  214. }
  215. dropDown.dataSource.append(label)
  216. }
  217. dropDown.anchorView = searchField
  218. dropDown.bottomOffset = CGPoint(x: 10, y: searchField.bounds.height)
  219. dropDown.width = searchField.bounds.width - 20
  220. dropDown.direction = .bottom
  221. dropDown.cellNib = UINib(nibName: "NCSearchUserDropDownCell", bundle: nil)
  222. dropDown.customCellConfiguration = { (index: Index, _, cell: DropDownCell) -> Void in
  223. guard let cell = cell as? NCSearchUserDropDownCell else { return }
  224. let sharee = sharees[index]
  225. cell.setupCell(sharee: sharee, userBaseUrl: appDelegate)
  226. }
  227. dropDown.selectionAction = { index, _ in
  228. let sharee = sharees[index]
  229. guard
  230. let advancePermission = UIStoryboard(name: "NCShare", bundle: nil).instantiateViewController(withIdentifier: "NCShareAdvancePermission") as? NCShareAdvancePermission,
  231. let navigationController = self.navigationController,
  232. let metadata = self.metadata else { return }
  233. self.checkEnforcedPassword(shareType: sharee.shareType) { password in
  234. let shareOptions = NCTableShareOptions(sharee: sharee, metadata: metadata, password: password)
  235. advancePermission.share = shareOptions
  236. advancePermission.networking = self.networking
  237. advancePermission.metadata = metadata
  238. navigationController.pushViewController(advancePermission, animated: true)
  239. }
  240. }
  241. dropDown.show()
  242. }
  243. }
  244. // MARK: - UITableViewDelegate
  245. extension NCShare: UITableViewDelegate {
  246. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  247. if indexPath.section == 0, indexPath.row == 0 {
  248. // internal cell has description
  249. return 40
  250. }
  251. return 60
  252. }
  253. }
  254. // MARK: - UITableViewDataSource
  255. extension NCShare: UITableViewDataSource {
  256. func numberOfSections(in tableView: UITableView) -> Int {
  257. return 2
  258. }
  259. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  260. guard let metadata = self.metadata else { return 0}
  261. var numRows = shares.share?.count ?? 0
  262. if section == 0 {
  263. if metadata.e2eEncrypted && NCGlobal.shared.capabilityE2EEApiVersion == NCGlobal.shared.e2eeVersionV12 {
  264. numRows = 1
  265. } else {
  266. // don't allow link creation if reshare is disabled
  267. numRows = shares.firstShareLink != nil || canReshare ? 2 : 1
  268. }
  269. }
  270. return numRows
  271. }
  272. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  273. // Setup default share cells
  274. guard indexPath.section != 0 else {
  275. guard let cell = tableView.dequeueReusableCell(withIdentifier: "cellLink", for: indexPath) as? NCShareLinkCell, let metadata = self.metadata
  276. else { return UITableViewCell() }
  277. cell.delegate = self
  278. if metadata.e2eEncrypted && NCGlobal.shared.capabilityE2EEApiVersion == NCGlobal.shared.e2eeVersionV12 {
  279. cell.tableShare = shares.firstShareLink
  280. } else {
  281. if indexPath.row == 1 {
  282. cell.isInternalLink = true
  283. } else if shares.firstShareLink?.isInvalidated != true {
  284. cell.tableShare = shares.firstShareLink
  285. }
  286. }
  287. cell.setupCellUI()
  288. return cell
  289. }
  290. guard let appDelegate = appDelegate, let tableShare = shares.share?[indexPath.row] else { return UITableViewCell() }
  291. // LINK
  292. if tableShare.shareType == shareCommon.SHARE_TYPE_LINK {
  293. if let cell = tableView.dequeueReusableCell(withIdentifier: "cellLink", for: indexPath) as? NCShareLinkCell {
  294. cell.indexPath = indexPath
  295. cell.tableShare = tableShare
  296. cell.delegate = self
  297. cell.setupCellUI()
  298. return cell
  299. }
  300. } else {
  301. // USER / GROUP etc.
  302. if let cell = tableView.dequeueReusableCell(withIdentifier: "cellUser", for: indexPath) as? NCShareUserCell {
  303. cell.indexPath = indexPath
  304. cell.tableShare = tableShare
  305. cell.delegate = self
  306. cell.setupCellUI(userId: appDelegate.userId)
  307. let fileName = appDelegate.userBaseUrl + "-" + tableShare.shareWith + ".png"
  308. NCNetworking.shared.downloadAvatar(user: tableShare.shareWith, dispalyName: tableShare.shareWithDisplayname, fileName: fileName, cell: cell, view: tableView)
  309. return cell
  310. }
  311. }
  312. return UITableViewCell()
  313. }
  314. }
  315. // MARK: CNContactPickerDelegate
  316. extension NCShare: CNContactPickerDelegate {
  317. func contactPicker(_ picker: CNContactPickerViewController, didSelect contact: CNContact) {
  318. if contact.emailAddresses.count > 1 {
  319. showEmailList(arrEmail: contact.emailAddresses.map({$0.value as String}))
  320. } else if let email = contact.emailAddresses.first?.value as? String {
  321. searchField?.text = email
  322. networking?.getSharees(searchString: email)
  323. }
  324. }
  325. func showEmailList(arrEmail: [String]) {
  326. var actions = [NCMenuAction]()
  327. for email in arrEmail {
  328. actions.append(
  329. NCMenuAction(
  330. title: email,
  331. icon: utility.loadImage(named: "email", colors: [NCBrandColor.shared.iconImageColor]),
  332. selected: false,
  333. on: false,
  334. action: { _ in
  335. self.searchField?.text = email
  336. self.networking?.getSharees(searchString: email)
  337. }
  338. )
  339. )
  340. }
  341. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  342. self.presentMenu(with: actions)
  343. }
  344. }
  345. }
  346. extension NCShare: UISearchBarDelegate {
  347. func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
  348. NSObject.cancelPreviousPerformRequests(withTarget: self, selector: #selector(searchSharees), object: nil)
  349. if searchText.isEmpty {
  350. dropDown.hide()
  351. } else {
  352. perform(#selector(searchSharees), with: nil, afterDelay: 0.5)
  353. }
  354. }
  355. @objc private func searchSharees() {
  356. // https://stackoverflow.com/questions/25471114/how-to-validate-an-e-mail-address-in-swift
  357. func isValidEmail(_ email: String) -> Bool {
  358. let emailRegEx = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}"
  359. let emailPred = NSPredicate(format: "SELF MATCHES %@", emailRegEx)
  360. return emailPred.evaluate(with: email)
  361. }
  362. guard let searchString = searchField.text, !searchString.isEmpty else { return }
  363. if searchString.contains("@"), !isValidEmail(searchString) { return }
  364. networking?.getSharees(searchString: searchString)
  365. }
  366. }