| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // 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 Foundation
- import FirebaseAppCheckInterop
- import FirebaseAuthInterop
- import FirebaseMessagingInterop
- /// FunctionsContext is a helper class for gathering metadata for a function call.
- internal class FunctionsContext: NSObject {
- let authToken: String?
- let fcmToken: String?
- let appCheckToken: String?
- init(authToken: String?, fcmToken: String?, appCheckToken: String?) {
- self.authToken = authToken
- self.fcmToken = fcmToken
- self.appCheckToken = appCheckToken
- }
- }
- internal class FunctionsContextProvider: NSObject {
- private var auth: AuthInterop?
- private var messaging: MessagingInterop?
- private var appCheck: AppCheckInterop?
- init(auth: AuthInterop?, messaging: MessagingInterop?, appCheck: AppCheckInterop?) {
- self.auth = auth
- self.messaging = messaging
- self.appCheck = appCheck
- }
- // TODO: Implement async await version
- // @available(macOS 10.15.0, *)
- // internal func getContext() async throws -> FunctionsContext {
- // return FunctionsContext(authToken: nil, fcmToken: nil, appCheckToken: nil)
- //
- // }
- internal func getContext(_ completion: @escaping ((FunctionsContext, Error?) -> Void)) {
- let dispatchGroup = DispatchGroup()
- var authToken: String?
- var appCheckToken: String?
- var error: Error?
- if let auth = auth {
- dispatchGroup.enter()
- auth.getToken(forcingRefresh: false) { token, authError in
- authToken = token
- error = authError
- dispatchGroup.leave()
- }
- }
- if let appCheck = appCheck {
- dispatchGroup.enter()
- appCheck.getToken(forcingRefresh: false) { tokenResult in
- // Send only valid token to functions.
- if tokenResult.error == nil {
- appCheckToken = tokenResult.token
- }
- dispatchGroup.leave()
- }
- }
- dispatchGroup.notify(queue: .main) {
- let context = FunctionsContext(authToken: authToken,
- fcmToken: self.messaging?.fcmToken,
- appCheckToken: appCheckToken)
- completion(context, error)
- }
- }
- }
|