| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /*
- * 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 "AppCheckCore/Sources/Public/AppCheckCore/GACAppCheckAvailability.h"
- #if GAC_DEVICE_CHECK_SUPPORTED_TARGETS
- #import <Foundation/Foundation.h>
- #if __has_include(<FBLPromises/FBLPromises.h>)
- #import <FBLPromises/FBLPromises.h>
- #else
- #import "FBLPromises.h"
- #endif
- #import "AppCheckCore/Sources/Public/AppCheckCore/GACDeviceCheckProvider.h"
- #import "AppCheckCore/Sources/Core/APIService/GACAppCheckAPIService.h"
- #import "AppCheckCore/Sources/Core/Backoff/GACAppCheckBackoffWrapper.h"
- #import "AppCheckCore/Sources/Core/GACAppCheckLogger+Internal.h"
- #import "AppCheckCore/Sources/DeviceCheckProvider/API/GACDeviceCheckAPIService.h"
- #import "AppCheckCore/Sources/DeviceCheckProvider/DCDevice+GACDeviceCheckTokenGenerator.h"
- #import "AppCheckCore/Sources/Public/AppCheckCore/GACAppCheckToken.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface GACDeviceCheckProvider ()
- @property(nonatomic, readonly) id<GACDeviceCheckAPIServiceProtocol> APIService;
- @property(nonatomic, readonly) id<GACDeviceCheckTokenGenerator> deviceTokenGenerator;
- @property(nonatomic, readonly) id<GACAppCheckBackoffWrapperProtocol> backoffWrapper;
- - (instancetype)initWithAPIService:(id<GACDeviceCheckAPIServiceProtocol>)APIService
- deviceTokenGenerator:(id<GACDeviceCheckTokenGenerator>)deviceTokenGenerator
- backoffWrapper:(id<GACAppCheckBackoffWrapperProtocol>)backoffWrapper
- NS_DESIGNATED_INITIALIZER;
- @end
- @implementation GACDeviceCheckProvider
- - (instancetype)initWithAPIService:(id<GACDeviceCheckAPIServiceProtocol>)APIService
- deviceTokenGenerator:(id<GACDeviceCheckTokenGenerator>)deviceTokenGenerator
- backoffWrapper:(id<GACAppCheckBackoffWrapperProtocol>)backoffWrapper {
- self = [super init];
- if (self) {
- _APIService = APIService;
- _deviceTokenGenerator = deviceTokenGenerator;
- _backoffWrapper = backoffWrapper;
- }
- return self;
- }
- - (instancetype)initWithAPIService:(id<GACDeviceCheckAPIServiceProtocol>)APIService {
- GACAppCheckBackoffWrapper *backoffWrapper = [[GACAppCheckBackoffWrapper alloc] init];
- return [self initWithAPIService:APIService
- deviceTokenGenerator:[DCDevice currentDevice]
- backoffWrapper:backoffWrapper];
- }
- - (instancetype)initWithServiceName:(NSString *)serviceName
- resourceName:(NSString *)resourceName
- APIKey:(nullable NSString *)APIKey
- requestHooks:(nullable NSArray<GACAppCheckAPIRequestHook> *)requestHooks {
- NSURLSession *URLSession = [NSURLSession
- sessionWithConfiguration:[NSURLSessionConfiguration ephemeralSessionConfiguration]];
- GACAppCheckAPIService *APIService =
- [[GACAppCheckAPIService alloc] initWithURLSession:URLSession
- baseURL:nil
- APIKey:APIKey
- requestHooks:requestHooks];
- GACDeviceCheckAPIService *deviceCheckAPIService =
- [[GACDeviceCheckAPIService alloc] initWithAPIService:APIService resourceName:resourceName];
- return [self initWithAPIService:deviceCheckAPIService];
- }
- #pragma mark - GACAppCheckProvider
- - (void)getTokenWithCompletion:(void (^)(GACAppCheckToken *_Nullable token,
- NSError *_Nullable error))handler {
- [self.backoffWrapper
- applyBackoffToOperation:^FBLPromise *_Nonnull {
- return [self getTokenPromise];
- }
- errorHandler:[self.backoffWrapper defaultAppCheckProviderErrorHandler]]
- // Call the handler with either token or error.
- .then(^id(GACAppCheckToken *appCheckToken) {
- handler(appCheckToken, nil);
- return nil;
- })
- .catch(^void(NSError *error) {
- handler(nil, error);
- });
- }
- - (FBLPromise<GACAppCheckToken *> *)getTokenPromise {
- // Get DeviceCheck token
- return [self deviceToken]
- // Exchange DeviceCheck token for FAC token.
- .then(^FBLPromise<GACAppCheckToken *> *(NSData *deviceToken) {
- return [self.APIService appCheckTokenWithDeviceToken:deviceToken];
- });
- }
- #pragma mark - DeviceCheck
- - (FBLPromise<NSData *> *)deviceToken {
- return [FBLPromise
- wrapObjectOrErrorCompletion:^(FBLPromiseObjectOrErrorCompletion _Nonnull handler) {
- [self.deviceTokenGenerator generateTokenWithCompletionHandler:handler];
- }];
- }
- @end
- NS_ASSUME_NONNULL_END
- #endif // GAC_DEVICE_CHECK_SUPPORTED_TARGETS
|