AppDelegate.swift 44 KB

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