AppDelegate.swift 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017
  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. var disableSharesView: Bool = false
  47. var documentPickerViewController: NCDocumentPickerViewController?
  48. var timerErrorNetworking: Timer?
  49. var isAppRefresh: Bool = false
  50. var isAppProcessing: Bool = false
  51. private var privacyProtectionWindow: UIWindow?
  52. var isUiTestingEnabled: Bool {
  53. return ProcessInfo.processInfo.arguments.contains("UI_TESTING")
  54. }
  55. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  56. if isUiTestingEnabled {
  57. deleteAllAccounts()
  58. }
  59. NCSettingsBundleHelper.checkAndExecuteSettings(delay: 0)
  60. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  61. UserDefaults.standard.register(defaults: ["UserAgent": userAgent])
  62. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  63. FirebaseApp.configure()
  64. }
  65. CCUtility.createDirectoryStandard()
  66. CCUtility.emptyTemporaryDirectory()
  67. // Activated singleton
  68. _ = NCActionCenter.shared
  69. _ = NCNetworking.shared
  70. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  71. NextcloudKit.shared.setup(userAgent: userAgent)
  72. startTimerErrorNetworking()
  73. var levelLog = 0
  74. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  75. NextcloudKit.shared.nkCommonInstance.pathLog = pathDirectoryGroup
  76. }
  77. if NCBrandOptions.shared.disable_log {
  78. NCUtilityFileSystem.shared.deleteFile(filePath: NextcloudKit.shared.nkCommonInstance.filenamePathLog)
  79. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NextcloudKit.shared.nkCommonInstance.filenameLog)
  80. } else {
  81. levelLog = CCUtility.getLogLevel()
  82. NextcloudKit.shared.nkCommonInstance.levelLog = levelLog
  83. NextcloudKit.shared.nkCommonInstance.copyLogToDocumentDirectory = true
  84. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Start session with level \(levelLog) " + versionNextcloudiOS)
  85. }
  86. if let account = NCManageDatabase.shared.getActiveAccount() {
  87. NextcloudKit.shared.nkCommonInstance.writeLog("Account active \(account.account)")
  88. if CCUtility.getPassword(account.account).isEmpty {
  89. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] PASSWORD NOT FOUND for \(account.account)")
  90. }
  91. }
  92. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  93. account = activeAccount.account
  94. urlBase = activeAccount.urlBase
  95. user = activeAccount.user
  96. userId = activeAccount.userId
  97. password = CCUtility.getPassword(account)
  98. NextcloudKit.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  99. NCManageDatabase.shared.setCapabilities(account: account)
  100. NCBrandColor.shared.settingThemingColor(account: activeAccount.account)
  101. DispatchQueue.global().async { NCMediaManager.shared.createCache(account: self.account) }
  102. } else {
  103. CCUtility.deleteAllChainStore()
  104. if let bundleID = Bundle.main.bundleIdentifier {
  105. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  106. }
  107. NCBrandColor.shared.createImagesThemingColor()
  108. }
  109. NCBrandColor.shared.createUserColors()
  110. // Push Notification & display notification
  111. application.registerForRemoteNotifications()
  112. UNUserNotificationCenter.current().delegate = self
  113. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { _, _ in }
  114. if !NCUtility.shared.isSimulatorOrTestFlight() {
  115. let review = NCStoreReview()
  116. review.incrementAppRuns()
  117. review.showStoreReview()
  118. }
  119. // Background task register
  120. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  121. self.handleAppRefresh(task)
  122. }
  123. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  124. self.handleProcessingTask(task)
  125. }
  126. // Intro
  127. if NCBrandOptions.shared.disable_intro {
  128. CCUtility.setIntro(true)
  129. if account.isEmpty {
  130. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  131. }
  132. } else {
  133. if !CCUtility.getIntro() {
  134. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  135. let navigationController = NCLoginNavigationController(rootViewController: viewController)
  136. window?.rootViewController = navigationController
  137. window?.makeKeyAndVisible()
  138. }
  139. }
  140. }
  141. self.presentPasscode {
  142. self.enableTouchFaceID()
  143. }
  144. return true
  145. }
  146. // MARK: - Life Cycle
  147. // L' applicazione entrerà in attivo (sempre)
  148. func applicationDidBecomeActive(_ application: UIApplication) {
  149. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application did become active")
  150. NCSettingsBundleHelper.setVersionAndBuildNumber()
  151. NCSettingsBundleHelper.checkAndExecuteSettings(delay: 0.5)
  152. // START OBSERVE/TIMER UPLOAD PROCESS
  153. NCNetworkingProcessUpload.shared.observeTableMetadata()
  154. NCNetworkingProcessUpload.shared.startTimer()
  155. if !NCAskAuthorization.shared.isRequesting {
  156. hidePrivacyProtectionWindow()
  157. }
  158. NCService.shared.startRequestServicesServer()
  159. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  160. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Initialize Auto upload with \(items) uploads")
  161. }
  162. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  163. }
  164. // L' applicazione si dimetterà dallo stato di attivo
  165. func applicationWillResignActive(_ application: UIApplication) {
  166. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application will resign active")
  167. guard !account.isEmpty else { return }
  168. // STOP OBSERVE/TIMER UPLOAD PROCESS
  169. NCNetworkingProcessUpload.shared.invalidateObserveTableMetadata()
  170. NCNetworkingProcessUpload.shared.stopTimer()
  171. if CCUtility.getPrivacyScreenEnabled() {
  172. showPrivacyProtectionWindow()
  173. }
  174. // Reload Widget
  175. WidgetCenter.shared.reloadAllTimelines()
  176. // Clear older files
  177. let days = CCUtility.getCleanUpDay()
  178. if let directory = CCUtility.getDirectoryProviderStorage() {
  179. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  180. }
  181. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillResignActive)
  182. }
  183. // L' applicazione entrerà in primo piano (dopo il background)
  184. func applicationWillEnterForeground(_ application: UIApplication) {
  185. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application will enter in foreground")
  186. guard !account.isEmpty else { return }
  187. enableTouchFaceID()
  188. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  189. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetwork, second: 2)
  190. }
  191. // L' applicazione è entrata nello sfondo
  192. func applicationDidEnterBackground(_ application: UIApplication) {
  193. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application did enter in background")
  194. guard !account.isEmpty else { return }
  195. if let error = updateShareAccounts() {
  196. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Create share accounts \(error.localizedDescription)")
  197. }
  198. NCNetworking.shared.cancelSessions(inBackground: false)
  199. presentPasscode { }
  200. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  201. }
  202. // L'applicazione terminerà
  203. func applicationWillTerminate(_ application: UIApplication) {
  204. NCNetworking.shared.cancelSessions(inBackground: false)
  205. if UIApplication.shared.backgroundRefreshStatus == .available {
  206. let content = UNMutableNotificationContent()
  207. content.title = NCBrandOptions.shared.brand
  208. content.body = NSLocalizedString("_keep_running_", comment: "")
  209. let req = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
  210. let notificationCenter = UNUserNotificationCenter.current()
  211. notificationCenter.add(req)
  212. }
  213. NextcloudKit.shared.nkCommonInstance.writeLog("bye bye")
  214. }
  215. // MARK: - Background Task
  216. /*
  217. @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.
  218. < MAX 30 seconds >
  219. */
  220. func scheduleAppRefresh() {
  221. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  222. request.earliestBeginDate = Date(timeIntervalSinceNow: 60) // Refresh after 60 seconds.
  223. do {
  224. try BGTaskScheduler.shared.submit(request)
  225. } catch {
  226. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Refresh task failed to submit request: \(error)")
  227. }
  228. }
  229. /*
  230. @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.
  231. < MAX over 1 minute >
  232. */
  233. func scheduleAppProcessing() {
  234. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  235. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  236. request.requiresNetworkConnectivity = false
  237. request.requiresExternalPower = false
  238. do {
  239. try BGTaskScheduler.shared.submit(request)
  240. } catch {
  241. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Background Processing task failed to submit request: \(error)")
  242. }
  243. }
  244. func handleAppRefresh(_ task: BGTask) {
  245. scheduleAppRefresh()
  246. guard !account.isEmpty, !isAppProcessing else {
  247. return task.setTaskCompleted(success: true)
  248. }
  249. isAppRefresh = true
  250. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  251. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  252. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Refresh task auto upload with \(items) uploads")
  253. NCNetworkingProcessUpload.shared.start { items in
  254. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Refresh task upload process with \(items) uploads")
  255. task.setTaskCompleted(success: true)
  256. self.isAppRefresh = false
  257. }
  258. }
  259. }
  260. func handleProcessingTask(_ task: BGTask) {
  261. scheduleAppProcessing()
  262. guard !account.isEmpty, !isAppRefresh else {
  263. return task.setTaskCompleted(success: true)
  264. }
  265. isAppProcessing = true
  266. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  267. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  268. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Processing task auto upload with \(items) uploads")
  269. NCNetworkingProcessUpload.shared.start { items in
  270. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Processing task upload process with \(items) uploads")
  271. task.setTaskCompleted(success: true)
  272. self.isAppProcessing = false
  273. }
  274. }
  275. }
  276. // MARK: - Background Networking Session
  277. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  278. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Start handle Events For Background URLSession: \(identifier)")
  279. WidgetCenter.shared.reloadAllTimelines()
  280. backgroundSessionCompletionHandler = completionHandler
  281. }
  282. // MARK: - Push Notifications
  283. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  284. completionHandler([.list, .banner, .sound])
  285. }
  286. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  287. if let pref = UserDefaults(suiteName: NCBrandOptions.shared.capabilitiesGroups),
  288. let data = pref.object(forKey: "NOTIFICATION_DATA") as? [String: AnyObject] {
  289. nextcloudPushNotificationAction(data: data)
  290. pref.set(nil, forKey: "NOTIFICATION_DATA")
  291. }
  292. completionHandler()
  293. }
  294. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  295. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { error in
  296. if error == .success {
  297. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  298. }
  299. }
  300. }
  301. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  302. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  303. completionHandler(result)
  304. }
  305. }
  306. func nextcloudPushNotificationAction(data: [String: AnyObject]) {
  307. guard let data = NCApplicationHandle().nextcloudPushNotificationAction(data: data) else { return }
  308. var findAccount: Bool = false
  309. if let accountPush = data["account"] as? String {
  310. if accountPush == self.account {
  311. findAccount = true
  312. } else {
  313. let accounts = NCManageDatabase.shared.getAllAccount()
  314. for account in accounts {
  315. if account.account == accountPush {
  316. self.changeAccount(account.account, userProfile: nil)
  317. findAccount = true
  318. }
  319. }
  320. }
  321. if findAccount, let viewController = UIStoryboard(name: "NCNotification", bundle: nil).instantiateInitialViewController() as? NCNotification {
  322. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  323. let navigationController = UINavigationController(rootViewController: viewController)
  324. navigationController.modalPresentationStyle = .fullScreen
  325. self.window?.rootViewController?.present(navigationController, animated: true)
  326. }
  327. } else if !findAccount {
  328. let message = NSLocalizedString("_the_account_", comment: "") + " " + accountPush + " " + NSLocalizedString("_does_not_exist_", comment: "")
  329. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  330. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  331. self.window?.rootViewController?.present(alertController, animated: true, completion: { })
  332. }
  333. }
  334. }
  335. // MARK: - Login & checkErrorNetworking
  336. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  337. // [WEBPersonalized] [AppConfig]
  338. if NCBrandOptions.shared.use_login_web_personalized || NCBrandOptions.shared.use_AppConfig {
  339. if activeLoginWeb?.view.window == nil {
  340. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  341. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  342. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  343. }
  344. return
  345. }
  346. // Nextcloud standard login
  347. if selector == NCGlobal.shared.introSignup {
  348. if activeLoginWeb?.view.window == nil {
  349. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  350. if selector == NCGlobal.shared.introSignup {
  351. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  352. } else {
  353. activeLoginWeb?.urlBase = self.urlBase
  354. }
  355. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  356. }
  357. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  358. if activeLoginWeb?.view.window == nil {
  359. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  360. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  361. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  362. }
  363. } else if openLoginWeb {
  364. // Used also for reinsert the account (change passwd)
  365. if activeLoginWeb?.view.window == nil {
  366. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  367. activeLoginWeb?.urlBase = urlBase
  368. activeLoginWeb?.user = user
  369. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  370. }
  371. } else {
  372. if activeLogin?.view.window == nil {
  373. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  374. showLoginViewController(activeLogin, contextViewController: viewController)
  375. }
  376. }
  377. }
  378. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  379. if contextViewController == nil {
  380. if let viewController = viewController {
  381. let navigationController = NCLoginNavigationController(rootViewController: viewController)
  382. navigationController.navigationBar.barStyle = .black
  383. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  384. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  385. navigationController.navigationBar.isTranslucent = false
  386. window?.rootViewController = navigationController
  387. window?.makeKeyAndVisible()
  388. }
  389. } else if contextViewController is UINavigationController {
  390. if let contextViewController = contextViewController, let viewController = viewController {
  391. (contextViewController as? UINavigationController)?.pushViewController(viewController, animated: true)
  392. }
  393. } else {
  394. if let viewController = viewController, let contextViewController = contextViewController {
  395. let navigationController = NCLoginNavigationController(rootViewController: viewController)
  396. navigationController.modalPresentationStyle = .fullScreen
  397. navigationController.navigationBar.barStyle = .black
  398. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  399. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  400. navigationController.navigationBar.isTranslucent = false
  401. contextViewController.present(navigationController, animated: true) { }
  402. }
  403. }
  404. }
  405. @objc func startTimerErrorNetworking() {
  406. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  407. }
  408. @objc private func checkErrorNetworking() {
  409. guard !account.isEmpty, CCUtility.getPassword(account)!.isEmpty else { return }
  410. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  411. }
  412. func trustCertificateError(host: String) {
  413. guard let currentHost = URL(string: self.urlBase)?.host,
  414. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  415. host != pushNotificationServerProxyHost,
  416. host == currentHost
  417. else { return }
  418. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  419. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  420. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  421. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  422. }
  423. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  424. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { _ in
  425. NCNetworking.shared.writeCertificate(host: host)
  426. }))
  427. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { _ in }))
  428. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { _ in
  429. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  430. let viewController = navigationController.topViewController as? NCViewCertificateDetails {
  431. viewController.delegate = self
  432. viewController.host = host
  433. self.window?.rootViewController?.present(navigationController, animated: true)
  434. }
  435. }))
  436. window?.rootViewController?.present(alertController, animated: true)
  437. }
  438. func viewCertificateDetailsDismiss(host: String) {
  439. trustCertificateError(host: host)
  440. }
  441. // MARK: - Account
  442. @objc func changeAccount(_ account: String, userProfile: NKUserProfile?) {
  443. guard let tableAccount = NCManageDatabase.shared.setAccountActive(account) else { return }
  444. NCNetworking.shared.cancelSessions(inBackground: false)
  445. self.account = tableAccount.account
  446. self.urlBase = tableAccount.urlBase
  447. self.user = tableAccount.user
  448. self.userId = tableAccount.userId
  449. self.password = CCUtility.getPassword(tableAccount.account)
  450. NextcloudKit.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  451. NCManageDatabase.shared.setCapabilities(account: account)
  452. if let userProfile {
  453. NCManageDatabase.shared.setAccountUserProfile(account: account, userProfile: userProfile)
  454. }
  455. if NCGlobal.shared.capabilityServerVersionMajor > 0 {
  456. NextcloudKit.shared.setup(nextcloudVersion: NCGlobal.shared.capabilityServerVersionMajor)
  457. }
  458. NCPushNotification.shared().pushNotification()
  459. NCService.shared.startRequestServicesServer()
  460. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  461. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Initialize Auto upload with \(items) uploads")
  462. }
  463. DispatchQueue.global().async { NCMediaManager.shared.createCache(account: account) }
  464. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeUser)
  465. }
  466. @objc func deleteAccount(_ account: String, wipe: Bool) {
  467. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  468. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  469. }
  470. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  471. for result in results {
  472. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  473. }
  474. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  475. CCUtility.clearAllKeysEnd(toEnd: account)
  476. CCUtility.clearAllKeysPushNotification(account)
  477. CCUtility.setPassword(account, password: nil)
  478. self.account = ""
  479. self.urlBase = ""
  480. self.user = ""
  481. self.userId = ""
  482. self.password = ""
  483. if wipe {
  484. let accounts = NCManageDatabase.shared.getAccounts()
  485. if accounts?.count ?? 0 > 0 {
  486. if let newAccount = accounts?.first {
  487. self.changeAccount(newAccount, userProfile: nil)
  488. }
  489. } else {
  490. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  491. }
  492. }
  493. }
  494. func deleteAllAccounts() {
  495. let accounts = NCManageDatabase.shared.getAccounts()
  496. accounts?.forEach({ account in
  497. deleteAccount(account, wipe: true)
  498. })
  499. }
  500. func updateShareAccounts() -> Error? {
  501. guard let dirGroupApps = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroupApps) else { return nil }
  502. let tableAccount = NCManageDatabase.shared.getAllAccount()
  503. var accounts = [NKShareAccounts.DataAccounts]()
  504. for account in tableAccount {
  505. let name = account.alias.isEmpty ? account.displayName : account.alias
  506. let userBaseUrl = account.user + "-" + (URL(string: account.urlBase)?.host ?? "")
  507. let avatarFileName = userBaseUrl + "-\(account.user).png"
  508. let pathAvatarFileName = String(CCUtility.getDirectoryUserData()) + "/" + avatarFileName
  509. let image = UIImage(contentsOfFile: pathAvatarFileName)
  510. accounts.append(NKShareAccounts.DataAccounts(withUrl: account.urlBase, user: account.user, name: name, image: image))
  511. }
  512. return NKShareAccounts().putShareAccounts(at: dirGroupApps, app: NCGlobal.shared.appScheme, dataAccounts: accounts)
  513. }
  514. // MARK: - Account Request
  515. func accountRequestChangeAccount(account: String) {
  516. changeAccount(account, userProfile: nil)
  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 () -> Void) {
  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, _ 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: - Universal Links
  627. func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
  628. let applicationHandle = NCApplicationHandle()
  629. return applicationHandle.applicationOpenUserActivity(userActivity)
  630. }
  631. // MARK: - Scheme URL
  632. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  633. let scheme = url.scheme
  634. let action = url.host
  635. var fileName: String = ""
  636. var serverUrl: String = ""
  637. /*
  638. Example:
  639. nextcloud://open-action?action=create-voice-memo&&user=marinofaggiana&url=https://cloud.nextcloud.com
  640. */
  641. if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-action" {
  642. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  643. let queryItems = urlComponents.queryItems
  644. guard let actionScheme = CCUtility.value(forKey: "action", fromQueryItems: queryItems), let rootViewController = window?.rootViewController else { return false }
  645. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  646. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  647. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  648. let message = NSLocalizedString("_the_account_", comment: "") + " " + userScheme + NSLocalizedString("_of_", comment: "") + " " + urlScheme + " " + NSLocalizedString("_does_not_exist_", comment: "")
  649. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  650. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  651. window?.rootViewController?.present(alertController, animated: true, completion: { })
  652. return false
  653. }
  654. switch actionScheme {
  655. case NCGlobal.shared.actionUploadAsset:
  656. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: rootViewController) { hasPermission in
  657. if hasPermission {
  658. NCPhotosPickerViewController(viewController: rootViewController, maxSelectedAssets: 0, singleSelectedMode: false)
  659. }
  660. }
  661. case NCGlobal.shared.actionScanDocument:
  662. NCDocumentCamera.shared.openScannerDocument(viewController: rootViewController)
  663. case NCGlobal.shared.actionTextDocument:
  664. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController(),
  665. let directEditingCreators = NCManageDatabase.shared.getDirectEditingCreators(account: account),
  666. let directEditingCreator = directEditingCreators.first(where: { $0.editor == NCGlobal.shared.editorText}),
  667. let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments else { return false }
  668. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  669. viewController.editorId = NCGlobal.shared.editorText
  670. viewController.creatorId = directEditingCreator.identifier
  671. viewController.typeTemplate = NCGlobal.shared.templateDocument
  672. viewController.serverUrl = activeServerUrl
  673. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  674. rootViewController.present(navigationController, animated: true, completion: nil)
  675. case NCGlobal.shared.actionVoiceMemo:
  676. NCAskAuthorization.shared.askAuthorizationAudioRecord(viewController: rootViewController) { hasPermission in
  677. if hasPermission {
  678. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  679. if let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as? NCAudioRecorderViewController {
  680. viewController.delegate = self
  681. viewController.createRecorder(fileName: fileName)
  682. viewController.modalTransitionStyle = .crossDissolve
  683. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  684. rootViewController.present(viewController, animated: true, completion: nil)
  685. }
  686. }
  687. }
  688. default:
  689. print("No action")
  690. }
  691. }
  692. return true
  693. }
  694. /*
  695. Example:
  696. nextcloud://open-file?path=Talk/IMG_0000123.jpg&user=marinofaggiana&link=https://cloud.nextcloud.com/f/123
  697. */
  698. else if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-file" {
  699. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  700. let queryItems = urlComponents.queryItems
  701. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  702. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  703. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  704. guard let matchedAccount = getMatchedAccount(userId: userScheme, url: linkScheme) else {
  705. guard let domain = URL(string: linkScheme)?.host else { return true }
  706. fileName = (pathScheme as NSString).lastPathComponent
  707. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  708. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  709. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  710. window?.rootViewController?.present(alertController, animated: true, completion: { })
  711. return false
  712. }
  713. let davFiles = NextcloudKit.shared.nkCommonInstance.dav + "/files/" + self.userId
  714. if pathScheme.contains("/") {
  715. fileName = (pathScheme as NSString).lastPathComponent
  716. serverUrl = matchedAccount.urlBase + "/" + davFiles + "/" + (pathScheme as NSString).deletingLastPathComponent
  717. } else {
  718. fileName = pathScheme
  719. serverUrl = matchedAccount.urlBase + "/" + davFiles
  720. }
  721. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  722. NCActionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileNameBlink: nil, fileNameOpen: fileName)
  723. }
  724. }
  725. return true
  726. /*
  727. Example:
  728. nextcloud://open-and-switch-account?user=marinofaggiana&url=https://cloud.nextcloud.com
  729. */
  730. } else if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-and-switch-account" {
  731. guard let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) else { return false }
  732. let queryItems = urlComponents.queryItems
  733. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  734. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  735. // If the account doesn't exist, return false which will open the app without switching
  736. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  737. return false
  738. }
  739. // Otherwise open the app and switch accounts
  740. return true
  741. } else {
  742. let applicationHandle = NCApplicationHandle()
  743. let isHandled = applicationHandle.applicationOpenURL(url)
  744. if isHandled {
  745. return true
  746. } else {
  747. app.open(url)
  748. return true
  749. }
  750. }
  751. }
  752. func getMatchedAccount(userId: String, url: String) -> tableAccount? {
  753. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  754. let urlBase = URL(string: activeAccount.urlBase)
  755. if url.contains(urlBase?.host ?? "") && userId == activeAccount.userId {
  756. return activeAccount
  757. } else {
  758. let accounts = NCManageDatabase.shared.getAllAccount()
  759. for account in accounts {
  760. let urlBase = URL(string: account.urlBase)
  761. if url.contains(urlBase?.host ?? "") && userId == account.userId {
  762. changeAccount(account.account, userProfile: nil)
  763. return account
  764. }
  765. }
  766. }
  767. }
  768. return nil
  769. }
  770. }
  771. // MARK: - NCAudioRecorder ViewController Delegate
  772. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  773. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  774. guard
  775. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  776. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  777. else { return }
  778. navigationController.modalPresentationStyle = .formSheet
  779. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  780. window?.rootViewController?.present(navigationController, animated: true)
  781. }
  782. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  783. }
  784. }
  785. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  786. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  787. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  788. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatas) { _ in }
  789. }
  790. }