AppDelegate.swift 41 KB

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