CCNotification.swift 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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, CCNotificationCelllDelegate {
  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. /*
  56. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
  57. return true
  58. }
  59. override func tableView(_ tableView: UITableView, editActionsForRowAt: IndexPath) -> [UITableViewRowAction]? {
  60. let notification = appDelegate.listOfNotifications.object(at: editActionsForRowAt.row) as! OCNotifications
  61. // No Action request
  62. if notification.actions.count == 0 {
  63. let remove = UITableViewRowAction(style: .normal, title: NSLocalizedString("_remove_", comment: "")) { action, index in
  64. tableView.setEditing(false, animated: true)
  65. 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
  66. if errorCode == 0 && account == self.appDelegate.activeAccount {
  67. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  68. if let index = listOfNotifications.firstIndex(where: {$0.idNotification == notification.idNotification}) {
  69. self.appDelegate.listOfNotifications.removeObject(at: index)
  70. }
  71. self.reloadDatasource()
  72. if self.appDelegate.listOfNotifications.count == 0 {
  73. self.viewClose()
  74. }
  75. } else if errorCode != 0 {
  76. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  77. } else {
  78. print("[LOG] It has been changed user during networking process, error.")
  79. }
  80. })
  81. }
  82. remove.backgroundColor = .red
  83. return [remove]
  84. } else {
  85. // Action request
  86. var buttons = [UITableViewRowAction]()
  87. for action in notification.actions {
  88. let button = UITableViewRowAction(style: .normal, title: (action as! OCNotificationsAction).label) { action, index in
  89. for actionNotification in notification.actions {
  90. if (actionNotification as! OCNotificationsAction).label == action.title {
  91. tableView.setEditing(false, animated: true)
  92. OCNetworking.sharedManager().setNotificationWithAccount(self.appDelegate.activeAccount, serverUrl: (actionNotification as! OCNotificationsAction).link, type: (actionNotification as! OCNotificationsAction).type, completion: { (account, message, errorCode) in
  93. if errorCode == 0 && account == self.appDelegate.activeAccount {
  94. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  95. if let index = listOfNotifications.firstIndex(where: {$0.idNotification == notification.idNotification}) {
  96. self.appDelegate.listOfNotifications.removeObject(at: index)
  97. }
  98. self.reloadDatasource()
  99. if self.appDelegate.listOfNotifications.count == 0 {
  100. self.viewClose()
  101. }
  102. } else if errorCode != 0 {
  103. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  104. } else {
  105. print("[LOG] It has been changed user during networking process, error.")
  106. }
  107. })
  108. }
  109. }
  110. }
  111. if (action as! OCNotificationsAction).type == "DELETE" {
  112. button.backgroundColor = .red
  113. } else {
  114. button.backgroundColor = .green
  115. }
  116. buttons.append(button)
  117. }
  118. return buttons
  119. }
  120. }
  121. */
  122. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  123. if self.resultSearchController.isActive {
  124. return 0
  125. } else {
  126. let numRecord = appDelegate.listOfNotifications.count
  127. return numRecord
  128. }
  129. }
  130. override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  131. let cell = self.tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCNotificationCell
  132. let selectionColor : UIView = UIView.init()
  133. selectionColor.backgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond()
  134. cell.selectedBackgroundView = selectionColor
  135. cell.delegate = self
  136. if self.resultSearchController.isActive {
  137. } else {
  138. let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
  139. let urlIcon = URL(string: notification.icon)
  140. var image : UIImage?
  141. if let urlIcon = urlIcon {
  142. let pathFileName = CCUtility.getDirectoryUserData() + "/" + urlIcon.deletingPathExtension().lastPathComponent + ".png"
  143. image = UIImage(contentsOfFile: pathFileName)
  144. }
  145. if let image = image {
  146. cell.icon.image = CCGraphics.changeThemingColorImage(image, multiplier: 2, color: NCBrandColor.sharedInstance.brandElement)
  147. } else {
  148. cell.icon.image = CCGraphics.changeThemingColorImage(#imageLiteral(resourceName: "notification"), multiplier:2, color: NCBrandColor.sharedInstance.brandElement)
  149. }
  150. //
  151. //cell.date.text = DateFormatter.localizedString(from: notification.date, dateStyle: .medium, timeStyle: .medium)
  152. //
  153. cell.notification = notification
  154. cell.date.text = CCUtility.dateDiff(notification.date)
  155. cell.date.textColor = .gray
  156. cell.subject.text = notification.subject
  157. cell.subject.textColor = .black
  158. cell.message.text = notification.message.replacingOccurrences(of: "<br />", with: "\n")
  159. cell.message.textColor = .gray
  160. cell.remove.setImage(CCGraphics.changeThemingColorImage(UIImage(named: "exit")!, width: 40, height: 40, color: UIColor.gray), for: .normal)
  161. cell.primary.titleLabel?.font = .systemFont(ofSize: 14)
  162. cell.primary.setTitleColor(.white, for: .normal)
  163. cell.primary.layer.cornerRadius = 15
  164. cell.primary.layer.masksToBounds = true
  165. cell.primary.layer.backgroundColor = NCBrandColor.sharedInstance.brand.cgColor
  166. cell.secondary.titleLabel?.font = .systemFont(ofSize: 14)
  167. cell.secondary.setTitleColor(.gray, for: .normal)
  168. cell.secondary.layer.cornerRadius = 15
  169. cell.secondary.layer.masksToBounds = true
  170. cell.secondary.layer.backgroundColor = NCBrandColor.sharedInstance.graySoft.withAlphaComponent(0.1).cgColor
  171. cell.secondary.layer.borderWidth = 0.3
  172. cell.secondary.layer.borderColor = UIColor.gray.cgColor
  173. // Action
  174. if notification.actions.count == 0 {
  175. cell.primary.isEnabled = false
  176. cell.primary.isHidden = true
  177. cell.secondary.isEnabled = false
  178. cell.secondary.isHidden = true
  179. cell.messageBottomMargin.constant = 10
  180. } else {
  181. for action in notification.actions {
  182. let label = (action as! OCNotificationsAction).label
  183. let primary = (action as! OCNotificationsAction).primary
  184. if primary {
  185. cell.primary.setTitle(label, for: .normal)
  186. } else {
  187. cell.secondary.setTitle(label, for: .normal)
  188. }
  189. }
  190. cell.messageBottomMargin.constant = 40
  191. }
  192. }
  193. return cell
  194. }
  195. override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  196. tableView.deselectRow(at: indexPath, animated: true)
  197. }
  198. // MARK: - Get Image from url
  199. func getDataFromUrl(url: URL, completion: @escaping (_ data: Data?, _ response: URLResponse?, _ error: Error?) -> Void) {
  200. URLSession.shared.dataTask(with: url) {
  201. (data, response, error) in
  202. completion(data, response, error)
  203. }.resume()
  204. }
  205. func downloadImage(url: URL) {
  206. print("Download Started")
  207. getDataFromUrl(url: url) { (data, response, error) in
  208. guard let data = data, error == nil else { return }
  209. let fileName = response?.suggestedFilename ?? url.lastPathComponent
  210. print("Download Finished")
  211. DispatchQueue.main.async() { () -> Void in
  212. do {
  213. let pathFileName = CCUtility.getDirectoryUserData() + "/" + fileName
  214. try data.write(to: URL(fileURLWithPath: pathFileName), options: .atomic)
  215. self.reloadDatasource()
  216. } catch {
  217. print(error)
  218. }
  219. }
  220. }
  221. }
  222. // MARK: tap Action
  223. func tapRemove(with notification: OCNotifications?) {
  224. 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
  225. if errorCode == 0 && account == self.appDelegate.activeAccount {
  226. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  227. if let index = listOfNotifications.firstIndex(where: {$0.idNotification == notification!.idNotification}) {
  228. self.appDelegate.listOfNotifications.removeObject(at: index)
  229. }
  230. self.reloadDatasource()
  231. if self.appDelegate.listOfNotifications.count == 0 {
  232. self.viewClose()
  233. }
  234. } else if errorCode != 0 {
  235. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  236. } else {
  237. print("[LOG] It has been changed user during networking process, error.")
  238. }
  239. })
  240. }
  241. func tapAction(with notification: OCNotifications?, label: String) {
  242. for action in notification!.actions {
  243. if (action as! OCNotificationsAction).label == label {
  244. OCNetworking.sharedManager().setNotificationWithAccount(self.appDelegate.activeAccount, serverUrl: (action as! OCNotificationsAction).link, type: (action as! OCNotificationsAction).type, completion: { (account, message, errorCode) in
  245. if errorCode == 0 && account == self.appDelegate.activeAccount {
  246. let listOfNotifications = self.appDelegate.listOfNotifications as NSArray as! [OCNotifications]
  247. if let index = listOfNotifications.firstIndex(where: {$0.idNotification == notification!.idNotification}) {
  248. self.appDelegate.listOfNotifications.removeObject(at: index)
  249. }
  250. self.reloadDatasource()
  251. if self.appDelegate.listOfNotifications.count == 0 {
  252. self.viewClose()
  253. }
  254. } else if errorCode != 0 {
  255. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  256. } else {
  257. print("[LOG] It has been changed user during networking process, error.")
  258. }
  259. })
  260. }
  261. }
  262. }
  263. }
  264. // MARK: - Class UITableViewCell
  265. class CCNotificationCell: UITableViewCell {
  266. var delegate: CCNotificationCelllDelegate?
  267. var notification: OCNotifications?
  268. @IBOutlet weak var icon : UIImageView!
  269. @IBOutlet weak var date: UILabel!
  270. @IBOutlet weak var subject: UILabel!
  271. @IBOutlet weak var message: UILabel!
  272. @IBOutlet weak var remove: UIButton!
  273. @IBOutlet weak var primary: UIButton!
  274. @IBOutlet weak var secondary: UIButton!
  275. @IBOutlet weak var messageBottomMargin: NSLayoutConstraint!
  276. override func awakeFromNib() {
  277. super.awakeFromNib()
  278. }
  279. @IBAction func touchUpInsideRemove(_ sender: Any) {
  280. delegate?.tapRemove(with: notification)
  281. }
  282. @IBAction func touchUpInsidePrimary(_ sender: Any) {
  283. let button = sender as! UIButton
  284. delegate?.tapAction(with: notification, label: button.titleLabel!.text!)
  285. }
  286. @IBAction func touchUpInsideSecondary(_ sender: Any) {
  287. let button = sender as! UIButton
  288. delegate?.tapAction(with: notification, label: button.titleLabel!.text!)
  289. }
  290. }
  291. protocol CCNotificationCelllDelegate {
  292. func tapRemove(with notification: OCNotifications?)
  293. func tapAction(with notification: OCNotifications?, label: String)
  294. }