AppDelegate.swift 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  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. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  65. NextcloudKit.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. if activeAccount.account != account {
  172. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  173. } else {
  174. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  175. // Unlock E2EE
  176. NCNetworkingE2EE.shared.unlockAll(account: self.account)
  177. // Request Service Server Nextcloud
  178. NCService.shared.startRequestServicesServer()
  179. }
  180. }
  181. // Required unsubscribing / subscribing
  182. NCPushNotification.shared().pushNotification()
  183. // Request TouchID, FaceID
  184. enableTouchFaceID()
  185. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  186. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  187. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetwork)
  188. }
  189. // L' applicazione si dimetterà dallo stato di attivo
  190. func applicationWillResignActive(_ application: UIApplication) {
  191. guard !account.isEmpty else { return }
  192. NKCommon.shared.writeLog("[INFO] Application will resign active")
  193. // STOP OBSERVE/TIMER UPLOAD PROCESS
  194. NCNetworkingProcessUpload.shared.invalidateObserveTableMetadata()
  195. NCNetworkingProcessUpload.shared.stopTimer()
  196. // Create file account for Nextcloud data share
  197. if let error = createDataAccountFile() {
  198. NKCommon.shared.writeLog("[ERROR] Create account file for Talk \(error.localizedDescription)")
  199. }
  200. if CCUtility.getPrivacyScreenEnabled() {
  201. // Privacy
  202. showPrivacyProtectionWindow()
  203. }
  204. // Reload Widget
  205. WidgetCenter.shared.reloadAllTimelines()
  206. // Clear operation queue
  207. NCOperationQueue.shared.cancelAllQueue()
  208. // Clear download
  209. NCNetworking.shared.cancelAllDownloadTransfer()
  210. // Clear older files
  211. let days = CCUtility.getCleanUpDay()
  212. if let directory = CCUtility.getDirectoryProviderStorage() {
  213. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  214. }
  215. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillResignActive)
  216. }
  217. // L' applicazione è entrata nello sfondo
  218. func applicationDidEnterBackground(_ application: UIApplication) {
  219. guard !account.isEmpty else { return }
  220. NKCommon.shared.writeLog("[INFO] Application did enter in background")
  221. scheduleAppRefresh()
  222. scheduleAppProcessing()
  223. // Passcode
  224. presentPasscode { }
  225. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  226. }
  227. // L'applicazione terminerà
  228. func applicationWillTerminate(_ application: UIApplication) {
  229. NCNetworking.shared.cancelAllDownloadTransfer()
  230. if UIApplication.shared.backgroundRefreshStatus == .available {
  231. let content = UNMutableNotificationContent()
  232. content.title = NCBrandOptions.shared.brand
  233. content.body = NSLocalizedString("_keep_running_", comment: "")
  234. let req = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
  235. let notificationCenter = UNUserNotificationCenter.current()
  236. notificationCenter.add(req)
  237. }
  238. NKCommon.shared.writeLog("bye bye")
  239. }
  240. // MARK: -
  241. @objc private func initialize() {
  242. guard !account.isEmpty else { return }
  243. NKCommon.shared.writeLog("[INFO] initialize Main")
  244. // Registeration push notification
  245. NCPushNotification.shared().pushNotification()
  246. // Unlock E2EE
  247. NCNetworkingE2EE.shared.unlockAll(account: account)
  248. // Start services
  249. NCService.shared.startRequestServicesServer()
  250. // close detail
  251. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  252. // Reload Widget
  253. WidgetCenter.shared.reloadAllTimelines()
  254. // Registeration domain File Provider
  255. // FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  256. // [fileProviderDomain removeAllDomains];
  257. // [fileProviderDomain registerDomains];
  258. }
  259. // MARK: - Background Task
  260. /*
  261. @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.
  262. < MAX 30 seconds >
  263. */
  264. func scheduleAppRefresh() {
  265. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  266. request.earliestBeginDate = Date(timeIntervalSinceNow: 60) // Refresh after 60 seconds.
  267. do {
  268. try BGTaskScheduler.shared.submit(request)
  269. NKCommon.shared.writeLog("[SUCCESS] Refresh task success submit request 60 seconds \(request)")
  270. } catch {
  271. NKCommon.shared.writeLog("[ERROR] Refresh task failed to submit request: \(error)")
  272. }
  273. }
  274. /*
  275. @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.
  276. < MAX over 1 minute >
  277. */
  278. func scheduleAppProcessing() {
  279. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  280. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  281. request.requiresNetworkConnectivity = false
  282. request.requiresExternalPower = false
  283. do {
  284. try BGTaskScheduler.shared.submit(request)
  285. NKCommon.shared.writeLog("[SUCCESS] Background Processing task success submit request 5 minutes \(request)")
  286. } catch {
  287. NKCommon.shared.writeLog("[ERROR] Background Processing task failed to submit request: \(error)")
  288. }
  289. }
  290. func handleRefreshTask(_ task: BGTask) {
  291. scheduleAppRefresh()
  292. guard !account.isEmpty else {
  293. task.setTaskCompleted(success: true)
  294. return
  295. }
  296. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  297. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  298. NKCommon.shared.writeLog("[INFO] Refresh task auto upload with \(items) uploads")
  299. NCNetworkingProcessUpload.shared.start { items in
  300. NKCommon.shared.writeLog("[INFO] Refresh task upload process with \(items) uploads")
  301. task.setTaskCompleted(success: true)
  302. }
  303. }
  304. }
  305. func handleProcessingTask(_ task: BGTask) {
  306. scheduleAppProcessing()
  307. guard !account.isEmpty else {
  308. task.setTaskCompleted(success: true)
  309. return
  310. }
  311. NKCommon.shared.writeLog("[INFO] Processing task")
  312. task.setTaskCompleted(success: true)
  313. }
  314. // MARK: - Background Networking Session
  315. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  316. NKCommon.shared.writeLog("[INFO] Start handle Events For Background URLSession: \(identifier)")
  317. // Reload Widget
  318. WidgetCenter.shared.reloadAllTimelines()
  319. backgroundSessionCompletionHandler = completionHandler
  320. }
  321. // MARK: - Push Notifications
  322. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  323. completionHandler([.list, .banner, .sound])
  324. }
  325. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  326. completionHandler()
  327. }
  328. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  329. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { error in
  330. if error == .success {
  331. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  332. }
  333. }
  334. }
  335. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  336. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  337. completionHandler(result)
  338. }
  339. }
  340. // MARK: - Login & checkErrorNetworking
  341. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  342. // [WEBPersonalized] [AppConfig]
  343. if NCBrandOptions.shared.use_login_web_personalized || NCBrandOptions.shared.use_AppConfig {
  344. if activeLoginWeb?.view.window == nil {
  345. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  346. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  347. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  348. }
  349. return
  350. }
  351. // Nextcloud standard login
  352. if selector == NCGlobal.shared.introSignup {
  353. if activeLoginWeb?.view.window == nil {
  354. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  355. if selector == NCGlobal.shared.introSignup {
  356. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  357. } else {
  358. activeLoginWeb?.urlBase = self.urlBase
  359. }
  360. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  361. }
  362. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  363. if activeLoginWeb?.view.window == nil {
  364. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  365. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  366. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  367. }
  368. } else if openLoginWeb {
  369. if activeLoginWeb?.view.window == nil {
  370. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  371. activeLoginWeb?.urlBase = urlBase
  372. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  373. }
  374. } else {
  375. if activeLogin?.view.window == nil {
  376. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  377. showLoginViewController(activeLogin, contextViewController: viewController)
  378. }
  379. }
  380. }
  381. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  382. if contextViewController == nil {
  383. if let viewController = viewController {
  384. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  385. navigationController.navigationBar.barStyle = .black
  386. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  387. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  388. navigationController.navigationBar.isTranslucent = false
  389. window?.rootViewController = navigationController
  390. window?.makeKeyAndVisible()
  391. }
  392. } else if contextViewController is UINavigationController {
  393. if let contextViewController = contextViewController, let viewController = viewController {
  394. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  395. }
  396. } else {
  397. if let viewController = viewController, let contextViewController = contextViewController {
  398. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  399. navigationController.modalPresentationStyle = .fullScreen
  400. navigationController.navigationBar.barStyle = .black
  401. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  402. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  403. navigationController.navigationBar.isTranslucent = false
  404. contextViewController.present(navigationController, animated: true) { }
  405. }
  406. }
  407. }
  408. @objc func startTimerErrorNetworking() {
  409. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  410. }
  411. @objc private func checkErrorNetworking() {
  412. // check unauthorized server (401/403)
  413. if account != "" && CCUtility.getPassword(account)!.count == 0 {
  414. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  415. }
  416. }
  417. func trustCertificateError(host: String) {
  418. guard let currentHost = URL(string: self.urlBase)?.host,
  419. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  420. host != pushNotificationServerProxyHost,
  421. host == currentHost
  422. else { return }
  423. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  424. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  425. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  426. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  427. }
  428. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  429. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  430. NCNetworking.shared.writeCertificate(host: host)
  431. }))
  432. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in }))
  433. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  434. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  435. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  436. viewController.delegate = self
  437. viewController.host = host
  438. self.window?.rootViewController?.present(navigationController, animated: true)
  439. }
  440. }))
  441. window?.rootViewController?.present(alertController, animated: true)
  442. }
  443. func viewCertificateDetailsDismiss(host: String) {
  444. trustCertificateError(host: host)
  445. }
  446. // MARK: - Account
  447. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  448. let accountTestBackup = self.account + "/" + self.userId
  449. let accountTest = account + "/" + userId
  450. self.account = account
  451. self.urlBase = urlBase
  452. self.user = user
  453. self.userId = userId
  454. self.password = password
  455. _ = NCFunctionCenter.shared
  456. NextcloudKit.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  457. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  458. if serverVersionMajor > 0 {
  459. NextcloudKit.shared.setup(nextcloudVersion: serverVersionMajor)
  460. }
  461. NCKTVHTTPCache.shared.restartProxy(user: user, password: password)
  462. DispatchQueue.main.async {
  463. if UIApplication.shared.applicationState != .background && accountTestBackup != accountTest {
  464. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize, second: 0.2)
  465. }
  466. }
  467. }
  468. @objc func deleteAccount(_ account: String, wipe: Bool) {
  469. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  470. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  471. }
  472. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  473. for result in results {
  474. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  475. }
  476. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  477. CCUtility.clearAllKeysEnd(toEnd: account)
  478. CCUtility.clearAllKeysPushNotification(account)
  479. CCUtility.setPassword(account, password: nil)
  480. if wipe {
  481. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  482. let accounts = NCManageDatabase.shared.getAccounts()
  483. if accounts?.count ?? 0 > 0 {
  484. if let newAccount = accounts?.first {
  485. self.changeAccount(newAccount)
  486. }
  487. } else {
  488. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  489. }
  490. }
  491. }
  492. @objc func changeAccount(_ account: String) {
  493. NCManageDatabase.shared.setAccountActive(account)
  494. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  495. NCOperationQueue.shared.cancelAllQueue()
  496. NCNetworking.shared.cancelAllTask()
  497. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  498. }
  499. }
  500. func createDataAccountFile() -> Error? {
  501. guard !account.isEmpty, let dirGroupApps = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroupApps) else { return nil }
  502. try? FileManager.default.createDirectory(at: dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud), withIntermediateDirectories: true)
  503. let url = dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud + "/" + NCGlobal.shared.fileAccounts)
  504. let tableAccount = NCManageDatabase.shared.getAllAccount()
  505. var accounts = [NKDataAccountFile]()
  506. for account in tableAccount {
  507. let alias = account.alias.isEmpty ? account.displayName : account.alias
  508. let userBaseUrl = account.user + "-" + (URL(string: account.urlBase)?.host ?? "")
  509. let avatarFileName = userBaseUrl + "-\(account.user).png"
  510. let atPathAvatar = String(CCUtility.getDirectoryUserData()) + "/" + avatarFileName
  511. let toPathAvatar = (dirGroupApps.appendingPathComponent(NCGlobal.shared.appDataShareNextcloud + "/" + avatarFileName)).path
  512. if FileManager.default.fileExists(atPath: atPathAvatar) {
  513. NCUtilityFileSystem.shared.copyFile(atPath: atPathAvatar, toPath: toPathAvatar)
  514. accounts.append(NKDataAccountFile(withUrl: account.urlBase, user: account.user, alias: alias, avatar: toPathAvatar))
  515. } else {
  516. accounts.append(NKDataAccountFile(withUrl: account.urlBase, user: account.user, alias: alias))
  517. }
  518. }
  519. return NKCommon.shared.createDataAccountFile(at: url, accounts: accounts)
  520. }
  521. // MARK: - Account Request
  522. func accountRequestChangeAccount(account: String) {
  523. changeAccount(account)
  524. }
  525. func requestAccount() {
  526. if isPasscodePresented() { return }
  527. if !CCUtility.getAccountRequest() { return }
  528. let accounts = NCManageDatabase.shared.getAllAccount()
  529. if accounts.count > 1 {
  530. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  531. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  532. vcAccountRequest.accounts = accounts
  533. vcAccountRequest.enableTimerProgress = true
  534. vcAccountRequest.enableAddAccount = false
  535. vcAccountRequest.dismissDidEnterBackground = false
  536. vcAccountRequest.delegate = self
  537. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  538. let numberCell = accounts.count
  539. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  540. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  541. popup.backgroundAlpha = 0.8
  542. window?.rootViewController?.present(popup, animated: true)
  543. vcAccountRequest.startTimer()
  544. }
  545. }
  546. }
  547. // MARK: - Passcode
  548. func presentPasscode(completion: @escaping () -> ()) {
  549. let laContext = LAContext()
  550. var error: NSError?
  551. defer { self.requestAccount() }
  552. let presentedViewController = window?.rootViewController?.presentedViewController
  553. guard !account.isEmpty, CCUtility.isPasscodeAtStartEnabled(), !(presentedViewController is NCLoginNavigationController) else { return }
  554. // Make sure we have a privacy window (in case it's not enabled)
  555. showPrivacyProtectionWindow()
  556. let passcodeViewController = TOPasscodeViewController(passcodeType: .sixDigits, allowCancel: false)
  557. passcodeViewController.delegate = self
  558. passcodeViewController.keypadButtonShowLettering = false
  559. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  560. if error == nil {
  561. if laContext.biometryType == .faceID {
  562. passcodeViewController.biometryType = .faceID
  563. } else if laContext.biometryType == .touchID {
  564. passcodeViewController.biometryType = .touchID
  565. }
  566. passcodeViewController.allowBiometricValidation = true
  567. passcodeViewController.automaticallyPromptForBiometricValidation = false
  568. }
  569. }
  570. // show passcode on top of privacy window
  571. privacyProtectionWindow?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  572. completion()
  573. })
  574. }
  575. func isPasscodePresented() -> Bool {
  576. return privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController
  577. }
  578. func enableTouchFaceID() {
  579. guard !account.isEmpty,
  580. CCUtility.getEnableTouchFaceID(),
  581. CCUtility.isPasscodeAtStartEnabled(),
  582. let passcodeViewController = privacyProtectionWindow?.rootViewController?.presentedViewController as? TOPasscodeViewController
  583. else { return }
  584. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  585. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  586. if success {
  587. DispatchQueue.main.async {
  588. passcodeViewController.dismiss(animated: true) {
  589. self.hidePrivacyProtectionWindow()
  590. self.requestAccount()
  591. }
  592. }
  593. }
  594. }
  595. }
  596. }
  597. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  598. DispatchQueue.main.async {
  599. passcodeViewController.dismiss(animated: true) {
  600. self.hidePrivacyProtectionWindow()
  601. self.requestAccount()
  602. }
  603. }
  604. }
  605. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  606. return code == CCUtility.getPasscode()
  607. }
  608. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  609. enableTouchFaceID()
  610. }
  611. // MARK: - Privacy Protection
  612. private func showPrivacyProtectionWindow() {
  613. guard privacyProtectionWindow == nil else {
  614. privacyProtectionWindow?.isHidden = false
  615. return
  616. }
  617. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  618. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  619. let initialViewController = storyboard.instantiateInitialViewController()
  620. self.privacyProtectionWindow?.rootViewController = initialViewController
  621. privacyProtectionWindow?.windowLevel = .alert + 1
  622. privacyProtectionWindow?.makeKeyAndVisible()
  623. }
  624. func hidePrivacyProtectionWindow() {
  625. guard !(privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController) else { return }
  626. UIWindow.animate(withDuration: 0.25) {
  627. self.privacyProtectionWindow?.alpha = 0
  628. } completion: { _ in
  629. self.privacyProtectionWindow?.isHidden = true
  630. self.privacyProtectionWindow = nil
  631. }
  632. }
  633. // MARK: - Open URL
  634. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  635. let scheme = url.scheme
  636. let action = url.host
  637. var fileName: String = ""
  638. var serverUrl: String = ""
  639. /*
  640. Example:
  641. nextcloud://open-action?action=create-voice-memo&&user=marinofaggiana&url=https://cloud.nextcloud.com
  642. */
  643. if !account.isEmpty && scheme == "nextcloud" && action == "open-action" {
  644. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  645. let queryItems = urlComponents.queryItems
  646. guard let actionScheme = CCUtility.value(forKey: "action", fromQueryItems: queryItems), let rootViewController = window?.rootViewController else { return false }
  647. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  648. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  649. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  650. let message = String(format: NSLocalizedString("_account_not_exists_", comment: ""), userScheme, urlScheme)
  651. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  652. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  653. window?.rootViewController?.present(alertController, animated: true, completion: { })
  654. return false
  655. }
  656. switch actionScheme {
  657. case NCGlobal.shared.actionUploadAsset:
  658. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: rootViewController) { hasPermission in
  659. if hasPermission {
  660. NCPhotosPickerViewController.init(viewController: rootViewController, maxSelectedAssets: 0, singleSelectedMode: false)
  661. }
  662. }
  663. case NCGlobal.shared.actionScanDocument:
  664. NCCreateScanDocument.shared.openScannerDocument(viewController: rootViewController)
  665. case NCGlobal.shared.actionTextDocument:
  666. 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 }
  667. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  668. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  669. viewController.editorId = NCGlobal.shared.editorText
  670. viewController.creatorId = directEditingCreator.identifier
  671. viewController.typeTemplate = NCGlobal.shared.templateDocument
  672. viewController.serverUrl = activeServerUrl
  673. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  674. rootViewController.present(navigationController, animated: true, completion: nil)
  675. case NCGlobal.shared.actionVoiceMemo:
  676. NCAskAuthorization.shared.askAuthorizationAudioRecord(viewController: rootViewController) { hasPermission in
  677. if hasPermission {
  678. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  679. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  680. viewController.delegate = self
  681. viewController.createRecorder(fileName: fileName)
  682. viewController.modalTransitionStyle = .crossDissolve
  683. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  684. rootViewController.present(viewController, animated: true, completion: nil)
  685. }
  686. }
  687. default:
  688. print("No action")
  689. }
  690. }
  691. return true
  692. }
  693. /*
  694. Example:
  695. nextcloud://open-file?path=Talk/IMG_0000123.jpg&user=marinofaggiana&link=https://cloud.nextcloud.com/f/123
  696. */
  697. else if !account.isEmpty && scheme == "nextcloud" && action == "open-file" {
  698. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  699. let queryItems = urlComponents.queryItems
  700. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  701. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  702. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  703. guard let matchedAccount = getMatchedAccount(userId: userScheme, url: linkScheme) else {
  704. guard let domain = URL(string: linkScheme)?.host else { return true }
  705. fileName = (pathScheme as NSString).lastPathComponent
  706. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  707. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  708. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  709. window?.rootViewController?.present(alertController, animated: true, completion: { })
  710. return false
  711. }
  712. let davFiles = NCGlobal.shared.davfiles + self.userId
  713. if pathScheme.contains("/") {
  714. fileName = (pathScheme as NSString).lastPathComponent
  715. serverUrl = matchedAccount.urlBase + "/" + davFiles + "/" + (pathScheme as NSString).deletingLastPathComponent
  716. } else {
  717. fileName = pathScheme
  718. serverUrl = matchedAccount.urlBase + "/" + davFiles
  719. }
  720. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  721. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileNameBlink: nil, fileNameOpen: fileName)
  722. }
  723. }
  724. return true
  725. } else {
  726. let applicationHandle = NCApplicationHandle()
  727. let isHandled = applicationHandle.applicationOpenURL(url)
  728. if isHandled {
  729. return true
  730. } else {
  731. app.open(url)
  732. return true
  733. }
  734. }
  735. }
  736. func getMatchedAccount(userId: String, url: String) -> tableAccount? {
  737. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  738. let urlBase = URL(string: activeAccount.urlBase)
  739. if url.contains(urlBase?.host ?? "") && userId == activeAccount.userId {
  740. return activeAccount
  741. } else {
  742. let accounts = NCManageDatabase.shared.getAllAccount()
  743. for account in accounts {
  744. let urlBase = URL(string: account.urlBase)
  745. if url.contains(urlBase?.host ?? "") && userId == account.userId {
  746. changeAccount(account.account)
  747. return account
  748. }
  749. }
  750. }
  751. }
  752. return nil
  753. }
  754. }
  755. // MARK: - NCAudioRecorder ViewController Delegate
  756. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  757. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  758. guard
  759. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  760. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  761. else { return }
  762. navigationController.modalPresentationStyle = .formSheet
  763. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  764. window?.rootViewController?.present(navigationController, animated: true)
  765. }
  766. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  767. }
  768. }
  769. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  770. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  771. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  772. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatas) { _ in }
  773. }
  774. }