| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /*
- * Copyright 2020 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 "FirebaseAppCheck/Sources/Public/FirebaseAppCheck/FIRAppCheckDebugProvider.h"
- #if __has_include(<FBLPromises/FBLPromises.h>)
- #import <FBLPromises/FBLPromises.h>
- #else
- #import "FBLPromises.h"
- #endif
- @import AppCheckCore;
- #import "FirebaseAppCheck/Sources/Core/FIRApp+AppCheck.h"
- #import "FirebaseAppCheck/Sources/Core/FIRAppCheckLogger.h"
- #import "FirebaseAppCheck/Sources/Core/FIRAppCheckToken+Internal.h"
- #import "FirebaseAppCheck/Sources/Core/FIRAppCheckValidator.h"
- #import "FirebaseAppCheck/Sources/Core/FIRHeartbeatLogger+AppCheck.h"
- #import "FirebaseCore/Extension/FirebaseCoreInternal.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FIRAppCheckDebugProvider ()
- @property(nonatomic, readonly) GACAppCheckDebugProvider *debugProvider;
- @end
- @implementation FIRAppCheckDebugProvider
- - (instancetype)initWithDebugProvider:(GACAppCheckDebugProvider *)debugProvider {
- self = [super init];
- if (self) {
- _debugProvider = debugProvider;
- }
- return self;
- }
- - (nullable instancetype)initWithApp:(FIRApp *)app {
- NSArray<NSString *> *missingOptionsFields =
- [FIRAppCheckValidator tokenExchangeMissingFieldsInOptions:app.options];
- if (missingOptionsFields.count > 0) {
- FIRLogError(kFIRLoggerAppCheck, kFIRLoggerAppCheckMessageDebugProviderIncompleteFIROptions,
- @"Cannot instantiate `FIRAppCheckDebugProvider` for app: %@. The following "
- @"`FirebaseOptions` fields are missing: %@",
- app.name, [missingOptionsFields componentsJoinedByString:@", "]);
- return nil;
- }
- GACAppCheckDebugProvider *debugProvider =
- [[GACAppCheckDebugProvider alloc] initWithServiceName:app.name
- resourceName:app.resourceName
- baseURL:nil
- APIKey:app.options.APIKey
- requestHooks:@[ [app.heartbeatLogger requestHook] ]];
- return [self initWithDebugProvider:debugProvider];
- }
- - (NSString *)currentDebugToken {
- return [self.debugProvider currentDebugToken];
- }
- - (NSString *)localDebugToken {
- return [self.debugProvider localDebugToken];
- }
- #pragma mark - FIRAppCheckProvider
- - (void)getTokenWithCompletion:(void (^)(FIRAppCheckToken *_Nullable token,
- NSError *_Nullable error))handler {
- [self.debugProvider getTokenWithCompletion:^(GACAppCheckToken *_Nullable internalToken,
- NSError *_Nullable error) {
- if (error) {
- handler(nil, error);
- return;
- }
- handler([[FIRAppCheckToken alloc] initWithInternalToken:internalToken], nil);
- }];
- }
- - (void)getLimitedUseTokenWithCompletion:(void (^)(FIRAppCheckToken *_Nullable,
- NSError *_Nullable))handler {
- [self.debugProvider getLimitedUseTokenWithCompletion:^(GACAppCheckToken *_Nullable internalToken,
- NSError *_Nullable error) {
- if (error) {
- handler(nil, error);
- return;
- }
- handler([[FIRAppCheckToken alloc] initWithInternalToken:internalToken], nil);
- }];
- }
- @end
- NS_ASSUME_NONNULL_END
|