NCShare.swift 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  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. //
  8. // Author Marino Faggiana <marino.faggiana@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. import Parchment
  25. import FSCalendar
  26. class NCSharePaging: UIViewController {
  27. private let pagingViewController = NCShareHeaderViewController()
  28. @objc var metadata: tableMetadata?
  29. override func viewDidLoad() {
  30. super.viewDidLoad()
  31. pagingViewController.metadata = metadata
  32. // Navigation Controller
  33. var image = CCGraphics.changeThemingColorImage(UIImage(named: "exit")!, width: 40, height: 40, color: UIColor.gray)
  34. image = image?.withRenderingMode(.alwaysOriginal)
  35. self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: image, style:.plain, target: self, action: #selector(exitTapped))
  36. // Pagination
  37. addChild(pagingViewController)
  38. view.addSubview(pagingViewController.view)
  39. pagingViewController.didMove(toParent: self)
  40. pagingViewController.selectedTextColor = .black
  41. pagingViewController.indicatorColor = .black
  42. pagingViewController.indicatorOptions = .visible(
  43. height: 1,
  44. zIndex: Int.max,
  45. spacing: .zero,
  46. insets: .zero
  47. )
  48. // Contrain the paging view to all edges.
  49. pagingViewController.view.translatesAutoresizingMaskIntoConstraints = false
  50. NSLayoutConstraint.activate([
  51. pagingViewController.view.topAnchor.constraint(equalTo: view.topAnchor),
  52. pagingViewController.view.bottomAnchor.constraint(equalTo: view.bottomAnchor),
  53. pagingViewController.view.leadingAnchor.constraint(equalTo: view.leadingAnchor),
  54. pagingViewController.view.trailingAnchor.constraint(equalTo: view.trailingAnchor),
  55. ])
  56. // Set our data source and delegate.
  57. pagingViewController.dataSource = self
  58. }
  59. @objc func exitTapped() {
  60. self.dismiss(animated: true, completion: nil)
  61. }
  62. }
  63. extension NCSharePaging: PagingViewControllerDataSource {
  64. func pagingViewController<T>(_ pagingViewController: PagingViewController<T>, viewControllerForIndex index: Int) -> UIViewController {
  65. let height = pagingViewController.options.menuHeight + NCSharePagingView.HeaderHeight
  66. switch index {
  67. case 0:
  68. let viewController = UIStoryboard(name: "NCActivity", bundle: nil).instantiateInitialViewController() as! NCActivity
  69. viewController.insets = UIEdgeInsets(top: height, left: 0, bottom: 0, right: 0)
  70. viewController.refreshControlEnable = false
  71. viewController.didSelectItemEnable = false
  72. viewController.filterFileID = metadata!.fileID
  73. return viewController
  74. case 1:
  75. let viewController = UIStoryboard(name: "NCShare", bundle: nil).instantiateViewController(withIdentifier: "comments") as! NCShareComments
  76. viewController.metadata = metadata!
  77. return viewController
  78. case 2:
  79. let viewController = UIStoryboard(name: "NCShare", bundle: nil).instantiateViewController(withIdentifier: "sharing") as! NCShare
  80. viewController.metadata = metadata!
  81. viewController.height = height
  82. return viewController
  83. default:
  84. return UIViewController()
  85. }
  86. }
  87. func pagingViewController<T>(_ pagingViewController: PagingViewController<T>, pagingItemForIndex index: Int) -> T {
  88. switch index {
  89. case 0:
  90. return PagingIndexItem(index: index, title: NSLocalizedString("_activity_", comment: "")) as! T
  91. case 1:
  92. return PagingIndexItem(index: index, title: NSLocalizedString("_comments_", comment: "")) as! T
  93. case 2:
  94. return PagingIndexItem(index: index, title: NSLocalizedString("_sharing_", comment: "")) as! T
  95. default:
  96. return PagingIndexItem(index: index, title: "") as! T
  97. }
  98. }
  99. func numberOfViewControllers<T>(in: PagingViewController<T>) -> Int{
  100. return 3
  101. }
  102. }
  103. class NCShareHeaderViewController: PagingViewController<PagingIndexItem> {
  104. public var image: UIImage?
  105. public var metadata: tableMetadata?
  106. override func loadView() {
  107. view = NCSharePagingView(
  108. options: options,
  109. collectionView: collectionView,
  110. pageView: pageViewController.view,
  111. metadata: metadata
  112. )
  113. }
  114. }
  115. class NCSharePagingView: PagingView {
  116. static let HeaderHeight: CGFloat = 200
  117. var metadata: tableMetadata?
  118. var headerHeightConstraint: NSLayoutConstraint?
  119. public init(options: Parchment.PagingOptions, collectionView: UICollectionView, pageView: UIView, metadata: tableMetadata?) {
  120. super.init(options: options, collectionView: collectionView, pageView: pageView)
  121. self.metadata = metadata
  122. }
  123. required init?(coder: NSCoder) {
  124. fatalError("init(coder:) has not been implemented")
  125. }
  126. override func setupConstraints() {
  127. let headerView = Bundle.main.loadNibNamed("NCShareHeaderView", owner: self, options: nil)?.first as! NCShareHeaderView
  128. if FileManager.default.fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata!.fileID, fileNameView: metadata!.fileNameView)) {
  129. headerView.imageView.image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata!.fileID, fileNameView: metadata!.fileNameView))
  130. } else {
  131. if metadata!.iconName.count > 0 {
  132. headerView.imageView.image = UIImage.init(named: metadata!.iconName)
  133. } else if metadata!.directory {
  134. let image = UIImage.init(named: "folder")!
  135. headerView.imageView.image = CCGraphics.changeThemingColorImage(image, width: image.size.width*2, height: image.size.height*2, color: NCBrandColor.sharedInstance.brandElement)
  136. } else {
  137. headerView.imageView.image = UIImage.init(named: "file")
  138. }
  139. }
  140. headerView.fileName.text = metadata?.fileNameView
  141. if metadata!.favorite {
  142. headerView.favorite.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), width: 40, height: 40, color: NCBrandColor.sharedInstance.yellowFavorite), for: .normal)
  143. } else {
  144. headerView.favorite.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), width: 40, height: 40, color: NCBrandColor.sharedInstance.textInfo), for: .normal)
  145. }
  146. headerView.info.text = CCUtility.transformedSize(metadata!.size) + ", " + CCUtility.dateDiff(metadata!.date as Date)
  147. addSubview(headerView)
  148. pageView.translatesAutoresizingMaskIntoConstraints = false
  149. collectionView.translatesAutoresizingMaskIntoConstraints = false
  150. headerView.translatesAutoresizingMaskIntoConstraints = false
  151. headerHeightConstraint = headerView.heightAnchor.constraint(
  152. equalToConstant: NCSharePagingView.HeaderHeight
  153. )
  154. headerHeightConstraint?.isActive = true
  155. NSLayoutConstraint.activate([
  156. collectionView.leadingAnchor.constraint(equalTo: leadingAnchor),
  157. collectionView.trailingAnchor.constraint(equalTo: trailingAnchor),
  158. collectionView.heightAnchor.constraint(equalToConstant: options.menuHeight),
  159. collectionView.topAnchor.constraint(equalTo: headerView.bottomAnchor),
  160. headerView.topAnchor.constraint(equalTo: topAnchor),
  161. headerView.leadingAnchor.constraint(equalTo: leadingAnchor),
  162. headerView.trailingAnchor.constraint(equalTo: trailingAnchor),
  163. pageView.leadingAnchor.constraint(equalTo: leadingAnchor),
  164. pageView.trailingAnchor.constraint(equalTo: trailingAnchor),
  165. pageView.bottomAnchor.constraint(equalTo: bottomAnchor),
  166. pageView.topAnchor.constraint(equalTo: topAnchor)
  167. ])
  168. }
  169. }
  170. class NCShareHeaderView: UIView {
  171. @IBOutlet weak var imageView: UIImageView!
  172. @IBOutlet weak var fileName: UILabel!
  173. @IBOutlet weak var info: UILabel!
  174. @IBOutlet weak var favorite: UIButton!
  175. }
  176. // MARK: - Comments
  177. class NCShareComments: UIViewController {
  178. var metadata: tableMetadata?
  179. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  180. override func viewDidLoad() {
  181. super.viewDidLoad()
  182. OCNetworking.sharedManager()?.getCommentsWithAccount(appDelegate.activeAccount, fileID: metadata?.fileID, completion: { (account, list, message, errorCode) in
  183. print("ciao")
  184. })
  185. }
  186. }
  187. // MARK: - Share
  188. class NCShare: UIViewController, UIGestureRecognizerDelegate, NCShareLinkCellDelegate, NCShareNetworkingDelegate {
  189. @IBOutlet weak var viewContainerConstraint: NSLayoutConstraint!
  190. @IBOutlet weak var searchField: UITextField!
  191. @IBOutlet weak var returnSearchButton: UIButton!
  192. @IBOutlet weak var shareLinkImage: UIImageView!
  193. @IBOutlet weak var shareLinkLabel: UILabel!
  194. @IBOutlet weak var buttonCopy: UIButton!
  195. @IBOutlet weak var buttonMenu: UIButton!
  196. @IBOutlet weak var tableView: UITableView!
  197. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  198. var metadata: tableMetadata?
  199. public var height: CGFloat = 0
  200. private var shareLinkMenuView: NCShareLinkMenuView?
  201. private var shareLinkMenuViewWindow: UIView?
  202. override func viewDidLoad() {
  203. super.viewDidLoad()
  204. viewContainerConstraint.constant = height
  205. searchField.placeholder = NSLocalizedString("_shareLinksearch_placeholder_", comment: "")
  206. returnSearchButton.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "arrowRight"), width: 100, height: 100, color: UIColor.gray), for: .normal)
  207. shareLinkLabel.text = NSLocalizedString("_share_link_", comment: "")
  208. shareLinkImage.image = NCShareCommon.sharedInstance.createLinkAvatar()
  209. buttonCopy.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "shareCopy"), width: 100, height: 100, color: UIColor.gray), for: .normal)
  210. tableView.dataSource = self
  211. tableView.delegate = self
  212. tableView.allowsSelection = false
  213. tableView.register(UINib.init(nibName: "NCShareLinkCell", bundle: nil), forCellReuseIdentifier: "cellLink")
  214. NotificationCenter.default.addObserver(self, selector: #selector(self.reloadData), name: NSNotification.Name(rawValue: "reloadDataNCShare"), object: nil)
  215. reloadData()
  216. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: nil, delegate: self)
  217. networking.readShare()
  218. }
  219. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  220. shareLinkMenuView?.viewWindowCalendar?.removeFromSuperview()
  221. shareLinkMenuViewWindow?.removeFromSuperview()
  222. }
  223. @IBAction func touchUpInsideButtonCopy(_ sender: Any) {
  224. let shares = NCManageDatabase.sharedInstance.getTableShares(metadata: metadata!)
  225. tapCopy(with: shares.firstShareLink, sender: sender)
  226. }
  227. @IBAction func touchUpInsideButtonMenu(_ sender: Any) {
  228. let shares = NCManageDatabase.sharedInstance.getTableShares(metadata: metadata!)
  229. if shares.firstShareLink != nil {
  230. tapMenu(with: shares.firstShareLink!, sender: sender)
  231. } else {
  232. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self.view, delegate: self)
  233. networking.share(metadata: metadata!, password: "", permission: 1, hideDownload: false)
  234. }
  235. }
  236. func tapCopy(with tableShare: tableShare?, sender: Any) {
  237. NCShareCommon.sharedInstance.copyLink(tableShare: tableShare, viewController: self)
  238. }
  239. func tapMenu(with tableShare: tableShare?, sender: Any) {
  240. let views = NCShareCommon.sharedInstance.openViewMenuShareLink(view: self.view, tableShare: tableShare, metadata: metadata!)
  241. shareLinkMenuView = views.shareLinkMenuView
  242. shareLinkMenuViewWindow = views.viewWindow
  243. }
  244. @objc func reloadData() {
  245. let shares = NCManageDatabase.sharedInstance.getTableShares(metadata: metadata!)
  246. if shares.firstShareLink == nil {
  247. buttonMenu.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "shareAdd"), width: 100, height: 100, color: UIColor.gray), for: .normal)
  248. buttonCopy.isHidden = true
  249. } else {
  250. buttonMenu.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "shareMenu"), width: 100, height: 100, color: UIColor.gray), for: .normal)
  251. buttonCopy.isHidden = false
  252. }
  253. tableView.reloadData()
  254. }
  255. // NCShareNetworkingDelegate
  256. func readShareCompleted(errorCode: Int) {
  257. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadDataNCShare"), object: nil, userInfo: nil)
  258. }
  259. func shareCompleted(errorCode: Int) {
  260. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadDataNCShare"), object: nil, userInfo: nil)
  261. }
  262. func unShareCompleted() { }
  263. func updateShareWithError(idRemoteShared: Int) { }
  264. }
  265. extension NCShare: UITableViewDelegate {
  266. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  267. return 60
  268. }
  269. }
  270. extension NCShare: UITableViewDataSource {
  271. func numberOfSections(in tableView: UITableView) -> Int {
  272. return 1
  273. }
  274. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  275. var numOfRows = 0
  276. let shares = NCManageDatabase.sharedInstance.getTableShares(metadata: metadata!)
  277. if shares.share != nil {
  278. numOfRows = shares.share!.count
  279. }
  280. return numOfRows
  281. }
  282. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  283. let shares = NCManageDatabase.sharedInstance.getTableShares(metadata: metadata!)
  284. let tableShare = shares.share![indexPath.row]
  285. if tableShare.shareType == Int(shareTypeLink.rawValue) {
  286. if let cell = tableView.dequeueReusableCell(withIdentifier: "cellLink", for: indexPath) as? NCShareLinkCell {
  287. cell.tableShare = tableShare
  288. cell.delegate = self
  289. return cell
  290. }
  291. }
  292. return UITableViewCell()
  293. }
  294. }
  295. class NCShareLinkCell: UITableViewCell {
  296. private let iconShare: CGFloat = 200
  297. var tableShare: tableShare?
  298. var delegate: NCShareLinkCellDelegate?
  299. @IBOutlet weak var imageItem: UIImageView!
  300. @IBOutlet weak var labelTitle: UILabel!
  301. @IBOutlet weak var buttonCopy: UIButton!
  302. @IBOutlet weak var buttonMenu: UIButton!
  303. override func awakeFromNib() {
  304. super.awakeFromNib()
  305. imageItem.image = NCShareCommon.sharedInstance.createLinkAvatar()
  306. labelTitle.text = NSLocalizedString("_share_link_", comment: "")
  307. buttonCopy.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "shareCopy"), width:100, height: 100, color: UIColor.gray), for: .normal)
  308. buttonMenu.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "shareMenu"), width:100, height: 100, color: UIColor.gray), for: .normal)
  309. }
  310. @IBAction func touchUpInsideCopy(_ sender: Any) {
  311. delegate?.tapCopy(with: tableShare, sender: sender)
  312. }
  313. @IBAction func touchUpInsideMenu(_ sender: Any) {
  314. delegate?.tapMenu(with: tableShare, sender: sender)
  315. }
  316. }
  317. protocol NCShareLinkCellDelegate {
  318. func tapCopy(with tableShare: tableShare?, sender: Any)
  319. func tapMenu(with tableShare: tableShare?, sender: Any)
  320. }
  321. // MARK: - ShareLinkMenuView
  322. class NCShareLinkMenuView: UIView, UIGestureRecognizerDelegate, NCShareNetworkingDelegate, FSCalendarDelegate {
  323. @IBOutlet weak var switchAllowEditing: UISwitch!
  324. @IBOutlet weak var labelAllowEditing: UILabel!
  325. @IBOutlet weak var switchHideDownload: UISwitch!
  326. @IBOutlet weak var labelHideDownload: UILabel!
  327. @IBOutlet weak var switchPasswordProtect: UISwitch!
  328. @IBOutlet weak var labelPasswordProtect: UILabel!
  329. @IBOutlet weak var fieldPasswordProtect: UITextField!
  330. @IBOutlet weak var buttonSendPasswordProtect: UIButton!
  331. @IBOutlet weak var switchSetExpirationDate: UISwitch!
  332. @IBOutlet weak var labelSetExpirationDate: UILabel!
  333. @IBOutlet weak var fieldSetExpirationDate: UITextField!
  334. @IBOutlet weak var imageNoteToRecipient: UIImageView!
  335. @IBOutlet weak var labelNoteToRecipient: UILabel!
  336. @IBOutlet weak var textViewNoteToRecipient: UITextView!
  337. @IBOutlet weak var buttonSendNoteToRecipient: UIButton!
  338. @IBOutlet weak var buttonDeleteShareLink: UIButton!
  339. @IBOutlet weak var labelDeleteShareLink: UILabel!
  340. @IBOutlet weak var imageDeleteShareLink: UIImageView!
  341. @IBOutlet weak var buttonAddAnotherLink: UIButton!
  342. @IBOutlet weak var labelAddAnotherLink: UILabel!
  343. @IBOutlet weak var imageAddAnotherLink: UIImageView!
  344. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  345. public let width: CGFloat = 250
  346. public let height: CGFloat = 470
  347. private var tableShare: tableShare?
  348. public var metadata: tableMetadata?
  349. public var viewWindow: UIView?
  350. public var viewWindowCalendar: UIView?
  351. override func awakeFromNib() {
  352. self.frame.size.width = width
  353. self.frame.size.height = height
  354. layer.borderColor = UIColor.lightGray.cgColor
  355. layer.borderWidth = 0.5
  356. layer.cornerRadius = 5
  357. layer.masksToBounds = false
  358. layer.shadowOffset = CGSize(width: 2, height: 2)
  359. layer.shadowOpacity = 0.2
  360. switchAllowEditing.transform = CGAffineTransform(scaleX: 0.75, y: 0.75)
  361. switchHideDownload.transform = CGAffineTransform(scaleX: 0.75, y: 0.75)
  362. switchPasswordProtect.transform = CGAffineTransform(scaleX: 0.75, y: 0.75)
  363. switchSetExpirationDate.transform = CGAffineTransform(scaleX: 0.75, y: 0.75)
  364. textViewNoteToRecipient.layer.borderColor = UIColor.lightGray.cgColor
  365. textViewNoteToRecipient.layer.borderWidth = 0.5
  366. textViewNoteToRecipient.layer.masksToBounds = false
  367. textViewNoteToRecipient.layer.cornerRadius = 5
  368. fieldSetExpirationDate.inputView = UIView()
  369. imageNoteToRecipient.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "file_txt"), width: 100, height: 100, color: UIColor.black)
  370. imageDeleteShareLink.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), width: 100, height: 100, color: UIColor.black)
  371. imageAddAnotherLink.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "add"), width: 100, height: 100, color: UIColor.black)
  372. }
  373. func addTap(view: UIView) {
  374. self.viewWindow = view
  375. let tap = UITapGestureRecognizer(target: self, action: #selector(tapHandler))
  376. tap.delegate = self
  377. viewWindow?.addGestureRecognizer(tap)
  378. }
  379. @objc func tapHandler(gesture: UITapGestureRecognizer) {
  380. viewWindow?.removeFromSuperview()
  381. }
  382. func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
  383. return gestureRecognizer.view == touch.view
  384. }
  385. func reloadData(idRemoteShared: Int) {
  386. tableShare = NCManageDatabase.sharedInstance.getTableShare(account: metadata!.account, idRemoteShared: idRemoteShared)
  387. // Allow editing
  388. if tableShare != nil && tableShare!.permissions > 1 {
  389. switchAllowEditing.setOn(true, animated: false)
  390. } else {
  391. switchAllowEditing.setOn(false, animated: false)
  392. }
  393. // Hide download
  394. if tableShare != nil && tableShare!.hideDownload {
  395. switchHideDownload.setOn(true, animated: false)
  396. } else {
  397. switchHideDownload.setOn(false, animated: false)
  398. }
  399. // Password protect
  400. if tableShare != nil && tableShare!.shareWith.count > 0 {
  401. switchPasswordProtect.setOn(true, animated: false)
  402. fieldPasswordProtect.isEnabled = true
  403. fieldPasswordProtect.text = tableShare!.shareWith
  404. buttonSendPasswordProtect.isEnabled = true
  405. } else {
  406. switchPasswordProtect.setOn(false, animated: false)
  407. fieldPasswordProtect.isEnabled = false
  408. fieldPasswordProtect.text = ""
  409. buttonSendPasswordProtect.isEnabled = false
  410. }
  411. // Set expiration date
  412. if tableShare != nil && tableShare!.expirationDate != nil {
  413. switchSetExpirationDate.setOn(true, animated: false)
  414. switchSetExpirationDate.isEnabled = true
  415. let dateFormatter = DateFormatter()
  416. dateFormatter.formatterBehavior = .behavior10_4
  417. dateFormatter.dateStyle = .short
  418. fieldSetExpirationDate.text = dateFormatter.string(from: tableShare!.expirationDate! as Date)
  419. } else {
  420. switchSetExpirationDate.setOn(false, animated: false)
  421. switchSetExpirationDate.isEnabled = false
  422. fieldSetExpirationDate.text = ""
  423. }
  424. // Note to recipient
  425. if tableShare != nil {
  426. textViewNoteToRecipient.text = tableShare!.note
  427. } else {
  428. textViewNoteToRecipient.text = ""
  429. }
  430. }
  431. @IBAction func switchAllowEditingChanged(sender: UISwitch) {
  432. guard let tableShare = self.tableShare else { return }
  433. var permission = 0
  434. if sender.isOn {
  435. permission = 3
  436. } else {
  437. permission = 1
  438. }
  439. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  440. networking.updateShare(idRemoteShared: tableShare.idRemoteShared, password: nil, permission: permission, note: nil, expirationTime: nil, hideDownload: tableShare.hideDownload)
  441. }
  442. @IBAction func switchHideDownloadChanged(sender: UISwitch) {
  443. guard let tableShare = self.tableShare else { return }
  444. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  445. networking.updateShare(idRemoteShared: tableShare.idRemoteShared, password: nil, permission: 0, note: nil, expirationTime: nil, hideDownload: sender.isOn)
  446. }
  447. @IBAction func switchPasswordProtectChanged(sender: UISwitch) {
  448. guard let tableShare = self.tableShare else { return }
  449. if sender.isOn {
  450. fieldPasswordProtect.isEnabled = true
  451. fieldPasswordProtect.text = tableShare.shareWith
  452. buttonSendPasswordProtect.isEnabled = true
  453. } else {
  454. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  455. networking.updateShare(idRemoteShared: tableShare.idRemoteShared, password: "", permission: 0, note: nil, expirationTime: nil, hideDownload: tableShare.hideDownload)
  456. }
  457. }
  458. @IBAction func buttonSendPasswordProtect(sender: UIButton) {
  459. guard let tableShare = self.tableShare else { return }
  460. if fieldPasswordProtect.text == nil || fieldPasswordProtect.text == "" { return }
  461. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  462. networking.updateShare(idRemoteShared: tableShare.idRemoteShared, password: fieldPasswordProtect.text, permission: 0, note: nil, expirationTime: nil, hideDownload: tableShare.hideDownload)
  463. }
  464. @IBAction func fieldSetExpirationDate(sender: UITextField) {
  465. let calendar = NCShareCommon.sharedInstance.openCalendar(view: self, width: width, height: height)
  466. calendar.calendar.delegate = self
  467. viewWindowCalendar = calendar.viewWindow
  468. }
  469. @IBAction func buttonSendNoteToRecipient(sender: UIButton) {
  470. guard let tableShare = self.tableShare else { return }
  471. if textViewNoteToRecipient.text == nil { return }
  472. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  473. networking.updateShare(idRemoteShared: tableShare.idRemoteShared, password: nil, permission: 0, note: textViewNoteToRecipient.text, expirationTime: nil, hideDownload: tableShare.hideDownload)
  474. }
  475. @IBAction func buttonDeleteShareLink(sender: UIButton) {
  476. guard let tableShare = self.tableShare else { return }
  477. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  478. networking.unShare(idRemoteShared: tableShare.idRemoteShared)
  479. }
  480. @IBAction func buttonAddAnotherLink(sender: UIButton) {
  481. let networking = NCShareNetworking.init(account: metadata!.account, activeUrl: appDelegate.activeUrl, view: self, delegate: self)
  482. networking.share(metadata: metadata!, password: "", permission: 1, hideDownload: false)
  483. }
  484. // delegate networking
  485. func readShareCompleted(errorCode: Int) {
  486. reloadData(idRemoteShared: tableShare?.idRemoteShared ?? 0)
  487. }
  488. func shareCompleted(errorCode: Int) {
  489. viewWindow?.removeFromSuperview()
  490. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadDataNCShare"), object: nil, userInfo: nil)
  491. }
  492. func unShareCompleted() {
  493. viewWindow?.removeFromSuperview()
  494. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadDataNCShare"), object: nil, userInfo: nil)
  495. }
  496. func updateShareWithError(idRemoteShared: Int) {
  497. reloadData(idRemoteShared: idRemoteShared)
  498. }
  499. // delegate calendar
  500. func calendar(_ calendar: FSCalendar, didSelect date: Date, at monthPosition: FSCalendarMonthPosition) {
  501. let dateFormatter = DateFormatter()
  502. dateFormatter.formatterBehavior = .behavior10_4
  503. dateFormatter.dateStyle = .short
  504. fieldSetExpirationDate.text = dateFormatter.string(from:date)
  505. fieldSetExpirationDate.endEditing(true)
  506. viewWindowCalendar?.removeFromSuperview()
  507. }
  508. }
  509. // --------------------------------------------------------------------------------------------
  510. // ===== Common =====
  511. // --------------------------------------------------------------------------------------------
  512. class NCShareCommon: NSObject {
  513. @objc static let sharedInstance: NCShareCommon = {
  514. let instance = NCShareCommon()
  515. return instance
  516. }()
  517. func createLinkAvatar() -> UIImage? {
  518. let size: CGFloat = 200
  519. let bottomImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "circle"), width: size, height: size, color: NCBrandColor.sharedInstance.brand)
  520. let topImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), width: size, height: size, color: UIColor.white)
  521. UIGraphicsBeginImageContextWithOptions(CGSize(width: size, height: size), false, 0.0)
  522. bottomImage?.draw(in: CGRect(origin: CGPoint.zero, size: CGSize(width: size, height: size)))
  523. topImage?.draw(in: CGRect(origin: CGPoint(x: size/4, y: size/4), size: CGSize(width: size/2, height: size/2)))
  524. let image = UIGraphicsGetImageFromCurrentImageContext()
  525. UIGraphicsEndImageContext()
  526. return image
  527. }
  528. func openViewMenuShareLink(view: UIView, tableShare: tableShare?, metadata: tableMetadata) -> (shareLinkMenuView: NCShareLinkMenuView, viewWindow: UIView) {
  529. let globalPoint = view.superview?.convert(view.frame.origin, to: nil)
  530. let window = UIApplication.shared.keyWindow!
  531. let viewWindow = UIView(frame: window.bounds)
  532. window.addSubview(viewWindow)
  533. let shareLinkMenuView = Bundle.main.loadNibNamed("NCShareLinkMenuView", owner: self, options: nil)?.first as! NCShareLinkMenuView
  534. shareLinkMenuView.addTap(view: viewWindow)
  535. shareLinkMenuView.metadata = metadata
  536. shareLinkMenuView.reloadData(idRemoteShared: tableShare?.idRemoteShared ?? 0)
  537. let shareLinkMenuViewX = view.bounds.width/2 - shareLinkMenuView.frame.width/2 + globalPoint!.x
  538. let shareLinkMenuViewY = globalPoint!.y + 10
  539. shareLinkMenuView.frame = CGRect(x: shareLinkMenuViewX, y: shareLinkMenuViewY, width: shareLinkMenuView.width, height: shareLinkMenuView.height)
  540. viewWindow.addSubview(shareLinkMenuView)
  541. return(shareLinkMenuView: shareLinkMenuView, viewWindow: viewWindow)
  542. }
  543. func openCalendar(view: UIView, width: CGFloat, height: CGFloat) -> (calendar: FSCalendar, viewWindow: UIView) {
  544. let globalPoint = view.superview?.convert(view.frame.origin, to: nil)
  545. let window = UIApplication.shared.keyWindow!
  546. let viewWindow = UIView(frame: window.bounds)
  547. window.addSubview(viewWindow)
  548. let calendar = FSCalendar(frame: CGRect(x: globalPoint!.x + 10, y: globalPoint!.y + 100, width: width - 20, height: 300))
  549. calendar.backgroundColor = .white
  550. calendar.layer.borderColor = UIColor.lightGray.cgColor
  551. calendar.layer.borderWidth = 0.5
  552. calendar.layer.masksToBounds = false
  553. calendar.layer.cornerRadius = 5
  554. calendar.layer.masksToBounds = false
  555. calendar.layer.shadowOffset = CGSize(width: 2, height: 2)
  556. calendar.layer.shadowOpacity = 0.2
  557. viewWindow.addSubview(calendar)
  558. return(calendar: calendar, viewWindow: viewWindow)
  559. }
  560. func copyLink(tableShare: tableShare?, viewController: UIViewController) {
  561. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  562. var url: String = ""
  563. guard let tableShare = tableShare else { return }
  564. if tableShare.token.hasPrefix("http://") || tableShare.token.hasPrefix("https://") {
  565. url = tableShare.token
  566. } else if tableShare.url != "" {
  567. url = tableShare.url
  568. } else {
  569. url = appDelegate.activeUrl + "/" + k_share_link_middle_part_url_after_version_8 + tableShare.token
  570. }
  571. if let name = URL(string: url), !name.absoluteString.isEmpty {
  572. let objectsToShare = [name]
  573. let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
  574. viewController.present(activityVC, animated: true, completion: nil)
  575. }
  576. }
  577. }
  578. // --------------------------------------------------------------------------------------------
  579. // ===== Networking =====
  580. // --------------------------------------------------------------------------------------------
  581. class NCShareNetworking: NSObject {
  582. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  583. var account: String
  584. var activeUrl: String
  585. var delegate: NCShareNetworkingDelegate?
  586. var view: UIView?
  587. init(account: String, activeUrl: String, view: UIView?, delegate: NCShareNetworkingDelegate?) {
  588. self.account = account
  589. self.activeUrl = activeUrl
  590. self.view = view
  591. self.delegate = delegate
  592. super.init()
  593. }
  594. func readShare() {
  595. NCUtility.sharedInstance.startActivityIndicator(view: view, bottom: 0)
  596. OCNetworking.sharedManager()?.readShare(withAccount: account, completion: { (account, items, message, errorCode) in
  597. NCUtility.sharedInstance.stopActivityIndicator()
  598. if errorCode == 0 {
  599. let itemsOCSharedDto = items as! [OCSharedDto]
  600. NCManageDatabase.sharedInstance.addShare(account: self.account, activeUrl: self.activeUrl, items: itemsOCSharedDto)
  601. } else {
  602. self.appDelegate.messageNotification("_share_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  603. }
  604. self.delegate?.readShareCompleted(errorCode: errorCode)
  605. })
  606. }
  607. func share(metadata: tableMetadata, password: String, permission: Int, hideDownload: Bool) {
  608. NCUtility.sharedInstance.startActivityIndicator(view: view, bottom: 0)
  609. let fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: metadata.serverUrl, activeUrl: activeUrl)!
  610. OCNetworking.sharedManager()?.share(withAccount: metadata.account, fileName: fileName, password: password, permission: permission, hideDownload: hideDownload, completion: { (account, message, errorCode) in
  611. if errorCode == 0 {
  612. OCNetworking.sharedManager()?.readShare(withAccount: account, completion: { (account, items, message, errorCode) in
  613. NCUtility.sharedInstance.stopActivityIndicator()
  614. if errorCode == 0 {
  615. let itemsOCSharedDto = items as! [OCSharedDto]
  616. NCManageDatabase.sharedInstance.addShare(account: self.account, activeUrl: self.activeUrl, items: itemsOCSharedDto)
  617. } else {
  618. self.appDelegate.messageNotification("_share_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  619. }
  620. self.delegate?.shareCompleted(errorCode: errorCode)
  621. })
  622. } else {
  623. NCUtility.sharedInstance.stopActivityIndicator()
  624. self.appDelegate.messageNotification("_share_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  625. }
  626. })
  627. }
  628. func unShare(idRemoteShared: Int) {
  629. NCUtility.sharedInstance.startActivityIndicator(view: view, bottom: 0)
  630. OCNetworking.sharedManager()?.unshareAccount(account, shareID: idRemoteShared, completion: { (account, message, errorCode) in
  631. NCUtility.sharedInstance.stopActivityIndicator()
  632. if errorCode == 0 {
  633. NCManageDatabase.sharedInstance.deleteTableShare(account: account!, idRemoteShared: idRemoteShared)
  634. self.delegate?.unShareCompleted()
  635. } else {
  636. self.appDelegate.messageNotification("_share_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  637. }
  638. })
  639. }
  640. func updateShare(idRemoteShared: Int, password: String?, permission: Int, note: String?, expirationTime: String?, hideDownload: Bool) {
  641. NCUtility.sharedInstance.startActivityIndicator(view: view, bottom: 0)
  642. OCNetworking.sharedManager()?.shareUpdateAccount(account, shareID: idRemoteShared, password: password, note:note, permission: permission, expirationTime: expirationTime, hideDownload: hideDownload, completion: { (account, message, errorCode) in
  643. NCUtility.sharedInstance.stopActivityIndicator()
  644. if errorCode == 0 {
  645. self.readShare()
  646. } else {
  647. self.appDelegate.messageNotification("_share_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  648. self.delegate?.updateShareWithError(idRemoteShared: idRemoteShared)
  649. }
  650. })
  651. }
  652. }
  653. protocol NCShareNetworkingDelegate {
  654. func readShareCompleted(errorCode: Int)
  655. func shareCompleted(errorCode: Int)
  656. func unShareCompleted()
  657. func updateShareWithError(idRemoteShared: Int)
  658. }