CCNotification.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. //
  2. // CCNotification.swift
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 27/01/17.
  6. // Copyright (c) 2017 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 UIKit
  24. class CCNotification: UITableViewController {
  25. var resultSearchController = UISearchController()
  26. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  27. override func viewDidLoad() {
  28. super.viewDidLoad()
  29. self.navigationController?.navigationBar.topItem?.title = NSLocalizedString("_notification_", comment: "")
  30. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  31. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  32. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
  33. self.navigationController?.navigationBar.isTranslucent = false
  34. self.navigationItem.setRightBarButton(UIBarButtonItem(barButtonSystemItem: .done, target: self, action: #selector(viewClose)), animated: true)
  35. self.tableView.separatorColor = NCBrandColor.sharedInstance.seperator
  36. self.tableView.tableFooterView = UIView()
  37. self.tableView.rowHeight = UITableView.automaticDimension
  38. self.tableView.estimatedRowHeight = 50.0
  39. // Register to receive notification reload data
  40. NotificationCenter.default.addObserver(self, selector: #selector(self.reloadDatasource), name: Notification.Name("notificationReloadData"), object: nil)
  41. reloadDatasource()
  42. }
  43. override func didReceiveMemoryWarning() {
  44. super.didReceiveMemoryWarning()
  45. }
  46. @objc func viewClose() {
  47. // Stop listening notification reload data
  48. NotificationCenter.default.removeObserver(self, name: Notification.Name("notificationReloadData"), object: nil);
  49. self.dismiss(animated: true, completion: nil)
  50. }
  51. // MARK: - Table
  52. @objc func reloadDatasource() {
  53. self.tableView.reloadData()
  54. }
  55. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
  56. return true
  57. }
  58. override func tableView(_ tableView: UITableView, editActionsForRowAt: IndexPath) -> [UITableViewRowAction]? {
  59. let notification = appDelegate.listOfNotifications.object(at: editActionsForRowAt.row) as! OCNotifications
  60. // No Action request
  61. if notification.actions.count == 0 {
  62. let remove = UITableViewRowAction(style: .normal, title: NSLocalizedString("_remove_", comment: "")) { action, index in
  63. tableView.setEditing(false, animated: true)
  64. OCNetworking.sharedManager().setNotificationWithAccount(self.appDelegate.activeAccount, serverUrl: "\(self.appDelegate.activeUrl!)/\(k_url_acces_remote_notification_api)/\(notification.idNotification)", type: "DELETE", completion: { (account, message, errorCode) in
  65. if errorCode == 0 && account == self.appDelegate.activeAccount {
  66. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  67. if let index = listOfNotifications.index(where: {$0.idNotification == notification.idNotification}) {
  68. self.appDelegate.listOfNotifications.removeObject(at: index)
  69. }
  70. self.reloadDatasource()
  71. if self.appDelegate.listOfNotifications.count == 0 {
  72. self.viewClose()
  73. }
  74. } else if errorCode != 0 {
  75. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  76. } else {
  77. print("[LOG] It has been changed user during networking process, error.")
  78. }
  79. })
  80. }
  81. remove.backgroundColor = .red
  82. return [remove]
  83. } else {
  84. // Action request
  85. var buttons = [UITableViewRowAction]()
  86. for action in notification.actions {
  87. let button = UITableViewRowAction(style: .normal, title: (action as! OCNotificationsAction).label) { action, index in
  88. for actionNotification in notification.actions {
  89. if (actionNotification as! OCNotificationsAction).label == action.title {
  90. tableView.setEditing(false, animated: true)
  91. OCNetworking.sharedManager().setNotificationWithAccount(self.appDelegate.activeAccount, serverUrl: (actionNotification as! OCNotificationsAction).link, type: (actionNotification as! OCNotificationsAction).type, completion: { (account, message, errorCode) in
  92. if errorCode == 0 && account == self.appDelegate.activeAccount {
  93. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  94. if let index = listOfNotifications.index(where: {$0.idNotification == notification.idNotification}) {
  95. self.appDelegate.listOfNotifications.removeObject(at: index)
  96. }
  97. self.reloadDatasource()
  98. if self.appDelegate.listOfNotifications.count == 0 {
  99. self.viewClose()
  100. }
  101. } else if errorCode != 0 {
  102. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  103. } else {
  104. print("[LOG] It has been changed user during networking process, error.")
  105. }
  106. })
  107. }
  108. }
  109. }
  110. if (action as! OCNotificationsAction).type == "DELETE" {
  111. button.backgroundColor = .red
  112. } else {
  113. button.backgroundColor = .green
  114. }
  115. buttons.append(button)
  116. }
  117. return buttons
  118. }
  119. }
  120. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  121. if self.resultSearchController.isActive {
  122. return 0
  123. } else {
  124. let numRecord = appDelegate.listOfNotifications.count
  125. return numRecord
  126. }
  127. }
  128. override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  129. let cell = self.tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCNotificationCell
  130. let selectionColor : UIView = UIView.init()
  131. selectionColor.backgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond()
  132. cell.selectedBackgroundView = selectionColor
  133. if self.resultSearchController.isActive {
  134. } else {
  135. let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
  136. let urlIcon = URL(string: notification.icon)
  137. var image : UIImage?
  138. if let urlIcon = urlIcon {
  139. let pathFileName = CCUtility.getDirectoryUserData() + "/" + urlIcon.deletingPathExtension().lastPathComponent + ".png"
  140. image = UIImage(contentsOfFile: pathFileName)
  141. }
  142. if let image = image {
  143. cell.icon.image = CCGraphics.changeThemingColorImage(image, multiplier: 2, color: NCBrandColor.sharedInstance.brandElement)
  144. } else {
  145. cell.icon.image = CCGraphics.changeThemingColorImage(#imageLiteral(resourceName: "notification"), multiplier:2, color: NCBrandColor.sharedInstance.brandElement)
  146. }
  147. //
  148. //cell.date.text = DateFormatter.localizedString(from: notification.date, dateStyle: .medium, timeStyle: .medium)
  149. //
  150. cell.date.text = CCUtility.dateDiff(notification.date)
  151. cell.subject.text = notification.subject
  152. cell.message.text = notification.message
  153. }
  154. return cell
  155. }
  156. override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  157. tableView.deselectRow(at: indexPath, animated: true)
  158. }
  159. // MARK: - Get Image from url
  160. func getDataFromUrl(url: URL, completion: @escaping (_ data: Data?, _ response: URLResponse?, _ error: Error?) -> Void) {
  161. URLSession.shared.dataTask(with: url) {
  162. (data, response, error) in
  163. completion(data, response, error)
  164. }.resume()
  165. }
  166. func downloadImage(url: URL) {
  167. print("Download Started")
  168. getDataFromUrl(url: url) { (data, response, error) in
  169. guard let data = data, error == nil else { return }
  170. let fileName = response?.suggestedFilename ?? url.lastPathComponent
  171. print("Download Finished")
  172. DispatchQueue.main.async() { () -> Void in
  173. do {
  174. let pathFileName = CCUtility.getDirectoryUserData() + "/" + fileName
  175. try data.write(to: URL(fileURLWithPath: pathFileName), options: .atomic)
  176. self.reloadDatasource()
  177. } catch {
  178. print(error)
  179. }
  180. }
  181. }
  182. }
  183. }
  184. // MARK: - Class UITableViewCell
  185. class CCNotificationCell: UITableViewCell {
  186. @IBOutlet weak var icon : UIImageView!
  187. @IBOutlet weak var date: UILabel!
  188. @IBOutlet weak var subject: UILabel!
  189. @IBOutlet weak var message: UILabel!
  190. }