AppDelegate.swift 42 KB

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