AppDelegate.swift 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. //
  2. // AppDelegate.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14 (19/02/21 swift).
  6. // Copyright (c) 2014 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. import BackgroundTasks
  25. import NextcloudKit
  26. import TOPasscodeViewController
  27. import LocalAuthentication
  28. import Firebase
  29. import WidgetKit
  30. @UIApplicationMain
  31. class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, TOPasscodeViewControllerDelegate, NCAccountRequestDelegate, NCViewCertificateDetailsDelegate, NCUserBaseUrl {
  32. var backgroundSessionCompletionHandler: (() -> Void)?
  33. var window: UIWindow?
  34. @objc var account: String = ""
  35. @objc var urlBase: String = ""
  36. @objc var user: String = ""
  37. @objc var userId: String = ""
  38. @objc var password: String = ""
  39. var deletePasswordSession: Bool = false
  40. var activeLogin: NCLogin?
  41. var activeLoginWeb: NCLoginWeb?
  42. var activeServerUrl: String = ""
  43. @objc var activeViewController: UIViewController?
  44. var mainTabBar: NCMainTabBar?
  45. var activeMetadata: tableMetadata?
  46. let listFilesVC = ThreadSafeDictionary<String,NCFiles>()
  47. let listFavoriteVC = ThreadSafeDictionary<String,NCFavorite>()
  48. let listOfflineVC = ThreadSafeDictionary<String,NCOffline>()
  49. var disableSharesView: Bool = false
  50. var documentPickerViewController: NCDocumentPickerViewController?
  51. var timerErrorNetworking: Timer?
  52. private var privacyProtectionWindow: UIWindow?
  53. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  54. let userAgent = CCUtility.getUserAgent() as String
  55. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  56. // Register initialize
  57. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  58. UserDefaults.standard.register(defaults: ["UserAgent": userAgent])
  59. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  60. FirebaseApp.configure()
  61. }
  62. CCUtility.createDirectoryStandard()
  63. CCUtility.emptyTemporaryDirectory()
  64. NKCommon.shared.setup(delegate: NCNetworking.shared)
  65. NKCommon.shared.setup(userAgent: userAgent)
  66. startTimerErrorNetworking()
  67. // LOG
  68. var levelLog = 0
  69. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  70. NKCommon.shared.pathLog = pathDirectoryGroup
  71. }
  72. if NCBrandOptions.shared.disable_log {
  73. NCUtilityFileSystem.shared.deleteFile(filePath: NKCommon.shared.filenamePathLog)
  74. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NKCommon.shared.filenameLog)
  75. } else {
  76. levelLog = CCUtility.getLogLevel()
  77. NKCommon.shared.levelLog = levelLog
  78. NKCommon.shared.copyLogToDocumentDirectory = true
  79. NKCommon.shared.writeLog("[INFO] Start session with level \(levelLog) " + versionNextcloudiOS + " in state \(UIApplication.shared.applicationState.rawValue) where (0 active, 1 inactive, 2 background).")
  80. }
  81. // LOG Account
  82. if let account = NCManageDatabase.shared.getActiveAccount() {
  83. NKCommon.shared.writeLog("Account active \(account.account)")
  84. if CCUtility.getPassword(account.account).isEmpty {
  85. NKCommon.shared.writeLog("[ERROR] PASSWORD NOT FOUND for \(account.account)")
  86. }
  87. }
  88. // Activate user account
  89. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  90. // FIX 3.0.5 lost urlbase
  91. if activeAccount.urlBase.count == 0 {
  92. let user = activeAccount.user + " "
  93. let urlBase = activeAccount.account.replacingOccurrences(of: user, with: "")
  94. activeAccount.urlBase = urlBase
  95. NCManageDatabase.shared.updateAccount(activeAccount)
  96. }
  97. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  98. NCBrandColor.shared.settingThemingColor(account: activeAccount.account)
  99. } else {
  100. CCUtility.deleteAllChainStore()
  101. if let bundleID = Bundle.main.bundleIdentifier {
  102. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  103. }
  104. NCBrandColor.shared.createImagesThemingColor()
  105. }
  106. // Create user color
  107. NCBrandColor.shared.createUserColors()
  108. // Push Notification & display notification
  109. application.registerForRemoteNotifications()
  110. UNUserNotificationCenter.current().delegate = self
  111. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { _, _ in }
  112. // Store review
  113. if !NCUtility.shared.isSimulatorOrTestFlight() {
  114. let review = NCStoreReview()
  115. review.incrementAppRuns()
  116. review.showStoreReview()
  117. }
  118. // Background task: register
  119. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  120. self.handleRefreshTask(task)
  121. }
  122. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  123. self.handleProcessingTask(task)
  124. }
  125. // Intro
  126. if NCBrandOptions.shared.disable_intro {
  127. CCUtility.setIntro(true)
  128. if account == "" {
  129. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  130. }
  131. } else {
  132. if !CCUtility.getIntro() {
  133. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  134. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  135. window?.rootViewController = navigationController
  136. window?.makeKeyAndVisible()
  137. }
  138. }
  139. }
  140. // Passcode
  141. self.presentPasscode {
  142. self.enableTouchFaceID()
  143. }
  144. return true
  145. }
  146. // MARK: - Life Cycle
  147. // L' applicazione entrerà in attivo (sempre)
  148. func applicationDidBecomeActive(_ application: UIApplication) {
  149. NKCommon.shared.writeLog("[INFO] Application did become active")
  150. // START OBSERVE/TIMER UPLOAD PROCESS
  151. NCNetworkingProcessUpload.shared.observeTableMetadata()
  152. NCNetworkingProcessUpload.shared.startTimer()
  153. self.deletePasswordSession = false
  154. if !NCAskAuthorization.shared.isRequesting {
  155. hidePrivacyProtectionWindow()
  156. }
  157. NCSettingsBundleHelper.setVersionAndBuildNumber()
  158. if !account.isEmpty {
  159. NCNetworkingProcessUpload.shared.verifyUploadZombie()
  160. }
  161. // Start Auto Upload
  162. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  163. NKCommon.shared.writeLog("[INFO] Initialize Auto upload with \(items) uploads")
  164. }
  165. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  166. }
  167. // L' applicazione entrerà in primo piano (dopo il background)
  168. func applicationWillEnterForeground(_ application: UIApplication) {
  169. guard !account.isEmpty, let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  170. NKCommon.shared.writeLog("[INFO] Application will enter in foreground")
  171. // Account changed ??
  172. if activeAccount.account != account {
  173. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  174. }
  175. // Required unsubscribing / subscribing
  176. NCPushNotification.shared().pushNotification()
  177. // Request Service Server Nextcloud
  178. NCService.shared.startRequestServicesServer()
  179. // Unlock E2EE
  180. NCNetworkingE2EE.shared.unlockAll(account: account)
  181. // Request TouchID, FaceID
  182. enableTouchFaceID()
  183. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  184. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  185. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetwork)
  186. }
  187. // L' applicazione si dimetterà dallo stato di attivo
  188. func applicationWillResignActive(_ application: UIApplication) {
  189. guard !account.isEmpty else { return }
  190. NKCommon.shared.writeLog("[INFO] Application will resign active")
  191. // STOP OBSERVE/TIMER UPLOAD PROCESS
  192. NCNetworkingProcessUpload.shared.invalidateObserveTableMetadata()
  193. NCNetworkingProcessUpload.shared.stopTimer()
  194. // Create file account for Nextcloud data share
  195. if let error = createDataAccountFile() {
  196. NKCommon.shared.writeLog("[ERROR] Create account file for Talk \(error.localizedDescription)")
  197. }
  198. if CCUtility.getPrivacyScreenEnabled() {
  199. // Privacy
  200. showPrivacyProtectionWindow()
  201. }
  202. // Reload Widget
  203. WidgetCenter.shared.reloadAllTimelines()
  204. // Clear operation queue
  205. NCOperationQueue.shared.cancelAllQueue()
  206. // Clear download
  207. NCNetworking.shared.cancelAllDownloadTransfer()
  208. // Clear older files
  209. let days = CCUtility.getCleanUpDay()
  210. if let directory = CCUtility.getDirectoryProviderStorage() {
  211. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  212. }
  213. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillResignActive)
  214. }
  215. // L' applicazione è entrata nello sfondo
  216. func applicationDidEnterBackground(_ application: UIApplication) {
  217. guard !account.isEmpty else { return }
  218. NKCommon.shared.writeLog("[INFO] Application did enter in background")
  219. scheduleAppRefresh()
  220. scheduleAppProcessing()
  221. // Passcode
  222. presentPasscode { }
  223. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  224. }
  225. // L'applicazione terminerà
  226. func applicationWillTerminate(_ application: UIApplication) {
  227. NCNetworking.shared.cancelAllDownloadTransfer()
  228. let content = UNMutableNotificationContent()
  229. content.title = NCBrandOptions.shared.brand
  230. content.body = NSLocalizedString("_keep_running_", comment: "")
  231. let req = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
  232. let notificationCenter = UNUserNotificationCenter.current()
  233. notificationCenter.add(req)
  234. NKCommon.shared.writeLog("bye bye")
  235. }
  236. // MARK: -
  237. @objc private func initialize() {
  238. guard !account.isEmpty else { return }
  239. NKCommon.shared.writeLog("[INFO] initialize Main")
  240. // Registeration push notification
  241. NCPushNotification.shared().pushNotification()
  242. // Unlock E2EE
  243. NCNetworkingE2EE.shared.unlockAll(account: account)
  244. // Start services
  245. NCService.shared.startRequestServicesServer()
  246. // close detail
  247. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  248. // Reload Widget
  249. WidgetCenter.shared.reloadAllTimelines()
  250. // Registeration domain File Provider
  251. // FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  252. // [fileProviderDomain removeAllDomains];
  253. // [fileProviderDomain registerDomains];
  254. }
  255. // MARK: - Background Task
  256. /*
  257. @discussion Schedule a refresh task request to ask that the system launch your app briefly so that you can download data and keep your app's contents up-to-date. The system will fulfill this request intelligently based on system conditions and app usage.
  258. < MAX 30 seconds >
  259. */
  260. func scheduleAppRefresh() {
  261. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  262. request.earliestBeginDate = Date(timeIntervalSinceNow: 60) // Refresh after 60 seconds.
  263. do {
  264. try BGTaskScheduler.shared.submit(request)
  265. NKCommon.shared.writeLog("[SUCCESS] Refresh task success submit request 60 seconds \(request)")
  266. } catch {
  267. NKCommon.shared.writeLog("[ERROR] Refresh task failed to submit request: \(error)")
  268. }
  269. }
  270. /*
  271. @discussion Schedule a processing task request to ask that the system launch your app when conditions are favorable for battery life to handle deferrable, longer-running processing, such as syncing, database maintenance, or similar tasks. The system will attempt to fulfill this request to the best of its ability within the next two days as long as the user has used your app within the past week.
  272. < MAX over 1 minute >
  273. */
  274. func scheduleAppProcessing() {
  275. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  276. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  277. request.requiresNetworkConnectivity = false
  278. request.requiresExternalPower = false
  279. do {
  280. try BGTaskScheduler.shared.submit(request)
  281. NKCommon.shared.writeLog("[SUCCESS] Background Processing task success submit request 5 minutes \(request)")
  282. } catch {
  283. NKCommon.shared.writeLog("[ERROR] Background Processing task failed to submit request: \(error)")
  284. }
  285. }
  286. func handleRefreshTask(_ task: BGTask) {
  287. scheduleAppRefresh()
  288. guard !account.isEmpty else {
  289. task.setTaskCompleted(success: true)
  290. return
  291. }
  292. NKCommon.shared.setup(delegate: NCNetworking.shared)
  293. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  294. NKCommon.shared.writeLog("[INFO] Refresh task auto upload with \(items) uploads")
  295. NCNetworkingProcessUpload.shared.start { items in
  296. NKCommon.shared.writeLog("[INFO] Refresh task upload process with \(items) uploads")
  297. task.setTaskCompleted(success: true)
  298. }
  299. }
  300. }
  301. func handleProcessingTask(_ task: BGTask) {
  302. scheduleAppProcessing()
  303. guard !account.isEmpty else {
  304. task.setTaskCompleted(success: true)
  305. return
  306. }
  307. NKCommon.shared.writeLog("[INFO] Processing task")
  308. task.setTaskCompleted(success: true)
  309. }
  310. // MARK: - Background Networking Session
  311. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  312. NKCommon.shared.writeLog("[INFO] Start handle Events For Background URLSession: \(identifier)")
  313. // Reload Widget
  314. WidgetCenter.shared.reloadAllTimelines()
  315. backgroundSessionCompletionHandler = completionHandler
  316. }
  317. // MARK: - Push Notifications
  318. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  319. completionHandler([.list, .banner, .sound])
  320. }
  321. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  322. completionHandler()
  323. }
  324. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  325. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { error in
  326. if error == .success {
  327. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  328. }
  329. }
  330. }
  331. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  332. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  333. completionHandler(result)
  334. }
  335. }
  336. // MARK: - Login & checkErrorNetworking
  337. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  338. // [WEBPersonalized] [AppConfig]
  339. if NCBrandOptions.shared.use_login_web_personalized || NCBrandOptions.shared.use_AppConfig {
  340. if activeLoginWeb?.view.window == nil {
  341. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  342. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  343. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  344. }
  345. return
  346. }
  347. // Nextcloud standard login
  348. if selector == NCGlobal.shared.introSignup {
  349. if activeLoginWeb?.view.window == nil {
  350. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  351. if selector == NCGlobal.shared.introSignup {
  352. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  353. } else {
  354. activeLoginWeb?.urlBase = self.urlBase
  355. }
  356. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  357. }
  358. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  359. if activeLoginWeb?.view.window == nil {
  360. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  361. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  362. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  363. }
  364. } else if openLoginWeb {
  365. if activeLoginWeb?.view.window == nil {
  366. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  367. activeLoginWeb?.urlBase = urlBase
  368. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  369. }
  370. } else {
  371. if activeLogin?.view.window == nil {
  372. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  373. showLoginViewController(activeLogin, contextViewController: viewController)
  374. }
  375. }
  376. }
  377. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  378. if contextViewController == nil {
  379. if let viewController = viewController {
  380. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  381. navigationController.navigationBar.barStyle = .black
  382. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  383. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  384. navigationController.navigationBar.isTranslucent = false
  385. window?.rootViewController = navigationController
  386. window?.makeKeyAndVisible()
  387. }
  388. } else if contextViewController is UINavigationController {
  389. if let contextViewController = contextViewController, let viewController = viewController {
  390. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  391. }
  392. } else {
  393. if let viewController = viewController, let contextViewController = contextViewController {
  394. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  395. navigationController.modalPresentationStyle = .fullScreen
  396. navigationController.navigationBar.barStyle = .black
  397. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  398. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  399. navigationController.navigationBar.isTranslucent = false
  400. contextViewController.present(navigationController, animated: true) { }
  401. }
  402. }
  403. }
  404. @objc func startTimerErrorNetworking() {
  405. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  406. }
  407. @objc private func checkErrorNetworking() {
  408. // check unauthorized server (401/403)
  409. if account != "" && CCUtility.getPassword(account)!.count == 0 {
  410. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  411. }
  412. }
  413. func trustCertificateError(host: String) {
  414. guard let currentHost = URL(string: self.urlBase)?.host,
  415. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  416. host != pushNotificationServerProxyHost,
  417. host == currentHost
  418. else { return }
  419. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  420. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  421. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  422. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  423. }
  424. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  425. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  426. NCNetworking.shared.writeCertificate(host: host)
  427. }))
  428. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in }))
  429. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  430. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  431. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  432. viewController.delegate = self
  433. viewController.host = host
  434. self.window?.rootViewController?.present(navigationController, animated: true)
  435. }
  436. }))
  437. window?.rootViewController?.present(alertController, animated: true)
  438. }
  439. func viewCertificateDetailsDismiss(host: String) {
  440. trustCertificateError(host: host)
  441. }
  442. // MARK: - Account
  443. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  444. let accountTestBackup = self.account + "/" + self.userId
  445. let accountTest = account + "/" + userId
  446. self.account = account
  447. self.urlBase = urlBase
  448. self.user = user
  449. self.userId = userId
  450. self.password = password
  451. _ = NCFunctionCenter.shared
  452. NKCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  453. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  454. if serverVersionMajor > 0 {
  455. NKCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  456. }
  457. NCKTVHTTPCache.shared.restartProxy(user: user, password: password)
  458. DispatchQueue.main.async {
  459. if UIApplication.shared.applicationState != .background && accountTestBackup != accountTest {
  460. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize, second: 0.2)
  461. }
  462. }
  463. }
  464. @objc func deleteAccount(_ account: String, wipe: Bool) {
  465. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  466. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  467. }
  468. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  469. for result in results {
  470. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  471. }
  472. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  473. CCUtility.clearAllKeysEnd(toEnd: account)
  474. CCUtility.clearAllKeysPushNotification(account)
  475. CCUtility.setPassword(account, password: nil)
  476. if wipe {
  477. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  478. let accounts = NCManageDatabase.shared.getAccounts()
  479. if accounts?.count ?? 0 > 0 {
  480. if let newAccount = accounts?.first {
  481. self.changeAccount(newAccount)
  482. }
  483. } else {
  484. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  485. }
  486. }
  487. }
  488. @objc func changeAccount(_ account: String) {
  489. NCManageDatabase.shared.setAccountActive(account)
  490. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  491. NCOperationQueue.shared.cancelAllQueue()
  492. NCNetworking.shared.cancelAllTask()
  493. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  494. }
  495. }
  496. func createDataAccountFile() -> Error? {
  497. guard !account.isEmpty, let dirGroupApps = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroupApps) else { return nil }
  498. try? FileManager.default.createDirectory(at: dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud), withIntermediateDirectories: true)
  499. let url = dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud + "/" + NCGlobal.shared.fileAccounts)
  500. let tableAccount = NCManageDatabase.shared.getAllAccount()
  501. var accounts = [NKDataAccountFile]()
  502. for account in tableAccount {
  503. let userBaseUrl = account.user + "-" + (URL(string: account.urlBase)?.host ?? "")
  504. let avatarFileName = userBaseUrl + "-\(account.user).png"
  505. let atPathAvatar = String(CCUtility.getDirectoryUserData()) + "/" + avatarFileName
  506. let toPathAvatar = (dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud + "/" + avatarFileName)).path
  507. if FileManager.default.fileExists(atPath: atPathAvatar) {
  508. NCUtilityFileSystem.shared.copyFile(atPath: atPathAvatar, toPath: toPathAvatar)
  509. accounts.append(NKDataAccountFile(withUrl: account.urlBase, user: account.user, alias: account.alias, avatar: toPathAvatar))
  510. } else {
  511. accounts.append(NKDataAccountFile(withUrl: account.urlBase, user: account.user, alias: account.alias))
  512. }
  513. }
  514. return NKCommon.shared.createDataAccountFile(at: url, accounts: accounts)
  515. }
  516. // MARK: - Account Request
  517. func accountRequestChangeAccount(account: String) {
  518. changeAccount(account)
  519. }
  520. func requestAccount() {
  521. if isPasscodePresented() { return }
  522. if !CCUtility.getAccountRequest() { return }
  523. let accounts = NCManageDatabase.shared.getAllAccount()
  524. if accounts.count > 1 {
  525. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  526. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  527. vcAccountRequest.accounts = accounts
  528. vcAccountRequest.enableTimerProgress = true
  529. vcAccountRequest.enableAddAccount = false
  530. vcAccountRequest.dismissDidEnterBackground = false
  531. vcAccountRequest.delegate = self
  532. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  533. let numberCell = accounts.count
  534. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  535. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  536. popup.backgroundAlpha = 0.8
  537. window?.rootViewController?.present(popup, animated: true)
  538. vcAccountRequest.startTimer()
  539. }
  540. }
  541. }
  542. // MARK: - Passcode
  543. func presentPasscode(completion: @escaping () -> ()) {
  544. let laContext = LAContext()
  545. var error: NSError?
  546. defer { self.requestAccount() }
  547. let presentedViewController = window?.rootViewController?.presentedViewController
  548. guard !account.isEmpty, CCUtility.isPasscodeAtStartEnabled(), !(presentedViewController is NCLoginNavigationController) else { return }
  549. // Make sure we have a privacy window (in case it's not enabled)
  550. showPrivacyProtectionWindow()
  551. let passcodeViewController = TOPasscodeViewController(passcodeType: .sixDigits, allowCancel: false)
  552. passcodeViewController.delegate = self
  553. passcodeViewController.keypadButtonShowLettering = false
  554. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  555. if error == nil {
  556. if laContext.biometryType == .faceID {
  557. passcodeViewController.biometryType = .faceID
  558. } else if laContext.biometryType == .touchID {
  559. passcodeViewController.biometryType = .touchID
  560. }
  561. passcodeViewController.allowBiometricValidation = true
  562. passcodeViewController.automaticallyPromptForBiometricValidation = false
  563. }
  564. }
  565. // show passcode on top of privacy window
  566. privacyProtectionWindow?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  567. completion()
  568. })
  569. }
  570. func isPasscodePresented() -> Bool {
  571. return privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController
  572. }
  573. func enableTouchFaceID() {
  574. guard !account.isEmpty,
  575. CCUtility.getEnableTouchFaceID(),
  576. CCUtility.isPasscodeAtStartEnabled(),
  577. let passcodeViewController = privacyProtectionWindow?.rootViewController?.presentedViewController as? TOPasscodeViewController
  578. else { return }
  579. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  580. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  581. if success {
  582. DispatchQueue.main.async {
  583. passcodeViewController.dismiss(animated: true) {
  584. self.hidePrivacyProtectionWindow()
  585. self.requestAccount()
  586. }
  587. }
  588. }
  589. }
  590. }
  591. }
  592. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  593. DispatchQueue.main.async {
  594. passcodeViewController.dismiss(animated: true) {
  595. self.hidePrivacyProtectionWindow()
  596. self.requestAccount()
  597. }
  598. }
  599. }
  600. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  601. return code == CCUtility.getPasscode()
  602. }
  603. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  604. enableTouchFaceID()
  605. }
  606. // MARK: - Privacy Protection
  607. private func showPrivacyProtectionWindow() {
  608. guard privacyProtectionWindow == nil else {
  609. privacyProtectionWindow?.isHidden = false
  610. return
  611. }
  612. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  613. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  614. let initialViewController = storyboard.instantiateInitialViewController()
  615. self.privacyProtectionWindow?.rootViewController = initialViewController
  616. privacyProtectionWindow?.windowLevel = .alert + 1
  617. privacyProtectionWindow?.makeKeyAndVisible()
  618. }
  619. func hidePrivacyProtectionWindow() {
  620. guard !(privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController) else { return }
  621. UIWindow.animate(withDuration: 0.25) {
  622. self.privacyProtectionWindow?.alpha = 0
  623. } completion: { _ in
  624. self.privacyProtectionWindow?.isHidden = true
  625. self.privacyProtectionWindow = nil
  626. }
  627. }
  628. // MARK: - Open URL
  629. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  630. let scheme = url.scheme
  631. let action = url.host
  632. var fileName: String = ""
  633. var serverUrl: String = ""
  634. /*
  635. Example:
  636. nextcloud://open-action?action=create-voice-memo&&user=marinofaggiana&url=https://cloud.nextcloud.com
  637. */
  638. if !account.isEmpty && scheme == "nextcloud" && action == "open-action" {
  639. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  640. let queryItems = urlComponents.queryItems
  641. guard let actionScheme = CCUtility.value(forKey: "action", fromQueryItems: queryItems), let rootViewController = window?.rootViewController else { return false }
  642. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  643. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  644. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  645. let message = String(format: NSLocalizedString("_account_not_exists_", comment: ""), userScheme, urlScheme)
  646. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  647. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  648. window?.rootViewController?.present(alertController, animated: true, completion: { })
  649. return false
  650. }
  651. switch actionScheme {
  652. case NCGlobal.shared.actionUploadAsset:
  653. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: rootViewController) { hasPermission in
  654. if hasPermission {
  655. NCPhotosPickerViewController.init(viewController: rootViewController, maxSelectedAssets: 0, singleSelectedMode: false)
  656. }
  657. }
  658. case NCGlobal.shared.actionScanDocument:
  659. NCCreateScanDocument.shared.openScannerDocument(viewController: rootViewController)
  660. case NCGlobal.shared.actionTextDocument:
  661. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController(), let directEditingCreators = NCManageDatabase.shared.getDirectEditingCreators(account: account), let directEditingCreator = directEditingCreators.first(where: { $0.editor == NCGlobal.shared.editorText}) else { return false }
  662. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  663. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  664. viewController.editorId = NCGlobal.shared.editorText
  665. viewController.creatorId = directEditingCreator.identifier
  666. viewController.typeTemplate = NCGlobal.shared.templateDocument
  667. viewController.serverUrl = activeServerUrl
  668. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  669. rootViewController.present(navigationController, animated: true, completion: nil)
  670. case NCGlobal.shared.actionVoiceMemo:
  671. NCAskAuthorization.shared.askAuthorizationAudioRecord(viewController: rootViewController) { hasPermission in
  672. if hasPermission {
  673. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  674. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  675. viewController.delegate = self
  676. viewController.createRecorder(fileName: fileName)
  677. viewController.modalTransitionStyle = .crossDissolve
  678. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  679. rootViewController.present(viewController, animated: true, completion: nil)
  680. }
  681. }
  682. default:
  683. print("No action")
  684. }
  685. }
  686. return true
  687. }
  688. /*
  689. Example:
  690. nextcloud://open-file?path=Talk/IMG_0000123.jpg&user=marinofaggiana&link=https://cloud.nextcloud.com/f/123
  691. */
  692. else if !account.isEmpty && scheme == "nextcloud" && action == "open-file" {
  693. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  694. let queryItems = urlComponents.queryItems
  695. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  696. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  697. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  698. guard let matchedAccount = getMatchedAccount(userId: userScheme, url: linkScheme) else {
  699. guard let domain = URL(string: linkScheme)?.host else { return true }
  700. fileName = (pathScheme as NSString).lastPathComponent
  701. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  702. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  703. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  704. window?.rootViewController?.present(alertController, animated: true, completion: { })
  705. return false
  706. }
  707. let davFiles = NCGlobal.shared.davfiles + self.userId
  708. if pathScheme.contains("/") {
  709. fileName = (pathScheme as NSString).lastPathComponent
  710. serverUrl = matchedAccount.urlBase + "/" + davFiles + "/" + (pathScheme as NSString).deletingLastPathComponent
  711. } else {
  712. fileName = pathScheme
  713. serverUrl = matchedAccount.urlBase + "/" + davFiles
  714. }
  715. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  716. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileNameBlink: nil, fileNameOpen: fileName)
  717. }
  718. }
  719. return true
  720. } else {
  721. let applicationHandle = NCApplicationHandle()
  722. let isHandled = applicationHandle.applicationOpenURL(url)
  723. if isHandled {
  724. return true
  725. } else {
  726. app.open(url)
  727. return true
  728. }
  729. }
  730. }
  731. func getMatchedAccount(userId: String, url: String) -> tableAccount? {
  732. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  733. let urlBase = URL(string: activeAccount.urlBase)
  734. if url.contains(urlBase?.host ?? "") && userId == activeAccount.userId {
  735. return activeAccount
  736. } else {
  737. let accounts = NCManageDatabase.shared.getAllAccount()
  738. for account in accounts {
  739. let urlBase = URL(string: account.urlBase)
  740. if url.contains(urlBase?.host ?? "") && userId == account.userId {
  741. changeAccount(account.account)
  742. return account
  743. }
  744. }
  745. }
  746. }
  747. return nil
  748. }
  749. }
  750. // MARK: - NCAudioRecorder ViewController Delegate
  751. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  752. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  753. guard
  754. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  755. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  756. else { return }
  757. navigationController.modalPresentationStyle = .formSheet
  758. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  759. window?.rootViewController?.present(navigationController, animated: true)
  760. }
  761. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  762. }
  763. }
  764. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  765. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  766. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  767. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatas) { _ in }
  768. }
  769. }