AppDelegate.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  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: CCLogin?
  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. var activeViewController: UIViewController?
  53. var activeViewerVideo: NCViewerVideo?
  54. struct progressType {
  55. var progress: Float
  56. var totalBytes: Int64
  57. var totalBytesExpected: Int64
  58. }
  59. var listFilesVC: [String:NCFiles] = [:]
  60. var listFavoriteVC: [String:NCFavorite] = [:]
  61. var listOfflineVC: [String:NCOffline] = [:]
  62. var listProgress: [String:progressType] = [:]
  63. var disableSharesView: Bool = false
  64. var documentPickerViewController: NCDocumentPickerViewController?
  65. var networkingAutoUpload: NCNetworkingAutoUpload?
  66. var passcodeViewController: TOPasscodeViewController?
  67. var pasteboardOcIds: [String] = []
  68. var shares: [tableShare] = []
  69. //var ncUserDefaults: UserDefaults?
  70. @objc var timerErrorNetworking: Timer?
  71. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  72. let userAgent = CCUtility.getUserAgent() as String
  73. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  74. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  75. UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
  76. //ncUserDefaults = UserDefaults(suiteName: NCBrandOptions.shared.capabilitiesGroups)
  77. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  78. FirebaseApp.configure()
  79. }
  80. CCUtility.createDirectoryStandard()
  81. CCUtility.emptyTemporaryDirectory()
  82. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  83. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  84. startTimerErrorNetworking()
  85. // LOG
  86. let levelLog = CCUtility.getLogLevel()
  87. NCCommunicationCommon.shared.levelLog = levelLog
  88. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  89. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  90. }
  91. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  92. if isSimulatorOrTestFlight {
  93. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  94. } else {
  95. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  96. }
  97. if let tableAccount = NCManageDatabase.shared.getAccountActive() {
  98. // FIX 3.0.5 lost urlbase
  99. if tableAccount.urlBase.count == 0 {
  100. let user = tableAccount.user + " "
  101. let urlBase = tableAccount.account.replacingOccurrences(of: user, with: "")
  102. tableAccount.urlBase = urlBase
  103. NCManageDatabase.shared.updateAccount(tableAccount)
  104. }
  105. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userID: tableAccount.userID, password: CCUtility.getPassword(tableAccount.account))
  106. } else {
  107. CCUtility.deleteAllChainStore()
  108. if let bundleID = Bundle.main.bundleIdentifier {
  109. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  110. }
  111. }
  112. // Push Notification
  113. application.registerForRemoteNotifications()
  114. UNUserNotificationCenter.current().delegate = self
  115. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (_, _) in }
  116. // AV
  117. do {
  118. try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
  119. try AVAudioSession.sharedInstance().setActive(true)
  120. } catch {
  121. print(error)
  122. }
  123. application.beginReceivingRemoteControlEvents()
  124. // Store review
  125. if !NCUtility.shared.isSimulatorOrTestFlight() {
  126. let review = NCStoreReview()
  127. review.incrementAppRuns()
  128. review.showStoreReview()
  129. }
  130. // Detect Dark mode
  131. if #available(iOS 13.0, *) {
  132. if CCUtility.getDarkModeDetect() {
  133. if UITraitCollection.current.userInterfaceStyle == .dark {
  134. CCUtility.setDarkMode(true)
  135. } else {
  136. CCUtility.setDarkMode(false)
  137. }
  138. }
  139. }
  140. if NCBrandOptions.shared.disable_intro {
  141. CCUtility.setIntro(true)
  142. if account == "" {
  143. openLogin(viewController: nil, selector: NCBrandGlobal.shared.introLogin, openLoginWeb: false)
  144. }
  145. } else {
  146. if !CCUtility.getIntro() {
  147. if let introViewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  148. let navController = UINavigationController(rootViewController: introViewController)
  149. window?.rootViewController = navController
  150. window?.makeKeyAndVisible()
  151. }
  152. }
  153. }
  154. // init home
  155. NotificationCenter.default.addObserver(self, selector: #selector(initializeMain(notification:)), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterInitializeMain), object: nil)
  156. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterInitializeMain)
  157. // Passcode
  158. DispatchQueue.global().async {
  159. self.passcodeWithAutomaticallyPromptForBiometricValidation(true)
  160. }
  161. // Auto upload
  162. networkingAutoUpload = NCNetworkingAutoUpload.init()
  163. // Background task: register
  164. if #available(iOS 13.0, *) {
  165. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCBrandGlobal.shared.refreshTask, using: nil) { task in
  166. self.handleRefreshTask(task)
  167. }
  168. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCBrandGlobal.shared.processingTask, using: nil) { task in
  169. self.handleProcessingTask(task)
  170. }
  171. } else {
  172. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  173. }
  174. return true
  175. }
  176. // L' applicazione entrerà in primo piano (attivo sempre)
  177. func applicationDidBecomeActive(_ application: UIApplication) {
  178. NCSettingsBundleHelper.setVersionAndBuildNumber()
  179. if account == "" { return}
  180. NCNetworking.shared.verifyUploadZombie()
  181. }
  182. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  183. func applicationWillEnterForeground(_ application: UIApplication) {
  184. if account == "" { return}
  185. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  186. // Request Passcode
  187. passcodeWithAutomaticallyPromptForBiometricValidation(true)
  188. // Initialize Auto upload
  189. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  190. // Required unsubscribing / subscribing
  191. NCPushNotification.shared().pushNotification()
  192. // Request Service Server Nextcloud
  193. NCService.shared.startRequestServicesServer()
  194. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterApplicationWillEnterForeground)
  195. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterRichdocumentGrabFocus)
  196. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  197. }
  198. // L' applicazione si dimetterà dallo stato di attivo
  199. func applicationWillResignActive(_ application: UIApplication) {
  200. if account == "" { return}
  201. // Dismiss FileViewInFolder
  202. if activeFileViewInFolder != nil {
  203. activeFileViewInFolder?.dismiss(animated: false, completion: {
  204. self.activeFileViewInFolder = nil
  205. })
  206. }
  207. }
  208. // L' applicazione è entrata nello sfondo
  209. func applicationDidEnterBackground(_ application: UIApplication) {
  210. if account == "" { return}
  211. NCCommunicationCommon.shared.writeLog("Application did enter in background")
  212. passcodeWithAutomaticallyPromptForBiometricValidation(false)
  213. if #available(iOS 13.0, *) {
  214. scheduleAppRefresh()
  215. scheduleBackgroundProcessing()
  216. }
  217. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterApplicationDidEnterBackground)
  218. }
  219. // L'applicazione terminerà
  220. func applicationWillTerminate(_ application: UIApplication) {
  221. NCCommunicationCommon.shared.writeLog("bye bye")
  222. }
  223. // MARK: -
  224. @objc func initializeMain(notification: NSNotification) {
  225. if account == "" { return}
  226. NCCommunicationCommon.shared.writeLog("initialize Main")
  227. // Clear error certificate
  228. CCUtility.setCertificateError(account, error: false)
  229. // Registeration push notification
  230. NCPushNotification.shared().pushNotification()
  231. // Setting Theming
  232. NCBrandColor.shared.settingThemingColor(account: account)
  233. // Start Auto Upload
  234. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  235. // Start services
  236. NCService.shared.startRequestServicesServer()
  237. // close detail
  238. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterMenuDetailClose)
  239. // Registeration domain File Provider
  240. //FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  241. //[fileProviderDomain removeAllDomains];
  242. //[fileProviderDomain registerDomains];
  243. }
  244. // MARK: - Background Task
  245. @available(iOS 13.0, *)
  246. func scheduleAppRefresh() {
  247. let request = BGAppRefreshTaskRequest.init(identifier: NCBrandGlobal.shared.refreshTask)
  248. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  249. do {
  250. try BGTaskScheduler.shared.submit(request)
  251. NCCommunicationCommon.shared.writeLog("Refresh task success submit request \(request)")
  252. } catch {
  253. NCCommunicationCommon.shared.writeLog("Refresh task failed to submit request: \(error)")
  254. }
  255. }
  256. @available(iOS 13.0, *)
  257. func scheduleBackgroundProcessing() {
  258. let request = BGProcessingTaskRequest.init(identifier: NCBrandGlobal.shared.processingTask)
  259. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  260. request.requiresNetworkConnectivity = true
  261. request.requiresExternalPower = false
  262. do {
  263. try BGTaskScheduler.shared.submit(request)
  264. NCCommunicationCommon.shared.writeLog("Background Processing task success submit request \(request)")
  265. } catch {
  266. NCCommunicationCommon.shared.writeLog("Background Processing task failed to submit request: \(error)")
  267. }
  268. }
  269. @available(iOS 13.0, *)
  270. func handleRefreshTask(_ task: BGTask) {
  271. if account == "" {
  272. task.setTaskCompleted(success: true)
  273. return
  274. }
  275. NCCommunicationCommon.shared.writeLog("Start handler refresh task [Auto upload]")
  276. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  277. DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
  278. NCCommunicationCommon.shared.writeLog("Completition handler refresh task with %lu uploads [Auto upload]")
  279. task.setTaskCompleted(success: true)
  280. }
  281. }
  282. }
  283. @available(iOS 13.0, *)
  284. func handleProcessingTask(_ task: BGTask) {
  285. if account == "" {
  286. task.setTaskCompleted(success: true)
  287. return
  288. }
  289. NCCommunicationCommon.shared.writeLog("Start handler processing task [Synchronize Favorite & Offline]")
  290. NCNetworking.shared.listingFavoritescompletion(selector: NCBrandGlobal.shared.selectorReadFile) { (account, metadatas, errorCode, errorDescription) in
  291. NCCommunicationCommon.shared.writeLog("Completition listing favorite with error: \(errorCode)")
  292. }
  293. NCService.shared.synchronizeOffline(account: account)
  294. DispatchQueue.main.asyncAfter(deadline: .now() + 25) {
  295. NCCommunicationCommon.shared.writeLog("Completition handler processing task [Synchronize Favorite & Offline]")
  296. task.setTaskCompleted(success: true)
  297. }
  298. }
  299. // MARK: - Fetch
  300. func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  301. if account == "" {
  302. completionHandler(UIBackgroundFetchResult.noData)
  303. return
  304. }
  305. NCCommunicationCommon.shared.writeLog("Start perform Fetch [Auto upload]")
  306. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  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?.isViewLoaded ?? false) && activeAppConfigView?.view.window == nil {
  340. activeAppConfigView = UIStoryboard(name: "CCLogin", 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?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  348. activeLoginWeb = UIStoryboard(name: "CCLogin", 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 == NCBrandGlobal.shared.introSignup {
  356. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  357. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  358. if selector == NCBrandGlobal.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?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  367. activeLoginWeb = UIStoryboard(name: "CCLogin", 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?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  373. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  374. activeLoginWeb?.urlBase = urlBase
  375. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  376. }
  377. } else {
  378. if !(activeLogin?.isViewLoaded ?? false) && activeLogin?.view.window == nil {
  379. activeLogin = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "CCLoginNextcloud") as? CCLogin
  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 func checkErrorNetworking() {
  415. if account == "" { return }
  416. // check unauthorized server (401)
  417. if CCUtility.getPasscode()?.count == 0 {
  418. openLogin(viewController: window?.rootViewController, selector: NCBrandGlobal.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 & Communication
  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. // Push Notification
  453. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  454. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  455. }
  456. settingAccount("", urlBase: "", user: "", userID: "", password: "")
  457. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  458. for result in results {
  459. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  460. }
  461. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  462. CCUtility.clearAllKeysEnd(toEnd: account)
  463. CCUtility.clearAllKeysPushNotification(account)
  464. CCUtility.setCertificateError(account, error: false)
  465. CCUtility.setPassword(account, password: nil)
  466. if wipe {
  467. let accounts = NCManageDatabase.shared.getAccounts()
  468. if accounts?.count ?? 0 > 0 {
  469. if let newAccount = accounts?.first {
  470. if let account = NCManageDatabase.shared.setAccountActive(newAccount) {
  471. settingAccount(account.account, urlBase: account.urlBase, user: account.user, userID: account.userID, password: CCUtility.getPassword(account.account))
  472. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterInitializeMain)
  473. }
  474. }
  475. } else {
  476. openLogin(viewController: window?.rootViewController, selector: NCBrandGlobal.shared.introLogin, openLoginWeb: false)
  477. }
  478. }
  479. }
  480. // MARK: - TOPasscodeViewController
  481. func passcodeWithAutomaticallyPromptForBiometricValidation(_ automaticallyPromptForBiometricValidation: Bool) {
  482. let laContext = LAContext()
  483. var error: NSError?
  484. if CCUtility.getPasscode()?.count == 0 || account == "" || CCUtility.getNotPasscodeAtStart() { return }
  485. if passcodeViewController == nil {
  486. passcodeViewController = TOPasscodeViewController.init(style: .translucentLight, passcodeType: .sixDigits)
  487. if #available(iOS 13.0, *) {
  488. if UITraitCollection.current.userInterfaceStyle == .dark {
  489. passcodeViewController?.style = .translucentDark
  490. }
  491. }
  492. passcodeViewController?.delegate = self
  493. passcodeViewController?.keypadButtonShowLettering = false
  494. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  495. if error == nil {
  496. if laContext.biometryType == .faceID {
  497. passcodeViewController?.biometryType = .faceID
  498. passcodeViewController?.allowBiometricValidation = true
  499. } else if laContext.biometryType == .touchID {
  500. passcodeViewController?.biometryType = .touchID
  501. passcodeViewController?.allowBiometricValidation = true
  502. }
  503. }
  504. }
  505. if let passcodeViewController = self.passcodeViewController {
  506. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  507. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  508. })
  509. }
  510. } else {
  511. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  512. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  513. }
  514. }
  515. }
  516. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  517. passcodeViewController.dismiss(animated: true) {
  518. self.passcodeViewController = nil
  519. }
  520. }
  521. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  522. return code == CCUtility.getPasscode()
  523. }
  524. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  525. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  526. if success {
  527. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  528. passcodeViewController.dismiss(animated: true) {
  529. self.passcodeViewController = nil
  530. }
  531. }
  532. }
  533. }
  534. }
  535. func enableTouchFaceID(_ automaticallyPromptForBiometricValidation: Bool) {
  536. if CCUtility.getEnableTouchFaceID() && automaticallyPromptForBiometricValidation && passcodeViewController?.view.window != nil {
  537. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  538. if success {
  539. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  540. self.passcodeViewController?.dismiss(animated: true) {
  541. self.passcodeViewController = nil
  542. }
  543. }
  544. }
  545. }
  546. }
  547. }
  548. // MARK: - OpenURL
  549. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
  550. if account == "" { return false }
  551. let scheme = url.scheme
  552. let action = url.host
  553. var fileName: String = ""
  554. var serverUrl: String = ""
  555. var matchedAccount: tableAccount?
  556. if scheme == "nextcloud" && action == "open-file" {
  557. if let urlComponents = URLComponents.init(url: url, resolvingAgainstBaseURL: false) {
  558. let queryItems = urlComponents.queryItems
  559. let user = CCUtility.value(forKey: "user", fromQueryItems: queryItems)
  560. let path = CCUtility.value(forKey: "path", fromQueryItems: queryItems)
  561. let link = CCUtility.value(forKey: "link", fromQueryItems: queryItems)
  562. if user?.count == 0 || path?.count == 0 || URL(string: link)?.host?.count == 0 {
  563. let alertController = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_error_parameter_schema_", comment: ""), preferredStyle: .alert)
  564. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  565. window?.rootViewController?.present(alertController, animated: true, completion: { })
  566. } else {
  567. if let account = NCManageDatabase.shared.getAccountActive() {
  568. let urlBase = URL(string: account.urlBase)
  569. let user = account.user
  570. if link?.contains(urlBase?.host ?? "") ?? false && self.user == user {
  571. matchedAccount = account
  572. } else {
  573. let accounts = NCManageDatabase.shared.getAllAccount()
  574. for account in accounts {
  575. guard let accountURL = URL(string: account.urlBase) else { return false }
  576. let accountUser = account.user
  577. if link?.contains(accountURL.host ?? "") ?? false && user == accountUser {
  578. matchedAccount = NCManageDatabase.shared.setAccountActive(accountUser)
  579. settingAccount(matchedAccount!.account, urlBase: matchedAccount!.urlBase, user: matchedAccount!.user, userID: matchedAccount!.userID, password: CCUtility.getPassword(matchedAccount!.account))
  580. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterInitializeMain)
  581. }
  582. }
  583. }
  584. if matchedAccount != nil {
  585. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: account.account)
  586. if path!.contains("/") {
  587. fileName = (path! as NSString).lastPathComponent
  588. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (path! as NSString).deletingLastPathComponent
  589. } else {
  590. fileName = path!
  591. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  592. }
  593. NCCollectionCommon.shared.openFileViewInFolder(serverUrl: serverUrl, fileName: fileName)
  594. } else {
  595. guard let domain = URL(string: link)?.host else { return true }
  596. fileName = (path! as NSString).lastPathComponent
  597. let message = String(format: "_account_not_available_", user, domain, fileName)
  598. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  599. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  600. window?.rootViewController?.present(alertController, animated: true, completion: { })
  601. }
  602. }
  603. }
  604. }
  605. }
  606. return true
  607. }
  608. }