123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- //
- // NCAppConfigView.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 18/09/2019.
- // Copyright © 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- import NCCommunication
- class NCAppConfigView: UIViewController {
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- private var serverUrl: String?
- private var username: String?
- private var password: String?
-
- @IBOutlet weak var logoImage: UIImageView!
- @IBOutlet weak var titleLabel: UILabel!
-
- // MARK: - View Life Cycle
- override func viewDidLoad() {
- super.viewDidLoad()
-
- self.view.backgroundColor = NCBrandColor.shared.brandElement
- titleLabel.textColor = NCBrandColor.shared.brandText
-
- titleLabel.text = NSLocalizedString("_appconfig_view_title_", comment: "")
-
- if let serverConfig = UserDefaults.standard.dictionary(forKey: NCBrandConfiguration.shared.configuration_bundleId) {
- serverUrl = serverConfig[NCBrandConfiguration.shared.configuration_serverUrl] as? String
- username = serverConfig[NCBrandConfiguration.shared.configuration_username] as? String
- password = serverConfig[NCBrandConfiguration.shared.configuration_password] as? String
- } else {
- serverUrl = UserDefaults.standard.string(forKey: NCBrandConfiguration.shared.configuration_serverUrl)
- username = UserDefaults.standard.string(forKey: NCBrandConfiguration.shared.configuration_username)
- password = UserDefaults.standard.string(forKey: NCBrandConfiguration.shared.configuration_password)
- }
- }
-
- override func viewDidAppear(_ animated: Bool) {
- super.viewDidAppear(animated)
-
- // Stop timer error network
- appDelegate.timerErrorNetworking?.invalidate()
-
- guard let serverUrl = self.serverUrl else {
- NCContentPresenter.shared.messageNotification("_error_", description: "User Default, serverUrl not found", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorInternalError, forced: true)
- return
- }
- guard let username = self.username else {
- NCContentPresenter.shared.messageNotification("_error_", description: "User Default, username not found", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorInternalError, forced: true)
- return
- }
- guard let password = self.password else {
- NCContentPresenter.shared.messageNotification("_error_", description: "User Default, password not found", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorInternalError, forced: true)
- return
- }
-
- NCCommunication.shared.getAppPassword(serverUrl: serverUrl, username: username, password: password, userAgent: nil) { (token, errorCode, errorDescription) in
- DispatchQueue.main.async {
- if errorCode == 0 && token != nil {
- let account: String = "\(username) \(serverUrl)"
-
- // NO account found, clear
- if NCManageDatabase.shared.getAccounts() == nil { NCUtility.shared.removeAllSettings() }
-
- // Add new account
- NCManageDatabase.shared.deleteAccount(account)
- NCManageDatabase.shared.addAccount(account, urlBase: serverUrl, user: username, password: token!)
-
- guard let tableAccount = NCManageDatabase.shared.setAccountActive(account) else {
- NCContentPresenter.shared.messageNotification("_error_", description: "setAccountActive error", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorInternalError, forced: true)
- self.dismiss(animated: true, completion: nil)
- return
- }
-
- self.appDelegate.settingAccount(account, urlBase: serverUrl, user: username, userId: tableAccount.userId, password: token!)
- NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
-
- self.dismiss(animated: true) {}
- } else {
- NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
- }
-
- override func viewDidDisappear(_ animated: Bool) {
- super.viewDidDisappear(animated)
-
- // Start timer error network
- appDelegate.startTimerErrorNetworking()
- }
- }
|