AppDelegate.swift 45 KB

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