NCActivity.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. //
  2. // NCActivity.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/01/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 UIKit
  25. import SwiftRichString
  26. class NCActivity: UIViewController, UITableViewDataSource, UITableViewDelegate, UITableViewDataSourcePrefetching, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  27. @IBOutlet weak var tableView: UITableView!
  28. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  29. private let refreshControl = UIRefreshControl()
  30. var activities = [tableActivity]()
  31. var sectionDate = [Date]()
  32. var loadingActivity = false
  33. override func viewDidLoad() {
  34. super.viewDidLoad()
  35. // empty Data Source
  36. tableView.emptyDataSetDelegate = self;
  37. tableView.emptyDataSetSource = self;
  38. tableView.allowsSelection = false
  39. tableView.separatorColor = UIColor.clear
  40. tableView.tableFooterView = UIView()
  41. tableView.refreshControl = refreshControl
  42. // Configure Refresh Control
  43. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  44. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brand
  45. refreshControl.addTarget(self, action: #selector(loadActivityRefreshing), for: .valueChanged)
  46. }
  47. override func viewWillAppear(_ animated: Bool) {
  48. super.viewWillAppear(animated)
  49. // Color
  50. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, online: appDelegate.reachability.isReachable(), hidden: false)
  51. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  52. self.title = NSLocalizedString("_activity_", comment: "")
  53. loadDataSource()
  54. }
  55. // MARK: DZNEmpty
  56. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  57. return NCBrandColor.sharedInstance.backgroundView
  58. }
  59. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  60. return CCGraphics.changeThemingColorImage(UIImage.init(named: "activityNoRecord"), width: 300, height: 300, scale: 2, color: NCBrandColor.sharedInstance.graySoft)
  61. }
  62. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  63. let text = "\n" + NSLocalizedString("_no_activity_", comment: "")
  64. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  65. return NSAttributedString.init(string: text, attributes: attributes)
  66. }
  67. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  68. return true
  69. }
  70. // MARK: TableView
  71. func loadDataSource() {
  72. sectionDate.removeAll()
  73. activities = NCManageDatabase.sharedInstance.getActivity(predicate: NSPredicate(format: "account == %@", appDelegate.activeAccount))
  74. for tableActivity in activities {
  75. guard let date = Calendar.current.date(from: Calendar.current.dateComponents([.year, .month, .day], from: tableActivity.date as Date)) else {
  76. continue
  77. }
  78. if !sectionDate.contains(date) {
  79. sectionDate.append(date)
  80. }
  81. }
  82. tableView.reloadData()
  83. }
  84. func getTableActivitiesFromSection(_ section: Int) -> [tableActivity] {
  85. let startDate = sectionDate[section]
  86. let endDate: Date = {
  87. let components = DateComponents(day: 1, second: -1)
  88. return Calendar.current.date(byAdding: components, to: startDate)!
  89. }()
  90. return NCManageDatabase.sharedInstance.getActivity(predicate: NSPredicate(format: "account == %@ && date BETWEEN %@", appDelegate.activeAccount, [startDate, endDate]))
  91. }
  92. func numberOfSections(in tableView: UITableView) -> Int {
  93. return sectionDate.count
  94. }
  95. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  96. return getTableActivitiesFromSection(section).count
  97. }
  98. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  99. return 60
  100. }
  101. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  102. let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.bounds.width, height: 60))
  103. view.backgroundColor = .clear
  104. let label = UILabel()
  105. label.font = UIFont.boldSystemFont(ofSize: 16)
  106. label.textColor = .white
  107. label.text = CCUtility.getTitleSectionDate(sectionDate[section])
  108. label.textAlignment = .center
  109. label.layer.cornerRadius = 11
  110. label.layer.masksToBounds = true
  111. label.layer.backgroundColor = UIColor(red: 152.0/255.0, green: 167.0/255.0, blue: 181.0/255.0, alpha: 0.8).cgColor
  112. let widthFrame = label.intrinsicContentSize.width + 30
  113. let xFrame = tableView.bounds.width / 2 - widthFrame / 2
  114. label.frame = CGRect(x: xFrame, y: 10, width: widthFrame, height: 22)
  115. view.addSubview(label)
  116. return view
  117. }
  118. func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
  119. return 120
  120. }
  121. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  122. return UITableView.automaticDimension
  123. }
  124. func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {
  125. let section = indexPaths.last?.section ?? 0
  126. let row = indexPaths.last?.row ?? 0
  127. let lastSection = self.sectionDate.count - 1
  128. let lastRow = getTableActivitiesFromSection(section).count - 1
  129. if section == lastSection && row > lastRow - 1 {
  130. let results = getTableActivitiesFromSection(section)
  131. let activity = results[lastRow]
  132. loadActivity(idActivity: activity.idActivity)
  133. }
  134. }
  135. func tableView(_ tableView: UITableView, cancelPrefetchingForRowsAt indexPaths: [IndexPath]) {
  136. //print("cancelPrefetchingForRowsAt \(indexPaths)")
  137. }
  138. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  139. if let cell = tableView.dequeueReusableCell(withIdentifier: "tableCell", for: indexPath) as? activityTableViewCell {
  140. let results = getTableActivitiesFromSection(indexPath.section)
  141. let activity = results[indexPath.row]
  142. var orderKeysId = [String]()
  143. cell.idActivity = activity.idActivity
  144. cell.account = activity.account
  145. cell.avatar.image = nil
  146. cell.avatar.isHidden = true
  147. cell.subjectTrailingConstraint.constant = 10
  148. // icon
  149. if activity.icon.count > 0 {
  150. let fileNameIcon = (activity.icon as NSString).lastPathComponent
  151. let fileNameLocalPath = CCUtility.getDirectoryUserData() + "/" + fileNameIcon
  152. if FileManager.default.fileExists(atPath: fileNameLocalPath) {
  153. if let image = UIImage(contentsOfFile: fileNameLocalPath) {
  154. cell.icon.image = image
  155. }
  156. } else {
  157. DispatchQueue.global().async {
  158. let encodedString = activity.icon.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
  159. if let data = try? Data(contentsOf: URL(string: encodedString!)!) {
  160. DispatchQueue.main.async {
  161. do {
  162. try data.write(to: fileNameLocalPath.url, options: .atomic)
  163. } catch { return }
  164. cell.icon.image = UIImage(data: data)
  165. }
  166. }
  167. }
  168. }
  169. }
  170. // avatar
  171. if activity.user.count > 0 && activity.user != appDelegate.activeUserID {
  172. cell.subjectTrailingConstraint.constant = 50
  173. cell.avatar.isHidden = false
  174. let fileNameLocalPath = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-" + activity.user + ".png"
  175. if FileManager.default.fileExists(atPath: fileNameLocalPath) {
  176. if let image = UIImage(contentsOfFile: fileNameLocalPath) {
  177. cell.avatar.image = image
  178. }
  179. } else {
  180. DispatchQueue.global().async {
  181. let url = self.appDelegate.activeUrl + k_avatar + activity.user + "/128"
  182. let encodedString = url.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
  183. if let data = try? Data(contentsOf: URL(string: encodedString!)!) {
  184. DispatchQueue.main.async {
  185. do {
  186. try data.write(to: fileNameLocalPath.url, options: .atomic)
  187. } catch { return }
  188. cell.avatar.image = UIImage(data: data)
  189. }
  190. }
  191. }
  192. }
  193. }
  194. // subject
  195. if activity.subjectRich.count > 0 {
  196. var subject = activity.subjectRich
  197. var keys = [String]()
  198. if let regex = try? NSRegularExpression(pattern: "\\{[a-z0-9]+\\}", options: .caseInsensitive) {
  199. let string = subject as NSString
  200. keys = regex.matches(in: subject, options: [], range: NSRange(location: 0, length: string.length)).map {
  201. string.substring(with: $0.range).replacingOccurrences(of: "[\\{\\}]", with: "", options: .regularExpression)
  202. }
  203. }
  204. for key in keys {
  205. if let result = NCManageDatabase.sharedInstance.getActivitySubjectRich(account: appDelegate.activeAccount, idActivity: activity.idActivity, key: key) {
  206. orderKeysId.append(result.id)
  207. subject = subject.replacingOccurrences(of: "{\(key)}", with: "<bold>" + result.name + "</bold>")
  208. }
  209. }
  210. let normal = Style {
  211. $0.font = UIFont.systemFont(ofSize: cell.subject.font.pointSize)
  212. $0.lineSpacing = 1.5
  213. }
  214. let bold = Style { $0.font = UIFont.systemFont(ofSize: cell.subject.font.pointSize, weight: .bold) }
  215. let date = Style { $0.font = UIFont.systemFont(ofSize: cell.subject.font.pointSize - 3)
  216. $0.color = UIColor.lightGray
  217. }
  218. subject = subject + "\n" + "<date>" + CCUtility.dateDiff(activity.date as Date) + "</date>"
  219. cell.subject.attributedText = subject.set(style: StyleGroup(base: normal, ["bold": bold, "date": date]))
  220. }
  221. // CollectionView
  222. cell.activityPreviews = NCManageDatabase.sharedInstance.getActivityPreview(account: activity.account, idActivity: activity.idActivity, orderKeysId: orderKeysId)
  223. if cell.activityPreviews.count == 0 {
  224. cell.collectionViewHeightConstraint.constant = 0
  225. } else {
  226. cell.collectionViewHeightConstraint.constant = 60
  227. }
  228. cell.collectionView.reloadData()
  229. return cell
  230. }
  231. return UITableViewCell()
  232. }
  233. // MARK: NC API
  234. @objc func loadActivityRefreshing() {
  235. loadActivity(idActivity: 0)
  236. }
  237. @objc func loadActivity(idActivity: Int) {
  238. if loadingActivity {
  239. return
  240. } else {
  241. loadingActivity = true
  242. }
  243. if idActivity > 0 {
  244. NCUtility.sharedInstance.startActivityIndicator(view: self.view, bottom: 50)
  245. }
  246. OCNetworking.sharedManager().getActivityWithAccount(appDelegate.activeAccount, since: idActivity, limit: 100, link: "", completion: { (account, listOfActivity, message, errorCode) in
  247. if errorCode == 0 && account == self.appDelegate.activeAccount {
  248. NCManageDatabase.sharedInstance.addActivity(listOfActivity as! [OCActivity], account: account!)
  249. self.loadDataSource()
  250. }
  251. self.refreshControl.endRefreshing()
  252. NCUtility.sharedInstance.stopActivityIndicator()
  253. self.loadingActivity = false
  254. })
  255. }
  256. }
  257. class activityTableViewCell: UITableViewCell, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  258. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  259. @IBOutlet weak var collectionView: UICollectionView!
  260. @IBOutlet weak var icon: UIImageView!
  261. @IBOutlet weak var avatar: UIImageView!
  262. @IBOutlet weak var subject: UILabel!
  263. @IBOutlet weak var subjectTrailingConstraint: NSLayoutConstraint!
  264. @IBOutlet weak var collectionViewHeightConstraint: NSLayoutConstraint!
  265. var idActivity: Int = 0
  266. var account: String = ""
  267. var activityPreviews = [tableActivityPreview]()
  268. override func awakeFromNib() {
  269. super.awakeFromNib()
  270. collectionView.delegate = self
  271. collectionView.dataSource = self
  272. }
  273. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  274. return CGSize(width: 50, height: 50)
  275. }
  276. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
  277. return 20
  278. }
  279. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  280. return UIEdgeInsets(top: 0, left: 0, bottom: 10, right: 0)
  281. }
  282. func numberOfSections(in collectionView: UICollectionView) -> Int {
  283. return 1
  284. }
  285. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  286. return activityPreviews.count
  287. }
  288. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  289. if let cell: activityCollectionViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionCell", for: indexPath) as? activityCollectionViewCell {
  290. cell.imageView.image = nil
  291. let activityPreview = activityPreviews[indexPath.row]
  292. let fileID = String(activityPreview.fileId)
  293. // Trashbin
  294. if activityPreview.view == "trashbin" {
  295. let source = activityPreview.source
  296. NCUtility.sharedInstance.convertSVGtoPNGWriteToUserData(svgUrlString: source, fileName: nil, width: 100, rewrite: false) { (imageNamePath) in
  297. if imageNamePath != nil {
  298. if let image = UIImage(contentsOfFile: imageNamePath!) {
  299. cell.imageView.image = image
  300. }
  301. }
  302. }
  303. } else {
  304. if activityPreview.isMimeTypeIcon {
  305. let source = activityPreview.source
  306. NCUtility.sharedInstance.convertSVGtoPNGWriteToUserData(svgUrlString: source, fileName: nil, width: 100, rewrite: false) { (imageNamePath) in
  307. if imageNamePath != nil {
  308. if let image = UIImage(contentsOfFile: imageNamePath!) {
  309. cell.imageView.image = image
  310. }
  311. }
  312. }
  313. } else {
  314. if let activitySubjectRich = NCManageDatabase.sharedInstance.getActivitySubjectRich(account: account, idActivity: idActivity, id: fileID) {
  315. let fileNamePath = CCUtility.getDirectoryUserData() + "/" + activitySubjectRich.name
  316. if FileManager.default.fileExists(atPath: fileNamePath) {
  317. if let image = UIImage(contentsOfFile: fileNamePath) {
  318. cell.imageView.image = image
  319. }
  320. } else {
  321. OCNetworking.sharedManager()?.downloadPreview(withAccount: appDelegate.activeAccount, serverPath: activityPreview.source, fileNamePath: fileNamePath, completion: { (account, image, message, errorCode) in
  322. if errorCode == 0 {
  323. cell.imageView.image = image
  324. }
  325. })
  326. }
  327. }
  328. }
  329. }
  330. return cell
  331. }
  332. return UICollectionViewCell()
  333. }
  334. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  335. let activityPreview = activityPreviews[indexPath.row]
  336. if activityPreview.view == "trashbin" {
  337. var responder: UIResponder? = collectionView
  338. while !(responder is UIViewController) {
  339. responder = responder?.next
  340. if nil == responder {
  341. break
  342. }
  343. }
  344. if (responder as? UIViewController)!.navigationController != nil {
  345. if let viewController = UIStoryboard.init(name: "NCTrash", bundle: nil).instantiateInitialViewController() as? NCTrash {
  346. viewController.scrollToFileID = String(activityPreview.fileId)
  347. (responder as? UIViewController)!.navigationController?.pushViewController(viewController, animated: true)
  348. }
  349. }
  350. return
  351. }
  352. if activityPreview.view == "files" && activityPreview.mimeType != "dir" {
  353. guard let activitySubjectRich = NCManageDatabase.sharedInstance.getActivitySubjectRich(account: activityPreview.account, idActivity: activityPreview.idActivity, id: String(activityPreview.fileId)) else {
  354. return
  355. }
  356. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileID CONTAINS %@", activitySubjectRich.id)) {
  357. if let filePath = CCUtility.getDirectoryProviderStorageFileID(metadata.fileID, fileNameView: metadata.fileNameView) {
  358. do {
  359. let attr = try FileManager.default.attributesOfItem(atPath: filePath)
  360. let fileSize = attr[FileAttributeKey.size] as! UInt64
  361. if fileSize > 0 {
  362. self.appDelegate.activeMain.performSegue(withIdentifier: "segueDetail", sender: metadata)
  363. return
  364. }
  365. } catch {
  366. print("Error: \(error)")
  367. }
  368. }
  369. }
  370. var pathComponents = activityPreview.link.components(separatedBy: "?")
  371. pathComponents = pathComponents[1].components(separatedBy: "&")
  372. var url = pathComponents[0].replacingOccurrences(of: "dir=", with: "").removingPercentEncoding!
  373. url = appDelegate.activeUrl + k_webDAV + url + "/" + activitySubjectRich.name
  374. let fileNameLocalPath = CCUtility.getDirectoryProviderStorageFileID(activitySubjectRich.id, fileNameView: activitySubjectRich.name)
  375. NCUtility.sharedInstance.startActivityIndicator(view: (appDelegate.window.rootViewController?.view)!, bottom: 0)
  376. let _ = OCNetworking.sharedManager()?.download(withAccount: activityPreview.account, url: url, fileNameLocalPath: fileNameLocalPath, completion: { (account, message, errorCode) in
  377. if account == self.appDelegate.activeAccount && errorCode == 0 {
  378. let serverUrl = (url as NSString).deletingLastPathComponent
  379. let fileName = (url as NSString).lastPathComponent
  380. OCNetworking.sharedManager()?.readFile(withAccount: activityPreview.account, serverUrl: serverUrl, fileName: fileName, completion: { (account, metadata, message, errorCode) in
  381. NCUtility.sharedInstance.stopActivityIndicator()
  382. if account == self.appDelegate.activeAccount && errorCode == 0 {
  383. // move from id to oc:id + instanceid (fileID)
  384. let atPath = CCUtility.getDirectoryProviderStorage()! + "/" + activitySubjectRich.id
  385. let toPath = CCUtility.getDirectoryProviderStorage()! + "/" + metadata!.fileID
  386. CCUtility.moveFile(atPath: atPath, toPath: toPath)
  387. if let metadata = NCManageDatabase.sharedInstance.addMetadata(metadata!) {
  388. self.appDelegate.activeMain.performSegue(withIdentifier: "segueDetail", sender: metadata)
  389. }
  390. }
  391. })
  392. } else {
  393. NCUtility.sharedInstance.stopActivityIndicator()
  394. }
  395. })
  396. }
  397. }
  398. }
  399. class activityCollectionViewCell: UICollectionViewCell {
  400. @IBOutlet weak var imageView: UIImageView!
  401. override func awakeFromNib() {
  402. super.awakeFromNib()
  403. }
  404. }