| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- /*
- * Copyright 2019 Google
- *
- * 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 "FIRInstallations.h"
- #if __has_include(<FBLPromises/FBLPromises.h>)
- #import <FBLPromises/FBLPromises.h>
- #else
- #import "FBLPromises.h"
- #endif
- #import <FirebaseCore/FIRAppInternal.h>
- #import <FirebaseCore/FIRComponent.h>
- #import <FirebaseCore/FIRComponentContainer.h>
- #import <FirebaseCore/FIRLibrary.h>
- #import <FirebaseCore/FIRLogger.h>
- #import <FirebaseCore/FIROptions.h>
- #import "FIRInstallationsAuthTokenResultInternal.h"
- #import "FIRInstallationsErrorUtil.h"
- #import "FIRInstallationsIDController.h"
- #import "FIRInstallationsItem.h"
- #import "FIRInstallationsLogger.h"
- #import "FIRInstallationsStoredAuthToken.h"
- #import "FIRInstallationsVersion.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol FIRInstallationsInstanceProvider <FIRLibrary>
- @end
- @interface FIRInstallations () <FIRInstallationsInstanceProvider>
- @property(nonatomic, readonly) FIROptions *appOptions;
- @property(nonatomic, readonly) NSString *appName;
- @property(nonatomic, readonly) FIRInstallationsIDController *installationsIDController;
- @end
- @implementation FIRInstallations
- #pragma mark - Firebase component
- + (void)load {
- [FIRApp registerInternalLibrary:(Class<FIRLibrary>)self
- withName:@"fire-install"
- withVersion:[NSString stringWithUTF8String:FIRInstallationsVersionStr]];
- }
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRComponentCreationBlock creationBlock =
- ^id _Nullable(FIRComponentContainer *container, BOOL *isCacheable) {
- *isCacheable = YES;
- FIRInstallations *installations = [[FIRInstallations alloc] initWithApp:container.app];
- return installations;
- };
- FIRComponent *installationsProvider =
- [FIRComponent componentWithProtocol:@protocol(FIRInstallationsInstanceProvider)
- instantiationTiming:FIRInstantiationTimingAlwaysEager
- dependencies:@[]
- creationBlock:creationBlock];
- return @[ installationsProvider ];
- }
- - (instancetype)initWithApp:(FIRApp *)app {
- return [self initWitAppOptions:app.options appName:app.name];
- }
- - (instancetype)initWitAppOptions:(FIROptions *)appOptions appName:(NSString *)appName {
- FIRInstallationsIDController *IDController =
- [[FIRInstallationsIDController alloc] initWithGoogleAppID:appOptions.googleAppID
- appName:appName
- APIKey:appOptions.APIKey
- projectID:appOptions.projectID
- GCMSenderID:appOptions.GCMSenderID
- accessGroup:appOptions.appGroupID];
- return [self initWithAppOptions:appOptions
- appName:appName
- installationsIDController:IDController
- prefetchAuthToken:YES];
- }
- /// The initializer is supposed to be used by tests to inject `installationsStore`.
- - (instancetype)initWithAppOptions:(FIROptions *)appOptions
- appName:(NSString *)appName
- installationsIDController:(FIRInstallationsIDController *)installationsIDController
- prefetchAuthToken:(BOOL)prefetchAuthToken {
- self = [super init];
- if (self) {
- [[self class] validateAppOptions:appOptions appName:appName];
- [[self class] assertCompatibleIIDVersion];
- _appOptions = [appOptions copy];
- _appName = [appName copy];
- _installationsIDController = installationsIDController;
- // Pre-fetch auth token.
- if (prefetchAuthToken) {
- [self authTokenWithCompletion:^(FIRInstallationsAuthTokenResult *_Nullable tokenResult,
- NSError *_Nullable error){
- }];
- }
- }
- return self;
- }
- + (void)validateAppOptions:(FIROptions *)appOptions appName:(NSString *)appName {
- NSMutableArray *missingFields = [NSMutableArray array];
- if (appName.length < 1) {
- [missingFields addObject:@"`FirebaseApp.name`"];
- }
- if (appOptions.APIKey.length < 1) {
- [missingFields addObject:@"`FirebaseOptions.APIKey`"];
- }
- if (appOptions.googleAppID.length < 1) {
- [missingFields addObject:@"`FirebaseOptions.googleAppID`"];
- }
- // TODO(#4692): Check for `appOptions.projectID.length < 1` only.
- // We can use `GCMSenderID` instead of `projectID` temporary.
- if (appOptions.projectID.length < 1 && appOptions.GCMSenderID.length < 1) {
- [missingFields addObject:@"`FirebaseOptions.projectID`"];
- }
- if (missingFields.count > 0) {
- [NSException
- raise:kFirebaseInstallationsErrorDomain
- format:
- @"%@[%@] Could not configure Firebase Installations due to invalid FirebaseApp "
- @"options. The following parameters are nil or empty: %@. If you use "
- @"GoogleServices-Info.plist please download the most recent version from the Firebase "
- @"Console. If you configure Firebase in code, please make sure you specify all "
- @"required parameters.",
- kFIRLoggerInstallations, kFIRInstallationsMessageCodeInvalidFirebaseAppOptions,
- [missingFields componentsJoinedByString:@", "]];
- }
- }
- #pragma mark - Public
- + (FIRInstallations *)installations {
- FIRApp *defaultApp = [FIRApp defaultApp];
- if (!defaultApp) {
- [NSException raise:kFirebaseInstallationsErrorDomain
- format:@"The default FirebaseApp instance must be configured before the default"
- @"FirebaseApp instance can be initialized. One way to ensure that is to "
- @"call `[FIRApp configure];` (`FirebaseApp.configure()` in Swift) in the App"
- @" Delegate's `application:didFinishLaunchingWithOptions:` "
- @"(`application(_:didFinishLaunchingWithOptions:)` in Swift)."];
- }
- return [self installationsWithApp:defaultApp];
- }
- + (FIRInstallations *)installationsWithApp:(FIRApp *)app {
- id<FIRInstallationsInstanceProvider> installations =
- FIR_COMPONENT(FIRInstallationsInstanceProvider, app.container);
- return (FIRInstallations *)installations;
- }
- - (void)installationIDWithCompletion:(FIRInstallationsIDHandler)completion {
- [self.installationsIDController getInstallationItem]
- .then(^id(FIRInstallationsItem *installation) {
- completion(installation.firebaseInstallationID, nil);
- return nil;
- })
- .catch(^(NSError *error) {
- completion(nil, [FIRInstallationsErrorUtil publicDomainErrorWithError:error]);
- });
- }
- - (void)authTokenWithCompletion:(FIRInstallationsTokenHandler)completion {
- [self authTokenForcingRefresh:NO completion:completion];
- }
- - (void)authTokenForcingRefresh:(BOOL)forceRefresh
- completion:(FIRInstallationsTokenHandler)completion {
- [self.installationsIDController getAuthTokenForcingRefresh:forceRefresh]
- .then(^FIRInstallationsAuthTokenResult *(FIRInstallationsItem *installation) {
- FIRInstallationsAuthTokenResult *result = [[FIRInstallationsAuthTokenResult alloc]
- initWithToken:installation.authToken.token
- expirationDate:installation.authToken.expirationDate];
- return result;
- })
- .then(^id(FIRInstallationsAuthTokenResult *token) {
- completion(token, nil);
- return nil;
- })
- .catch(^void(NSError *error) {
- completion(nil, [FIRInstallationsErrorUtil publicDomainErrorWithError:error]);
- });
- }
- - (void)deleteWithCompletion:(void (^)(NSError *__nullable error))completion {
- [self.installationsIDController deleteInstallation]
- .then(^id(id result) {
- completion(nil);
- return nil;
- })
- .catch(^void(NSError *error) {
- completion([FIRInstallationsErrorUtil publicDomainErrorWithError:error]);
- });
- }
- #pragma mark - IID version compatibility
- + (void)assertCompatibleIIDVersion {
- // We use this flag to disable IID compatibility exception for unit tests.
- #ifdef FIR_INSTALLATIONS_ALLOWS_INCOMPATIBLE_IID_VERSION
- return;
- #else
- if (![self isIIDVersionCompatible]) {
- [NSException raise:kFirebaseInstallationsErrorDomain
- format:@"FirebaseInstallations will not work correctly with current version of "
- @"Firebase Instance ID. Please update your Firebase Instance ID version."];
- }
- #endif
- }
- + (BOOL)isIIDVersionCompatible {
- Class IIDClass = NSClassFromString(@"FIRInstanceID");
- if (IIDClass == nil) {
- // It is OK if there is no IID at all.
- return YES;
- }
- // We expect a compatible version having the method `+[FIRInstanceID usesFIS]` defined.
- BOOL isCompatibleVersion = [IIDClass respondsToSelector:NSSelectorFromString(@"usesFIS")];
- return isCompatibleVersion;
- }
- @end
- NS_ASSUME_NONNULL_END
|