AppDelegate.swift 45 KB

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