AppDelegate.swift 42 KB

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