AppDelegate.swift 45 KB

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