| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // Copyright 2022 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.
- import FirebaseAppCheckInterop
- import FirebaseAuthInterop
- import FirebaseMessagingInterop
- import Foundation
- /// `FunctionsContext` is a helper object that holds metadata for a function call.
- struct FunctionsContext {
- let authToken: String?
- let fcmToken: String?
- let appCheckToken: String?
- let limitedUseAppCheckToken: String?
- }
- struct FunctionsContextProvider {
- private let auth: AuthInterop?
- private let messaging: MessagingInterop?
- private let appCheck: AppCheckInterop?
- init(auth: AuthInterop?, messaging: MessagingInterop?, appCheck: AppCheckInterop?) {
- self.auth = auth
- self.messaging = messaging
- self.appCheck = appCheck
- }
- @available(iOS 13, macCatalyst 13, macOS 10.15, tvOS 13, watchOS 7, *)
- func context(options: HTTPSCallableOptions?) async throws -> FunctionsContext {
- async let authToken = auth?.getToken(forcingRefresh: false)
- async let appCheckToken = getAppCheckToken(options: options)
- async let limitedUseAppCheckToken = getLimitedUseAppCheckToken(options: options)
- // Only `authToken` is throwing, but the formatter script removes the `try`
- // from `try authToken` and puts it in front of the initializer call.
- return try await FunctionsContext(
- authToken: authToken,
- fcmToken: messaging?.fcmToken,
- appCheckToken: appCheckToken,
- limitedUseAppCheckToken: limitedUseAppCheckToken
- )
- }
- @available(iOS 13, macCatalyst 13, macOS 10.15, tvOS 13, watchOS 7, *)
- private func getAppCheckToken(options: HTTPSCallableOptions?) async -> String? {
- guard
- options?.requireLimitedUseAppCheckTokens != true,
- let tokenResult = await appCheck?.getToken(forcingRefresh: false)
- else { return nil }
- // The placeholder token should be used in the case of App Check error.
- return tokenResult.token
- }
- @available(iOS 13, macCatalyst 13, macOS 10.15, tvOS 13, watchOS 7, *)
- private func getLimitedUseAppCheckToken(options: HTTPSCallableOptions?) async -> String? {
- // At the moment, `await` doesn’t get along with Objective-C’s optional protocol methods.
- await withCheckedContinuation { (continuation: CheckedContinuation<String?, Never>) in
- guard
- options?.requireLimitedUseAppCheckTokens == true,
- let appCheck,
- // `getLimitedUseToken(completion:)` is an optional protocol method. Optional binding
- // is performed to make sure `continuation` is called even if the method’s not implemented.
- let limitedUseTokenClosure = appCheck.getLimitedUseToken
- else {
- return continuation.resume(returning: nil)
- }
- limitedUseTokenClosure { tokenResult in
- // The placeholder token should be used in the case of App Check error.
- continuation.resume(returning: tokenResult.token)
- }
- }
- }
- func getContext(options: HTTPSCallableOptions? = nil,
- _ completion: @escaping ((FunctionsContext, Error?) -> Void)) {
- let dispatchGroup = DispatchGroup()
- var authToken: String?
- var appCheckToken: String?
- var error: Error?
- var limitedUseAppCheckToken: String?
- if let auth {
- dispatchGroup.enter()
- auth.getToken(forcingRefresh: false) { token, authError in
- authToken = token
- error = authError
- dispatchGroup.leave()
- }
- }
- if let appCheck {
- dispatchGroup.enter()
- if options?.requireLimitedUseAppCheckTokens == true {
- // `getLimitedUseToken(completion:)` is an optional protocol method.
- // If it’s not implemented, we still need to leave the dispatch group.
- if let limitedUseTokenClosure = appCheck.getLimitedUseToken {
- limitedUseTokenClosure { tokenResult in
- // In the case of an error, the token will be the placeholder token.
- limitedUseAppCheckToken = tokenResult.token
- dispatchGroup.leave()
- }
- } else {
- dispatchGroup.leave()
- }
- } else {
- appCheck.getToken(forcingRefresh: false) { tokenResult in
- // In the case of an error, the token will be the placeholder token.
- appCheckToken = tokenResult.token
- dispatchGroup.leave()
- }
- }
- }
- dispatchGroup.notify(queue: .main) {
- let context = FunctionsContext(authToken: authToken,
- fcmToken: self.messaging?.fcmToken,
- appCheckToken: appCheckToken,
- limitedUseAppCheckToken: limitedUseAppCheckToken)
- completion(context, error)
- }
- }
- }
|