AppDelegate.swift 41 KB

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