AppDelegate.swift 42 KB

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