AppDelegate.swift 45 KB

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