CCNotification.swift 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. //
  2. // CCNotification.swift
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 27/01/17.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  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, OCNetworkingDelegate {
  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.navigationItem.setRightBarButton(UIBarButtonItem(barButtonSystemItem: .done, target: self, action: #selector(viewClose)), animated: true)
  31. self.tableView.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  32. self.tableView.tableFooterView = UIView()
  33. // Register to receive notification reload data
  34. NotificationCenter.default.addObserver(self, selector: #selector(self.tableView.reloadData), name: Notification.Name("notificationReloadData"), object: nil)
  35. self.tableView.reloadData()
  36. }
  37. override func didReceiveMemoryWarning() {
  38. super.didReceiveMemoryWarning()
  39. }
  40. func viewClose() {
  41. // Stop listening notification reload data
  42. NotificationCenter.default.removeObserver(self, name: Notification.Name("notificationReloadData"), object: nil);
  43. self.dismiss(animated: true, completion: nil)
  44. }
  45. // MARK: - Table
  46. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
  47. return true
  48. }
  49. override func tableView(_ tableView: UITableView, editActionsForRowAt: IndexPath) -> [UITableViewRowAction]? {
  50. let notification = appDelegate.listOfNotifications.object(at: editActionsForRowAt.row) as! OCNotifications
  51. // No Action request
  52. if notification.actions.count == 0 {
  53. let remove = UITableViewRowAction(style: .normal, title: NSLocalizedString("_remove_", comment: "")) { action, index in
  54. tableView.setEditing(false, animated: true)
  55. let metadataNet = CCMetadataNet.init(account: self.appDelegate.activeAccount)!
  56. metadataNet.action = actionSetNotificationServer
  57. metadataNet.identifier = "\(notification.idNotification)"
  58. metadataNet.options = "DELETE"
  59. metadataNet.serverUrl = "\(self.appDelegate.activeUrl!)/\(k_url_acces_remote_notification_api)/\(metadataNet.identifier!)"
  60. self.appDelegate.addNetworkingOperationQueue(self.appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  61. }
  62. remove.backgroundColor = .green
  63. return [remove]
  64. } else {
  65. // Action request
  66. var buttons = [UITableViewRowAction]()
  67. for action in notification.actions {
  68. let button = UITableViewRowAction(style: .normal, title: (action as! OCNotificationsAction).label) { action, index in
  69. for actionNotification in notification.actions {
  70. if (actionNotification as! OCNotificationsAction).label == action.title {
  71. tableView.setEditing(false, animated: true)
  72. let metadataNet = CCMetadataNet.init(account: self.appDelegate.activeAccount)!
  73. metadataNet.action = actionSetNotificationServer
  74. metadataNet.identifier = "\(notification.idNotification)"
  75. metadataNet.serverUrl = (actionNotification as! OCNotificationsAction).link
  76. metadataNet.options = (actionNotification as! OCNotificationsAction).type
  77. self.appDelegate.addNetworkingOperationQueue(self.appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  78. }
  79. }
  80. }
  81. if (action as! OCNotificationsAction).type == "DELETE" {
  82. button.backgroundColor = .red
  83. } else {
  84. button.backgroundColor = .green
  85. }
  86. buttons.append(button)
  87. }
  88. return buttons
  89. }
  90. }
  91. override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  92. let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
  93. if notification.message.characters.count > 0 {
  94. return 120
  95. } else {
  96. return 80
  97. }
  98. }
  99. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  100. if self.resultSearchController.isActive {
  101. return 0
  102. } else {
  103. let numRecord = appDelegate.listOfNotifications.count
  104. return numRecord
  105. }
  106. }
  107. override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  108. let cell = self.tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCNotificationCell
  109. let selectionColor : UIView = UIView.init()
  110. selectionColor.backgroundColor = CCConstant.GlobalConstants.kColor_SelectBackgrond
  111. cell.selectedBackgroundView = selectionColor
  112. if self.resultSearchController.isActive {
  113. } else {
  114. let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
  115. let urlIcon = URL(string: notification.icon)!
  116. let pathFileName = (appDelegate.directoryUser) + "/" + urlIcon.lastPathComponent
  117. let image = UIImage(contentsOfFile: pathFileName)
  118. if image == nil {
  119. cell.icon.image = UIImage(named: "notification")
  120. //downloadImage(url: urlIcon)
  121. } else {
  122. cell.icon.image = image
  123. }
  124. //
  125. //cell.date.text = DateFormatter.localizedString(from: notification.date, dateStyle: .medium, timeStyle: .medium)
  126. //
  127. cell.date.text = CCUtility.dateDiff(notification.date)
  128. cell.subject.text = notification.subject
  129. cell.message.text = notification.message
  130. }
  131. return cell
  132. }
  133. override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  134. tableView.deselectRow(at: indexPath, animated: true)
  135. }
  136. // MARK: - Networking delegate
  137. func setNotificationServerFailure(_ metadataNet: CCMetadataNet!, message: String!, errorCode: Int) {
  138. appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error)
  139. }
  140. func setNotificationServerSuccess(_ metadataNet: CCMetadataNet!) {
  141. let listOfNotifications = appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  142. if let index = listOfNotifications.index(where: {$0.idNotification == Int(metadataNet.identifier)}) {
  143. appDelegate.listOfNotifications.removeObject(at: index)
  144. }
  145. self.tableView.reloadData()
  146. if appDelegate.listOfNotifications.count == 0 {
  147. viewClose()
  148. }
  149. }
  150. // MARK: - Get Image from url
  151. func getDataFromUrl(url: URL, completion: @escaping (_ data: Data?, _ response: URLResponse?, _ error: Error?) -> Void) {
  152. URLSession.shared.dataTask(with: url) {
  153. (data, response, error) in
  154. completion(data, response, error)
  155. }.resume()
  156. }
  157. func downloadImage(url: URL) {
  158. print("Download Started")
  159. getDataFromUrl(url: url) { (data, response, error) in
  160. guard let data = data, error == nil else { return }
  161. let fileName = response?.suggestedFilename ?? url.lastPathComponent
  162. print("Download Finished")
  163. DispatchQueue.main.async() { () -> Void in
  164. do {
  165. let pathFileName = (self.appDelegate.directoryUser) + "/" + fileName
  166. try data.write(to: URL(fileURLWithPath: pathFileName), options: .atomic)
  167. self.tableView.reloadData()
  168. } catch {
  169. print(error)
  170. }
  171. }
  172. }
  173. }
  174. }
  175. // MARK: - Class UITableViewCell
  176. class CCNotificationCell: UITableViewCell {
  177. @IBOutlet weak var icon : UIImageView!
  178. @IBOutlet weak var date: UILabel!
  179. @IBOutlet weak var subject: UILabel!
  180. @IBOutlet weak var message: UILabel!
  181. }