NCService.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. //
  2. // NCService.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 14/03/18.
  6. // Copyright © 2018 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 Foundation
  24. class NCService: NSObject, OCNetworkingDelegate {
  25. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  26. @objc static let sharedInstance: NCService = {
  27. let instance = NCService()
  28. return instance
  29. }()
  30. //MARK: -
  31. //MARK: Start Services API NC
  32. @objc func startRequestServicesServer() {
  33. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  34. return
  35. }
  36. self.requestUserProfile()
  37. self.requestServerCapabilities()
  38. self.requestActivityServer()
  39. }
  40. //MARK: -
  41. //MARK: Request Service API NC
  42. @objc func requestServerCapabilities() {
  43. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  44. return
  45. }
  46. guard let metadataNet = CCMetadataNet.init(account: appDelegate.activeAccount) else {
  47. return
  48. }
  49. metadataNet.action = actionGetCapabilities
  50. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  51. }
  52. @objc func requestUserProfile() {
  53. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  54. return
  55. }
  56. guard let metadataNet = CCMetadataNet.init(account: appDelegate.activeAccount) else {
  57. return
  58. }
  59. metadataNet.action = actionGetUserProfile
  60. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  61. }
  62. @objc func requestActivityServer() {
  63. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  64. return
  65. }
  66. guard let metadataNet = CCMetadataNet.init(account: appDelegate.activeAccount) else {
  67. return
  68. }
  69. metadataNet.action = actionGetActivityServer
  70. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  71. }
  72. @objc func middlewarePing() {
  73. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  74. return
  75. }
  76. guard let metadataNet = CCMetadataNet.init(account: appDelegate.activeAccount) else {
  77. return
  78. }
  79. metadataNet.action = actionMiddlewarePing
  80. metadataNet.serverUrl = NCBrandOptions.sharedInstance.middlewarePingUrl
  81. //appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  82. }
  83. //MARK: -
  84. //MARK: Delegate Service API NC
  85. func getCapabilitiesOfServerSuccessFailure(_ metadataNet: CCMetadataNet!, capabilities: OCCapabilities?, message: String?, errorCode: Int) {
  86. // Check Active Account
  87. if (metadataNet.account != appDelegate.activeAccount) {
  88. return
  89. }
  90. if (errorCode == 0) {
  91. // Update capabilities db
  92. NCManageDatabase.sharedInstance.addCapabilities(capabilities!)
  93. // ------ THEMING -----------------------------------------------------------------------
  94. if (NCBrandOptions.sharedInstance.use_themingBackground) {
  95. // Download Theming Background & Change Theming color
  96. DispatchQueue.global().async {
  97. let address = capabilities!.themingBackground!.addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed)!
  98. let fileName = "\(self.appDelegate.directoryUser!)/themingBackground.png"
  99. guard let imageData = try? Data(contentsOf: URL(string: address)!) else {
  100. DispatchQueue.main.async {
  101. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  102. }
  103. return
  104. }
  105. guard let image = UIImage(data: imageData) else {
  106. try? FileManager.default.removeItem(atPath: fileName)
  107. DispatchQueue.main.async {
  108. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  109. }
  110. return
  111. }
  112. if let data = UIImagePNGRepresentation(image) {
  113. try? data.write(to: URL(fileURLWithPath: fileName))
  114. }
  115. DispatchQueue.main.async {
  116. self.appDelegate.settingThemingColorBrand()
  117. }
  118. }
  119. } else {
  120. self.appDelegate.settingThemingColorBrand()
  121. }
  122. // ------ SEARCH ------------------------------------------------------------------------
  123. if (NCManageDatabase.sharedInstance.getServerVersion() != capabilities!.versionMajor && appDelegate.activeMain != nil) {
  124. appDelegate.activeMain.cancelSearchBar()
  125. }
  126. // ------ GET OTHER SERVICE -------------------------------------------------------------
  127. // Read Notification
  128. if (capabilities!.isNotificationServerEnabled) {
  129. metadataNet.action = actionGetNotificationServer
  130. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  131. } else {
  132. // Remove all Notification
  133. self.appDelegate.listOfNotifications.removeAllObjects()
  134. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "notificationReloadData"), object: nil)
  135. // Update Main NavigationBar
  136. if (appDelegate.activeMain != nil && self.appDelegate.activeMain.isSelectedMode == false) {
  137. self.appDelegate.activeMain.setUINavigationBarDefault()
  138. }
  139. }
  140. // Read External Sites
  141. if (capabilities!.isExternalSitesServerEnabled) {
  142. metadataNet.action = actionGetExternalSitesServer
  143. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: self, metadataNet: metadataNet)
  144. } else {
  145. NCManageDatabase.sharedInstance.deleteExternalSites()
  146. }
  147. // Read Share
  148. if (capabilities!.isFilesSharingAPIEnabled && appDelegate.activeMain != nil) {
  149. appDelegate.sharesID.removeAllObjects()
  150. metadataNet.action = actionReadShareServer
  151. appDelegate.addNetworkingOperationQueue(appDelegate.netQueue, delegate: appDelegate.activeMain, metadataNet: metadataNet)
  152. }
  153. } else {
  154. // Change Theming color
  155. appDelegate.settingThemingColorBrand()
  156. let error = "Get Capabilities failure error \(errorCode) \(message!)"
  157. print("[LOG] \(error)")
  158. NCManageDatabase.sharedInstance.addActivityClient("", fileID: "", action: k_activityDebugActionCapabilities, selector: "Get Capabilities of Server", note: error, type: k_activityTypeFailure, verbose: true, activeUrl: appDelegate.activeUrl)
  159. }
  160. }
  161. @objc func getUserProfileSuccessFailure(_ metadataNet: CCMetadataNet!, userProfile: OCUserProfile?, message: String?, errorCode: Int) {
  162. // Check Active Account
  163. if (metadataNet.account != appDelegate.activeAccount) {
  164. return
  165. }
  166. if (errorCode == 0) {
  167. // Update User (+ userProfile.id) & active account & account network
  168. guard let tableAccount = NCManageDatabase.sharedInstance.setAccountUserProfile(userProfile!) else {
  169. appDelegate.messageNotification("Accopunt", description: "Internal error : account not found on DB", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: Int(k_CCErrorInternalError))
  170. return
  171. }
  172. CCNetworking.shared().settingAccount()
  173. appDelegate.settingActiveAccount(tableAccount.account, activeUrl: tableAccount.url, activeUser: tableAccount.user, activeUserID: tableAccount.userID, activePassword: tableAccount.password)
  174. // Call func thath required the userdID
  175. appDelegate.activePhotos.readPhotoVideo()
  176. appDelegate.activeFavorites.readListingFavorites()
  177. DispatchQueue.global(qos: .default).async {
  178. let address = "\(self.appDelegate.activeUrl!)/index.php/avatar/\(self.appDelegate.activeUser!)/128".addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed)!
  179. let fileName = "\(self.appDelegate.directoryUser!)/avatar.png"
  180. guard let imageData = try? Data(contentsOf: URL(string: address)!) else {
  181. DispatchQueue.main.async {
  182. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "changeUserProfile"), object: nil)
  183. }
  184. return
  185. }
  186. guard let image = UIImage(data: imageData) else {
  187. try? FileManager.default.removeItem(atPath: fileName)
  188. DispatchQueue.main.async {
  189. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "changeUserProfile"), object: nil)
  190. }
  191. return
  192. }
  193. if let data = UIImagePNGRepresentation(image) {
  194. try? data.write(to: URL(fileURLWithPath: fileName))
  195. }
  196. DispatchQueue.main.async {
  197. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "changeUserProfile"), object: nil)
  198. }
  199. }
  200. } else {
  201. let error = "Get user profile failure error \(errorCode) \(message!)"
  202. print("[LOG] \(error)")
  203. NCManageDatabase.sharedInstance.addActivityClient("", fileID: "", action: k_activityDebugActionCapabilities, selector: "Get user profile Server", note: error, type: k_activityTypeFailure, verbose: true, activeUrl: appDelegate.activeUrl)
  204. }
  205. }
  206. @objc func getExternalSitesServerSuccessFailure(_ metadataNet: CCMetadataNet!, listOfExternalSites: [Any]?, message: String?, errorCode: Int) {
  207. // Check Active Account
  208. if (metadataNet.account != appDelegate.activeAccount) {
  209. return
  210. }
  211. if (errorCode == 0) {
  212. NCManageDatabase.sharedInstance.deleteExternalSites()
  213. for externalSites in listOfExternalSites! {
  214. NCManageDatabase.sharedInstance.addExternalSites(externalSites as! OCExternalSites)
  215. }
  216. } else {
  217. let error = "Get external site failure error \(errorCode) \(message!)"
  218. print("[LOG] \(error)")
  219. NCManageDatabase.sharedInstance.addActivityClient("", fileID: "", action: k_activityDebugActionCapabilities, selector: "Get external site Server", note: error, type: k_activityTypeFailure, verbose: true, activeUrl: appDelegate.activeUrl)
  220. }
  221. }
  222. @objc func getActivityServerSuccessFailure(_ metadataNet: CCMetadataNet!, listOfActivity: [Any]?, message: String?, errorCode: Int) {
  223. // Check Active Account
  224. if (metadataNet.account != appDelegate.activeAccount) {
  225. return
  226. }
  227. if (errorCode == 0) {
  228. NCManageDatabase.sharedInstance.addActivityServer(listOfActivity as! [OCActivity])
  229. if (appDelegate.activeActivity != nil) {
  230. appDelegate.activeActivity.reloadDatasource()
  231. }
  232. } else {
  233. let error = "Get Activity Server failure error \(errorCode) \(message!)"
  234. print("[LOG] \(error)")
  235. NCManageDatabase.sharedInstance.addActivityClient("", fileID: "", action: k_activityDebugActionCapabilities, selector: "Get Activity Server", note: error, type: k_activityTypeFailure, verbose: true, activeUrl: appDelegate.activeUrl)
  236. }
  237. }
  238. @objc func getNotificationServerSuccessFailure(_ metadataNet: CCMetadataNet!, listOfNotifications: [Any]?, message: String?, errorCode: Int) {
  239. // Check Active Account
  240. if (metadataNet.account != appDelegate.activeAccount) {
  241. return
  242. }
  243. if (errorCode == 0) {
  244. DispatchQueue.global(qos: .default).async {
  245. let sortedListOfNotifications = (listOfNotifications! as NSArray).sortedArray(using: [
  246. NSSortDescriptor(key: "date", ascending: false)
  247. ])
  248. var old = ""
  249. var new = ""
  250. for notification in listOfNotifications! {
  251. let id = (notification as AnyObject).idNotification!
  252. new = new + String(describing: id)
  253. }
  254. for notification in self.appDelegate.listOfNotifications! {
  255. let id = (notification as AnyObject).idNotification!
  256. old = old + String(describing: id)
  257. }
  258. DispatchQueue.main.async {
  259. if (new != old) {
  260. self.appDelegate.listOfNotifications = NSMutableArray.init(array: sortedListOfNotifications)
  261. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "notificationReloadData"), object: nil)
  262. // Update Main NavigationBar
  263. if (self.appDelegate.activeMain.isSelectedMode == false && self.appDelegate.activeMain != nil) {
  264. self.appDelegate.activeMain.setUINavigationBarDefault()
  265. }
  266. }
  267. }
  268. }
  269. } else {
  270. let error = "Get Notification Server failure error \(errorCode) \(message!)"
  271. print("[LOG] \(error)")
  272. NCManageDatabase.sharedInstance.addActivityClient("", fileID: "", action: k_activityDebugActionCapabilities, selector: "Get Notification Server", note: error, type: k_activityTypeFailure, verbose: true, activeUrl: appDelegate.activeUrl)
  273. // Update Main NavigationBar
  274. if (appDelegate.activeMain.isSelectedMode == false && self.appDelegate.activeMain != nil) {
  275. appDelegate.activeMain.setUINavigationBarDefault()
  276. }
  277. }
  278. }
  279. }