AppDelegate.swift 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  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 NCCommunication
  26. import TOPasscodeViewController
  27. import LocalAuthentication
  28. import Firebase
  29. @UIApplicationMain
  30. class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, TOPasscodeViewControllerDelegate {
  31. var backgroundSessionCompletionHandler: (() -> Void)?
  32. var window: UIWindow?
  33. @objc var account: String = ""
  34. @objc var urlBase: String = ""
  35. @objc var user: String = ""
  36. @objc var userId: String = ""
  37. @objc var password: String = ""
  38. var activeAppConfigView: NCAppConfigView?
  39. var activeFavorite: NCFavorite?
  40. var activeFiles: NCFiles?
  41. var activeFileViewInFolder: NCFileViewInFolder?
  42. var activeLogin: NCLogin?
  43. var activeLoginWeb: NCLoginWeb?
  44. @objc var activeMedia: NCMedia?
  45. var activeMore: NCMore?
  46. var activeOffline: NCOffline?
  47. var activeRecent: NCRecent?
  48. var activeServerUrl: String = ""
  49. var activeShares: NCShares?
  50. var activeTransfers: NCTransfers?
  51. var activeTrash: NCTrash?
  52. @objc var activeViewController: UIViewController?
  53. var activeViewerVideo: NCViewerVideo?
  54. var listFilesVC: [String:NCFiles] = [:]
  55. var listFavoriteVC: [String:NCFavorite] = [:]
  56. var listOfflineVC: [String:NCOffline] = [:]
  57. var listProgress: [String:NCGlobal.progressType] = [:]
  58. var disableSharesView: Bool = false
  59. var documentPickerViewController: NCDocumentPickerViewController?
  60. var networkingAutoUpload: NCNetworkingAutoUpload?
  61. var passcodeViewController: TOPasscodeViewController?
  62. var pasteboardOcIds: [String] = []
  63. var shares: [tableShare] = []
  64. var timerErrorNetworking: Timer?
  65. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  66. let userAgent = CCUtility.getUserAgent() as String
  67. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  68. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  69. UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
  70. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  71. FirebaseApp.configure()
  72. }
  73. CCUtility.createDirectoryStandard()
  74. CCUtility.emptyTemporaryDirectory()
  75. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  76. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  77. startTimerErrorNetworking()
  78. // LOG
  79. let levelLog = CCUtility.getLogLevel()
  80. NCCommunicationCommon.shared.levelLog = levelLog
  81. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  82. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  83. }
  84. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  85. if isSimulatorOrTestFlight {
  86. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  87. } else {
  88. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  89. }
  90. // Activate user account
  91. if let resultActiveAccount = NCManageDatabase.shared.getAccountActive() {
  92. // FIX 3.0.5 lost urlbase
  93. if resultActiveAccount.urlBase.count == 0 {
  94. let user = resultActiveAccount.user + " "
  95. let urlBase = resultActiveAccount.account.replacingOccurrences(of: user, with: "")
  96. resultActiveAccount.urlBase = urlBase
  97. NCManageDatabase.shared.updateAccount(resultActiveAccount)
  98. }
  99. settingAccount(resultActiveAccount.account, urlBase: resultActiveAccount.urlBase, user: resultActiveAccount.user, userId: resultActiveAccount.userId, password: CCUtility.getPassword(resultActiveAccount.account))
  100. } else {
  101. CCUtility.deleteAllChainStore()
  102. if let bundleID = Bundle.main.bundleIdentifier {
  103. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  104. }
  105. }
  106. // init home
  107. NotificationCenter.default.addObserver(self, selector: #selector(initializeMain), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitializeMain), object: nil)
  108. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  109. // Auto upload
  110. networkingAutoUpload = NCNetworkingAutoUpload.init()
  111. // Push Notification & display notification
  112. application.registerForRemoteNotifications()
  113. UNUserNotificationCenter.current().delegate = self
  114. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (_, _) in }
  115. // AV
  116. do {
  117. try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
  118. try AVAudioSession.sharedInstance().setActive(true)
  119. } catch {
  120. print(error)
  121. }
  122. application.beginReceivingRemoteControlEvents()
  123. // Store review
  124. if !NCUtility.shared.isSimulatorOrTestFlight() {
  125. let review = NCStoreReview()
  126. review.incrementAppRuns()
  127. review.showStoreReview()
  128. }
  129. // Detect Dark mode
  130. if #available(iOS 13.0, *) {
  131. if CCUtility.getDarkModeDetect() {
  132. if UITraitCollection.current.userInterfaceStyle == .dark {
  133. CCUtility.setDarkMode(true)
  134. } else {
  135. CCUtility.setDarkMode(false)
  136. }
  137. }
  138. }
  139. // Background task: register
  140. if #available(iOS 13.0, *) {
  141. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  142. self.handleRefreshTask(task)
  143. }
  144. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  145. self.handleProcessingTask(task)
  146. }
  147. } else {
  148. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  149. }
  150. // Intro
  151. if NCBrandOptions.shared.disable_intro {
  152. CCUtility.setIntro(true)
  153. if account == "" {
  154. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  155. }
  156. } else {
  157. if !CCUtility.getIntro() {
  158. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  159. let navigationController = UINavigationController(rootViewController: viewController)
  160. window?.rootViewController = navigationController
  161. window?.makeKeyAndVisible()
  162. }
  163. }
  164. }
  165. // Passcode
  166. DispatchQueue.main.async {
  167. self.passcodeWithAutomaticallyPromptForBiometricValidation(true)
  168. }
  169. return true
  170. }
  171. // MARK: - Life Cycle
  172. // L' applicazione entrerà in primo piano (attivo sempre)
  173. func applicationDidBecomeActive(_ application: UIApplication) {
  174. NCSettingsBundleHelper.setVersionAndBuildNumber()
  175. if account == "" { return}
  176. NCNetworking.shared.verifyUploadZombie()
  177. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  178. }
  179. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  180. func applicationWillEnterForeground(_ application: UIApplication) {
  181. if account == "" { return}
  182. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  183. // Request Passcode
  184. passcodeWithAutomaticallyPromptForBiometricValidation(true)
  185. // Initialize Auto upload
  186. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  187. // Required unsubscribing / subscribing
  188. NCPushNotification.shared().pushNotification()
  189. // Request Service Server Nextcloud
  190. NCService.shared.startRequestServicesServer()
  191. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  192. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  193. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  194. }
  195. // L' applicazione si dimetterà dallo stato di attivo
  196. func applicationWillResignActive(_ application: UIApplication) {
  197. if account == "" { return}
  198. // Dismiss FileViewInFolder
  199. if activeFileViewInFolder != nil {
  200. activeFileViewInFolder?.dismiss(animated: false, completion: {
  201. self.activeFileViewInFolder = nil
  202. })
  203. }
  204. }
  205. // L' applicazione è entrata nello sfondo
  206. func applicationDidEnterBackground(_ application: UIApplication) {
  207. if account == "" { return}
  208. NCCommunicationCommon.shared.writeLog("Application did enter in background")
  209. passcodeWithAutomaticallyPromptForBiometricValidation(false)
  210. if #available(iOS 13.0, *) {
  211. scheduleAppRefresh()
  212. scheduleBackgroundProcessing()
  213. }
  214. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  215. }
  216. // L'applicazione terminerà
  217. func applicationWillTerminate(_ application: UIApplication) {
  218. NCCommunicationCommon.shared.writeLog("bye bye")
  219. }
  220. // MARK: -
  221. @objc func initializeMain() {
  222. if account == "" { return}
  223. NCCommunicationCommon.shared.writeLog("initialize Main")
  224. // Clear error certificate
  225. CCUtility.setCertificateError(account, error: false)
  226. // Registeration push notification
  227. NCPushNotification.shared().pushNotification()
  228. // Setting Theming
  229. NCBrandColor.shared.settingThemingColor(account: account)
  230. // Start Auto Upload
  231. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  232. // Start services
  233. NCService.shared.startRequestServicesServer()
  234. // close detail
  235. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  236. // Registeration domain File Provider
  237. //FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  238. //[fileProviderDomain removeAllDomains];
  239. //[fileProviderDomain registerDomains];
  240. }
  241. // MARK: - Background Task
  242. @available(iOS 13.0, *)
  243. func scheduleAppRefresh() {
  244. let request = BGAppRefreshTaskRequest.init(identifier: NCGlobal.shared.refreshTask)
  245. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  246. do {
  247. try BGTaskScheduler.shared.submit(request)
  248. NCCommunicationCommon.shared.writeLog("Refresh task success submit request \(request)")
  249. } catch {
  250. NCCommunicationCommon.shared.writeLog("Refresh task failed to submit request: \(error)")
  251. }
  252. }
  253. @available(iOS 13.0, *)
  254. func scheduleBackgroundProcessing() {
  255. let request = BGProcessingTaskRequest.init(identifier: NCGlobal.shared.processingTask)
  256. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  257. request.requiresNetworkConnectivity = true
  258. request.requiresExternalPower = false
  259. do {
  260. try BGTaskScheduler.shared.submit(request)
  261. NCCommunicationCommon.shared.writeLog("Background Processing task success submit request \(request)")
  262. } catch {
  263. NCCommunicationCommon.shared.writeLog("Background Processing task failed to submit request: \(error)")
  264. }
  265. }
  266. @available(iOS 13.0, *)
  267. func handleRefreshTask(_ task: BGTask) {
  268. if account == "" {
  269. task.setTaskCompleted(success: true)
  270. return
  271. }
  272. NCCommunicationCommon.shared.writeLog("Start handler refresh task [Auto upload]")
  273. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  274. DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
  275. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  276. NCCommunicationCommon.shared.writeLog("Completition handler refresh task with %lu uploads [Auto upload]")
  277. task.setTaskCompleted(success: true)
  278. }
  279. }
  280. }
  281. @available(iOS 13.0, *)
  282. func handleProcessingTask(_ task: BGTask) {
  283. if account == "" {
  284. task.setTaskCompleted(success: true)
  285. return
  286. }
  287. NCCommunicationCommon.shared.writeLog("Start handler processing task [Synchronize Favorite & Offline]")
  288. NCNetworking.shared.listingFavoritescompletion(selector: NCGlobal.shared.selectorReadFile) { (account, metadatas, errorCode, errorDescription) in
  289. NCCommunicationCommon.shared.writeLog("Completition listing favorite with error: \(errorCode)")
  290. }
  291. NCService.shared.synchronizeOffline(account: account)
  292. DispatchQueue.main.asyncAfter(deadline: .now() + 25) {
  293. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  294. NCCommunicationCommon.shared.writeLog("Completition handler processing task [Synchronize Favorite & Offline]")
  295. task.setTaskCompleted(success: true)
  296. }
  297. }
  298. // MARK: - Fetch
  299. func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  300. if account == "" {
  301. completionHandler(UIBackgroundFetchResult.noData)
  302. return
  303. }
  304. NCCommunicationCommon.shared.writeLog("Start perform Fetch [Auto upload]")
  305. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  306. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  307. NCCommunicationCommon.shared.writeLog("Completition perform Fetch with \(items) uploads [Auto upload]")
  308. if items == 0 {
  309. completionHandler(UIBackgroundFetchResult.noData)
  310. } else {
  311. completionHandler(UIBackgroundFetchResult.newData)
  312. }
  313. }
  314. }
  315. // MARK: - Background Networking Session
  316. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  317. NCCommunicationCommon.shared.writeLog("Start handle Events For Background URLSession: \(identifier)")
  318. backgroundSessionCompletionHandler = completionHandler
  319. }
  320. // MARK: - Push Notifications
  321. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  322. completionHandler(UNNotificationPresentationOptions.alert)
  323. }
  324. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  325. completionHandler()
  326. }
  327. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  328. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  329. }
  330. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  331. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { (result) in
  332. completionHandler(result)
  333. }
  334. }
  335. // MARK: - Login & checkErrorNetworking
  336. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  337. // use appConfig [MDM]
  338. if NCBrandOptions.shared.use_configuration {
  339. if activeAppConfigView?.view.window == nil {
  340. activeAppConfigView = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCAppConfigView") as? NCAppConfigView
  341. showLoginViewController(activeAppConfigView, contextViewController: viewController)
  342. }
  343. return
  344. }
  345. // only for personalized LoginWeb [customer]
  346. if NCBrandOptions.shared.use_login_web_personalized {
  347. if activeLoginWeb?.view.window == nil {
  348. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  349. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  350. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  351. }
  352. return
  353. }
  354. // Nextcloud standard login
  355. if selector == NCGlobal.shared.introSignup {
  356. if activeLoginWeb?.view.window == nil {
  357. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  358. if selector == NCGlobal.shared.introSignup {
  359. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  360. } else {
  361. activeLoginWeb?.urlBase = self.urlBase
  362. }
  363. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  364. }
  365. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  366. if activeLoginWeb?.view.window == nil {
  367. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  368. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  369. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  370. }
  371. } else if openLoginWeb {
  372. if activeLoginWeb?.view.window == nil {
  373. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  374. activeLoginWeb?.urlBase = urlBase
  375. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  376. }
  377. } else {
  378. if activeLogin?.view.window == nil {
  379. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  380. showLoginViewController(activeLogin, contextViewController: viewController)
  381. }
  382. }
  383. }
  384. func showLoginViewController(_ viewController:UIViewController?, contextViewController: UIViewController?) {
  385. if contextViewController == nil {
  386. if let viewController = viewController {
  387. let navigationController = UINavigationController.init(rootViewController: viewController)
  388. navigationController.navigationBar.barStyle = .black
  389. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  390. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  391. navigationController.navigationBar.isTranslucent = false
  392. window?.rootViewController = navigationController
  393. window?.makeKeyAndVisible()
  394. }
  395. } else if contextViewController is UINavigationController {
  396. if let contextViewController = contextViewController, let viewController = viewController {
  397. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  398. }
  399. } else {
  400. if let viewController = viewController, let contextViewController = contextViewController {
  401. let navigationController = UINavigationController.init(rootViewController: viewController)
  402. navigationController.modalPresentationStyle = .fullScreen
  403. navigationController.navigationBar.barStyle = .black
  404. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  405. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  406. navigationController.navigationBar.isTranslucent = false
  407. contextViewController.present(navigationController, animated: true) { }
  408. }
  409. }
  410. }
  411. @objc func startTimerErrorNetworking() {
  412. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  413. }
  414. @objc private func checkErrorNetworking() {
  415. if account == "" { return }
  416. // check unauthorized server (401)
  417. if CCUtility.getPassword(account)!.count == 0 {
  418. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  419. }
  420. // check certificate untrusted (-1202)
  421. if CCUtility.getCertificateError(account) {
  422. let alertController = UIAlertController(title: NSLocalizedString("_ssl_certificate_untrusted_", comment: ""), message: NSLocalizedString("_connect_server_anyway_", comment: ""), preferredStyle: .alert)
  423. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  424. NCNetworking.shared.writeCertificate(directoryCertificate: CCUtility.getDirectoryCerificates())
  425. self.startTimerErrorNetworking()
  426. }))
  427. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in
  428. self.startTimerErrorNetworking()
  429. }))
  430. window?.rootViewController?.present(alertController, animated: true, completion: {
  431. self.timerErrorNetworking?.invalidate()
  432. })
  433. }
  434. }
  435. // MARK: - Account
  436. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  437. self.account = account
  438. self.urlBase = urlBase
  439. self.user = user
  440. self.userId = userId
  441. self.password = password
  442. _ = NCNetworkingNotificationCenter.shared
  443. NCCommunicationCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  444. NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
  445. NCCommunicationCommon.shared.setup(dav: NCUtilityFileSystem.shared.getDAV())
  446. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  447. if serverVersionMajor > 0 {
  448. NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  449. }
  450. }
  451. @objc func deleteAccount(_ account: String, wipe: Bool) {
  452. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  453. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  454. }
  455. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  456. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  457. for result in results {
  458. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  459. }
  460. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  461. CCUtility.clearAllKeysEnd(toEnd: account)
  462. CCUtility.clearAllKeysPushNotification(account)
  463. CCUtility.setCertificateError(account, error: false)
  464. CCUtility.setPassword(account, password: nil)
  465. if wipe {
  466. let accounts = NCManageDatabase.shared.getAccounts()
  467. if accounts?.count ?? 0 > 0 {
  468. if let newAccount = accounts?.first {
  469. if let account = NCManageDatabase.shared.setAccountActive(newAccount) {
  470. settingAccount(account.account, urlBase: account.urlBase, user: account.user, userId: account.userId, password: CCUtility.getPassword(account.account))
  471. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  472. }
  473. }
  474. } else {
  475. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  476. }
  477. }
  478. }
  479. // MARK: - Account Request
  480. func requestAccount(startTimer: Bool) {
  481. let accounts = NCManageDatabase.shared.getAllAccount()
  482. if CCUtility.getAccountRequest() && accounts.count > 1 {
  483. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  484. vcAccountRequest.accounts = accounts
  485. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: 310)
  486. popup.backgroundAlpha = 0.8
  487. if CCUtility.getDarkMode() {
  488. popup.borderEnabled = true
  489. }
  490. UIApplication.shared.keyWindow?.rootViewController?.present(popup, animated: true)
  491. if startTimer {
  492. vcAccountRequest.startTimer()
  493. }
  494. }
  495. }
  496. }
  497. // MARK: - Passcode
  498. func passcodeWithAutomaticallyPromptForBiometricValidation(_ automaticallyPromptForBiometricValidation: Bool) {
  499. let laContext = LAContext()
  500. var error: NSError?
  501. if account == "" { return }
  502. guard let passcode = CCUtility.getPasscode() else {
  503. requestAccount(startTimer: false)
  504. return
  505. }
  506. if passcode.count == 0 || CCUtility.getNotPasscodeAtStart() {
  507. requestAccount(startTimer: false)
  508. return
  509. }
  510. if passcodeViewController == nil {
  511. passcodeViewController = TOPasscodeViewController.init(style: .translucentLight, passcodeType: .sixDigits)
  512. if #available(iOS 13.0, *) {
  513. if UITraitCollection.current.userInterfaceStyle == .dark {
  514. passcodeViewController?.style = .translucentDark
  515. }
  516. }
  517. passcodeViewController?.delegate = self
  518. passcodeViewController?.keypadButtonShowLettering = false
  519. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  520. if error == nil {
  521. if laContext.biometryType == .faceID {
  522. passcodeViewController?.biometryType = .faceID
  523. passcodeViewController?.allowBiometricValidation = true
  524. } else if laContext.biometryType == .touchID {
  525. passcodeViewController?.biometryType = .touchID
  526. passcodeViewController?.allowBiometricValidation = true
  527. }
  528. }
  529. }
  530. if let passcodeViewController = self.passcodeViewController {
  531. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  532. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  533. })
  534. }
  535. } else {
  536. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  537. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  538. }
  539. }
  540. }
  541. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  542. passcodeViewController.dismiss(animated: true) {
  543. self.passcodeViewController = nil
  544. self.requestAccount(startTimer: true)
  545. }
  546. }
  547. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  548. return code == CCUtility.getPasscode()
  549. }
  550. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  551. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  552. if success {
  553. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  554. passcodeViewController.dismiss(animated: true) {
  555. self.passcodeViewController = nil
  556. self.requestAccount(startTimer: true)
  557. }
  558. }
  559. }
  560. }
  561. }
  562. func enableTouchFaceID(_ automaticallyPromptForBiometricValidation: Bool) {
  563. if CCUtility.getEnableTouchFaceID() && automaticallyPromptForBiometricValidation && passcodeViewController?.view.window != nil {
  564. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  565. if success {
  566. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  567. self.passcodeViewController?.dismiss(animated: true) {
  568. self.passcodeViewController = nil
  569. self.requestAccount(startTimer: true)
  570. }
  571. }
  572. }
  573. }
  574. }
  575. }
  576. // MARK: - Open URL
  577. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
  578. if account == "" { return false }
  579. let scheme = url.scheme
  580. let action = url.host
  581. var fileName: String = ""
  582. var serverUrl: String = ""
  583. var matchedAccount: tableAccount?
  584. if scheme == "nextcloud" && action == "open-file" {
  585. if let urlComponents = URLComponents.init(url: url, resolvingAgainstBaseURL: false) {
  586. let queryItems = urlComponents.queryItems
  587. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  588. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  589. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  590. if let account = NCManageDatabase.shared.getAccountActive() {
  591. let urlBase = URL(string: account.urlBase)
  592. let user = account.user
  593. if linkScheme.contains(urlBase?.host ?? "") && userScheme == user {
  594. matchedAccount = account
  595. } else {
  596. let accounts = NCManageDatabase.shared.getAllAccount()
  597. for account in accounts {
  598. guard let accountURL = URL(string: account.urlBase) else { return false }
  599. if linkScheme.contains(accountURL.host ?? "") && userScheme == account.user {
  600. NCManageDatabase.shared.setAccountActive(account.account)
  601. settingAccount(account.account, urlBase: account.urlBase, user: account.user, userId: account.userId, password: CCUtility.getPassword(account.account))
  602. matchedAccount = account
  603. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  604. break
  605. }
  606. }
  607. }
  608. if matchedAccount != nil {
  609. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: account.account)
  610. if pathScheme.contains("/") {
  611. fileName = (pathScheme as NSString).lastPathComponent
  612. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (pathScheme as NSString).deletingLastPathComponent
  613. } else {
  614. fileName = pathScheme
  615. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  616. }
  617. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  618. NCCollectionCommon.shared.openFileViewInFolder(serverUrl: serverUrl, fileName: fileName)
  619. }
  620. } else {
  621. guard let domain = URL(string: linkScheme)?.host else { return true }
  622. fileName = (pathScheme as NSString).lastPathComponent
  623. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  624. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  625. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  626. window?.rootViewController?.present(alertController, animated: true, completion: { })
  627. return false
  628. }
  629. }
  630. }
  631. }
  632. return true
  633. }
  634. }
  635. // MARK: - NCAudioRecorder ViewController Delegate
  636. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  637. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  638. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() else { return }
  639. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  640. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  641. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadVoiceNote
  642. viewController.setup(serverUrl: appDelegate.activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  643. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  644. }
  645. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  646. }
  647. }