AppDelegate.swift 41 KB

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