AppDelegate.swift 42 KB

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