123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- //
- // AppDelegate.swift
- //
- import UIKit
- import NCCommunication
- @UIApplicationMain
- class AppDelegate: UIResponder, UIApplicationDelegate {
- var window: UIWindow!
-
- var account: String = ""
- var urlBase: String = ""
- var user: String = ""
- var userID: String = ""
- var password: String = ""
-
- var activeServerUrl: String = ""
-
- var activeFavorite: NCFavorite?
- var activeFiles: NCFiles?
- var activeFileViewInFolder: NCFileViewInFolder?
- var activeLogin: CCLogin?
- var activeLoginWeb: NCLoginWeb?
- var activeMedia: NCMedia?
- var activeMore: NCMore?
- var activeOffline: NCOffline?
- var activeRecent: NCRecent?
- var activeShares: NCShares?
- var activeTransfers: NCTransfers?
- var activeTrash: NCTrash?
- var activeViewController: UIViewController?
- var activeViewerVideo: NCViewerVideo?
-
- var timerErrorNetworking: Timer?
- var documentPickerViewController: NCDocumentPickerViewController?
- var shares: [String] = []
-
- /*
- //@property (nonatomic) UIUserInterfaceStyle preferredUserInterfaceStyle API_AVAILABLE(ios(12.0));
- @property (nonatomic, strong) NSArray *shares;
- @property BOOL disableSharesView;
- @property (nonatomic, strong) NSUserDefaults *ncUserDefaults;
- @property (nonatomic, strong) NCNetworkingAutoUpload *networkingAutoUpload;
- @property (nonatomic, retain) TOPasscodeViewController *passcodeViewController;
- @property (nonatomic, strong) NSMutableArray *pasteboardOcIds;
- */
-
- func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
- // Override point for customization after application launch.
- return true
- }
- func applicationWillResignActive(_ application: UIApplication) {
- // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
- // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
- }
- func applicationDidEnterBackground(_ application: UIApplication) {
- // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
- // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
- }
- func applicationWillEnterForeground(_ application: UIApplication) {
- // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
- }
- func applicationDidBecomeActive(_ application: UIApplication) {
- // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
- }
- func applicationWillTerminate(_ application: UIApplication) {
- // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
- }
-
- // MARK: -
- @objc func checkErrorNetworking() {
-
- }
- func startTimerErrorNetworking() {
- timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
- }
-
- // MARK: -
-
- func settingAccount(_ account: String, urlBase: String, user: String, userID: String, password: String) {
-
- self.account = account
- self.urlBase = urlBase
- self.user = user
- self.userID = userID
- self.password = password
-
- _ = NCNetworkingNotificationCenter.shared
-
- NCCommunicationCommon.shared.setup(account: account, user: user, userId: userID, password: password, urlBase: urlBase)
- NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
- NCCommunicationCommon.shared.setup(dav: NCUtilityFileSystem.shared.getDAV())
- let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
- if serverVersionMajor > 0 {
- NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
- }
- }
- }
|