| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- //
- // Copyright 2021 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- // MARK: This file is used to evaluate the experience of using Firebase APIs in Swift.
- import Foundation
- import AppCheckCore
- import FirebaseCore
- final class AppCheckAPITests {
- func usage() {
- let app = FirebaseApp.app()!
- let projectID = app.options.projectID!
- let resourceName = "projects/\(projectID)/\(app.options.googleAppID)"
- // MARK: - AppAttestProvider
- #if TARGET_OS_IOS
- if #available(iOS 14.0, *) {
- // TODO(andrewheard): Add `requestHooks` in API tests.
- if let provider = AppCheckCoreAppAttestProvider(
- storageID: app.name,
- resourceName: resourceName,
- apiKey: app.options.apiKey,
- keychainAccessGroup: nil,
- requestHooks: nil
- ) {
- provider.getToken { token, error in
- // ...
- }
- }
- }
- #endif // TARGET_OS_IOS
- // MARK: - AppCheck
- guard let app = FirebaseApp.app() else { return }
- // Retrieving an AppCheck instance
- let appCheck = AppCheckCore(
- serviceName: app.name,
- resourceName: resourceName,
- appCheckProvider: DummyAppCheckProvider(),
- settings: DummyAppCheckSettings(),
- tokenDelegate: DummyAppCheckTokenDelegate(),
- keychainAccessGroup: app.options.appGroupID
- )
- // Get token
- appCheck.token(forcingRefresh: false) { token, error in
- if let _ /* error */ = error {
- // ...
- } else if let _ /* token */ = token {
- // ...
- }
- }
- // Get token (async/await)
- if #available(iOS 13.0, macOS 10.15, macCatalyst 13.0, tvOS 13.0, watchOS 7.0, *) {
- // async/await is only available on iOS 13+
- Task {
- do {
- try await appCheck.token(forcingRefresh: false)
- } catch {
- // ...
- }
- }
- }
- // MARK: - `AppCheckDebugProvider`
- // `AppCheckDebugProvider` initializer
- // TODO(andrewheard): Add `requestHooks` in API tests.
- let debugProvider = AppCheckCoreDebugProvider(
- serviceName: app.name,
- resourceName: resourceName,
- apiKey: app.options.apiKey,
- requestHooks: nil
- )
- // Get token
- debugProvider.getToken { token, error in
- if let _ /* error */ = error {
- // ...
- } else if let _ /* token */ = token {
- // ...
- }
- }
- // Get token (async/await)
- if #available(iOS 13.0, macOS 10.15, macCatalyst 13.0, tvOS 13.0, watchOS 7.0, *) {
- // async/await is only available on iOS 13+
- Task {
- do {
- _ = try await debugProvider.getToken()
- } catch {
- // ...
- }
- }
- }
- _ = debugProvider.localDebugToken()
- _ = debugProvider.currentDebugToken()
- // MARK: - AppCheckToken
- let token = AppCheckCoreToken(token: "token", expirationDate: Date.distantFuture)
- _ = token.token
- _ = token.expirationDate
- // MARK: - AppCheckErrors
- appCheck.token(forcingRefresh: false) { _, error in
- if let error = error {
- switch error {
- case AppCheckCoreErrorCode.unknown:
- break
- case AppCheckCoreErrorCode.serverUnreachable:
- break
- case AppCheckCoreErrorCode.invalidConfiguration:
- break
- case AppCheckCoreErrorCode.keychain:
- break
- case AppCheckCoreErrorCode.unsupported:
- break
- default:
- break
- }
- }
- // ...
- }
- // MARK: - AppCheckProvider
- // A protocol implemented by:
- // - `AppAttestDebugProvider`
- // - `AppCheckDebugProvider`
- // - `DeviceCheckProvider`
- // MARK: - DeviceCheckProvider
- // `DeviceCheckProvider` initializer
- #if !os(watchOS)
- if #available(iOS 11.0, macOS 10.15, macCatalyst 13.0, tvOS 11.0, *) {
- // TODO(andrewheard): Add `requestHooks` in API tests.
- let deviceCheckProvider = AppCheckCoreDeviceCheckProvider(
- serviceName: app.name,
- resourceName: resourceName,
- apiKey: app.options.apiKey,
- requestHooks: nil
- )
- // Get token
- deviceCheckProvider.getToken { token, error in
- if let _ /* error */ = error {
- // ...
- } else if let _ /* token */ = token {
- // ...
- }
- }
- // Get token (async/await)
- if #available(iOS 13.0, tvOS 13.0, *) {
- // async/await is only available on iOS 13+
- Task {
- do {
- _ = try await deviceCheckProvider.getToken()
- } catch AppCheckCoreErrorCode.unsupported {
- // ...
- } catch {
- // ...
- }
- }
- }
- }
- #endif // !os(watchOS)
- // MARK: - AppCheckCoreLogger
- // Set the log level for App Check Core
- AppCheckCoreLogger.logLevel = .debug
- }
- }
- class DummyAppCheckProvider: NSObject, AppCheckCoreProvider {
- func getToken(completion handler: @escaping (AppCheckCoreToken?, Error?) -> Void) {
- handler(AppCheckCoreToken(token: "token", expirationDate: .distantFuture), nil)
- }
- }
- class DummyAppCheckSettings: NSObject, AppCheckCoreSettingsProtocol {
- var isTokenAutoRefreshEnabled: Bool = true
- }
- class DummyAppCheckTokenDelegate: NSObject, AppCheckCoreTokenDelegate {
- func tokenDidUpdate(_ token: AppCheckCoreToken, serviceName: String) {}
- }
|