mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-04 22:04:59 +00:00
47 lines
1.4 KiB
Swift
47 lines
1.4 KiB
Swift
//
|
|
// OnboardingStep1ViewController.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SafariServices
|
|
import KeychainSwift
|
|
|
|
class OnboardingStep1ViewController: UIViewController {
|
|
|
|
let keychain = KeychainSwift()
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
|
|
switch UIApplication.shared.isProtectedDataAvailable {
|
|
case true :
|
|
checkToken()
|
|
break
|
|
case false:
|
|
NotificationCenter.default.addObserver(self, selector: #selector(setKeychainAvailable(_:)), name: UIApplication.protectedDataDidBecomeAvailableNotification, object: nil)
|
|
break
|
|
}
|
|
}
|
|
|
|
@objc
|
|
func setKeychainAvailable(_ notification: Notification) {
|
|
NotificationCenter.default.removeObserver(self, name: UIApplication.protectedDataDidBecomeAvailableNotification, object: nil)
|
|
checkToken()
|
|
}
|
|
|
|
func checkToken() {
|
|
let isLoggedIn: Bool = (keychain.get("JWT_TOKEN") != nil)
|
|
|
|
if isLoggedIn {
|
|
DispatchQueue.main.async {
|
|
let homeVC = HomeViewController(nibName: "HomeView", bundle: nil)
|
|
homeVC.modalPresentationStyle = .overFullScreen
|
|
homeVC.modalTransitionStyle = .coverVertical
|
|
self.present(homeVC, animated: true, completion: nil)
|
|
}
|
|
}
|
|
}
|
|
}
|