NCService.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. //
  2. // NCService.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 14/03/18.
  6. // Copyright © 2018 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 SVGKit
  25. import NCCommunication
  26. class NCService: NSObject {
  27. @objc static let shared: NCService = {
  28. let instance = NCService()
  29. return instance
  30. }()
  31. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  32. //MARK: -
  33. @objc public func startRequestServicesServer() {
  34. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  35. return
  36. }
  37. self.requestUserProfile()
  38. self.requestServerStatus()
  39. }
  40. //MARK: -
  41. private func requestUserProfile() {
  42. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  43. return
  44. }
  45. NCCommunication.shared.getUserProfile() { (account, userProfile, errorCode, errorDescription) in
  46. if errorCode == 0 && account == self.appDelegate.activeAccount {
  47. // Update User (+ userProfile.id) & active account & account network
  48. guard let tableAccount = NCManageDatabase.sharedInstance.setAccountUserProfile(userProfile!) else {
  49. NCContentPresenter.shared.messageNotification("Account", description: "Internal error : account not found on DB", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  50. return
  51. }
  52. let user = tableAccount.user
  53. let url = tableAccount.url
  54. self.appDelegate.settingActiveAccount(tableAccount.account, activeUrl: tableAccount.url, activeUser: tableAccount.user, activeUserID: tableAccount.userID, activePassword: CCUtility.getPassword(tableAccount.account))
  55. // Synchronize Offline ---
  56. let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", tableAccount.account), sorted: "serverUrl", ascending: true)
  57. if (directories != nil) {
  58. for directory: tableDirectory in directories! {
  59. CCSynchronize.shared()?.readFolder(directory.serverUrl, selector: selectorReadFolderWithDownload, account: tableAccount.account)
  60. }
  61. }
  62. let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", tableAccount.account), sorted: "fileName", ascending: true)
  63. if (files != nil) {
  64. for file: tableLocalFile in files! {
  65. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "ocId == %@", file.ocId)) else {
  66. continue
  67. }
  68. CCSynchronize.shared()?.readFile(metadata.ocId, fileName: metadata.fileName, serverUrl: metadata.serverUrl, selector: selectorReadFileWithDownload, account: tableAccount.account)
  69. }
  70. }
  71. let avatarUrl = "\(self.appDelegate.activeUrl!)/index.php/avatar/\(self.appDelegate.activeUser!)/\(k_avatar_size)".addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed)!
  72. let fileNamePath = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(user, activeUrl: url) + "-" + self.appDelegate.activeUser + ".png"
  73. NCCommunication.shared.downloadContent(serverUrl: avatarUrl) { (account, data, errorCode, errorMessage) in
  74. if errorCode == 0 {
  75. DispatchQueue.global().async {
  76. if let image = UIImage(data: data!) {
  77. try? FileManager.default.removeItem(atPath: fileNamePath)
  78. if let data = image.pngData() {
  79. try? data.write(to: URL(fileURLWithPath: fileNamePath))
  80. }
  81. }
  82. }
  83. }
  84. }
  85. NotificationCenter.default.postOnMainThread(name: k_notificationCenter_changeUserProfile)
  86. self.requestServerCapabilities()
  87. } else {
  88. if errorCode == 401 || errorCode == 403 {
  89. NCNetworkingCheckRemoteUser.shared.checkRemoteUser(account: account)
  90. }
  91. }
  92. }
  93. }
  94. private func requestServerStatus() {
  95. NCCommunication.shared.getServerStatus(serverUrl: appDelegate.activeUrl) { (serverProductName, serverVersion, versionMajor, versionMinor, versionMicro, extendedSupport, errorCode, errorMessage) in
  96. if errorCode == 0 {
  97. if extendedSupport == false {
  98. if serverProductName == "owncloud" {
  99. NCContentPresenter.shared.messageNotification("_warning_", description: "_warning_owncloud_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_dismissAfterSecondLong))
  100. } else if versionMajor <= k_nextcloud_unsupported {
  101. NCContentPresenter.shared.messageNotification("_warning_", description: "_warning_unsupported_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_dismissAfterSecondLong))
  102. }
  103. }
  104. }
  105. }
  106. }
  107. private func requestServerCapabilities() {
  108. if (appDelegate.activeAccount == nil || appDelegate.activeAccount.count == 0 || appDelegate.maintenanceMode == true) {
  109. return
  110. }
  111. NCCommunication.shared.getCapabilities() { (account, data, errorCode, errorDescription) in
  112. if errorCode == 0 && data != nil {
  113. NCManageDatabase.sharedInstance.addCapabilitiesJSon(data!, account: account)
  114. // Setup communication
  115. self.appDelegate.settingSetupCommunicationCapabilities(account)
  116. // Theming
  117. self.appDelegate.settingThemingColorBrand()
  118. // File Sharing
  119. let isFilesSharingEnabled = NCManageDatabase.sharedInstance.getCapabilitiesServerBool(account: account, elements: NCElementsJSON.shared.capabilitiesFileSharingApiEnabled, exists: false)
  120. if (isFilesSharingEnabled && self.appDelegate.activeMain != nil) {
  121. NCCommunication.shared.readShares { (account, shares, errorCode, ErrorDescription) in
  122. if errorCode == 0 {
  123. NCManageDatabase.sharedInstance.deleteTableShare(account: account)
  124. if shares != nil {
  125. NCManageDatabase.sharedInstance.addShare(account: account, activeUrl: self.appDelegate.activeUrl, shares: shares!)
  126. }
  127. self.appDelegate.shares = NCManageDatabase.sharedInstance.getTableShares(account: account)
  128. } else {
  129. NCContentPresenter.shared.messageNotification("_share_", description: ErrorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  130. }
  131. }
  132. }
  133. // NCTextObtainEditorDetails
  134. let serverVersionMajor = NCManageDatabase.sharedInstance.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  135. if serverVersionMajor >= k_nextcloud_version_18_0 {
  136. NCCommunication.shared.NCTextObtainEditorDetails() { (account, editors, creators, errorCode, errorMessage) in
  137. if errorCode == 0 && account == self.appDelegate.activeAccount {
  138. NCManageDatabase.sharedInstance.addDirectEditing(account: account, editors: editors, creators: creators)
  139. }
  140. }
  141. }
  142. let isExternalSitesServerEnabled = NCManageDatabase.sharedInstance.getCapabilitiesServerBool(account: account, elements: NCElementsJSON.shared.capabilitiesExternalSitesExists, exists: true)
  143. if (isExternalSitesServerEnabled) {
  144. NCCommunication.shared.getExternalSite() { (account, externalSites, errorCode, errorDescription) in
  145. if errorCode == 0 && account == self.appDelegate.activeAccount {
  146. NCManageDatabase.sharedInstance.deleteExternalSites(account: account)
  147. for externalSite in externalSites {
  148. NCManageDatabase.sharedInstance.addExternalSites(externalSite, account: account)
  149. }
  150. }
  151. }
  152. } else {
  153. NCManageDatabase.sharedInstance.deleteExternalSites(account: account)
  154. }
  155. // Handwerkcloud
  156. let isHandwerkcloudEnabled = NCManageDatabase.sharedInstance.getCapabilitiesServerBool(account: account, elements: NCElementsJSON.shared.capabilitiesHWCEnabled, exists: false)
  157. if (isHandwerkcloudEnabled) {
  158. self.requestHC()
  159. }
  160. } else if errorCode != 0 {
  161. self.appDelegate.settingThemingColorBrand()
  162. if errorCode == 401 || errorCode == 403 {
  163. NCNetworkingCheckRemoteUser.shared.checkRemoteUser(account: account)
  164. }
  165. } else {
  166. self.appDelegate.settingThemingColorBrand()
  167. }
  168. }
  169. }
  170. //MARK: - Thirt Part
  171. private func requestHC() {
  172. }
  173. }