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