AppDelegate.swift 44 KB

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