| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- /*
- * 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 "FirebaseRemoteConfig/Sources/Public/FIRRemoteConfig.h"
- #import "FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h"
- #import "FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
- #import "FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.h"
- #import "FirebaseRemoteConfig/Sources/Private/FIRRemoteConfig_Private.h"
- #import "FirebaseRemoteConfig/Sources/Private/RCNConfigFetch.h"
- #import "FirebaseRemoteConfig/Sources/Private/RCNConfigSettings.h"
- #import "FirebaseRemoteConfig/Sources/RCNConfigConstants.h"
- #import "FirebaseRemoteConfig/Sources/RCNConfigContent.h"
- #import "FirebaseRemoteConfig/Sources/RCNConfigDBManager.h"
- #import "FirebaseRemoteConfig/Sources/RCNConfigExperiment.h"
- #import "FirebaseRemoteConfig/Sources/RCNConfigValue_Internal.h"
- #import "FirebaseRemoteConfig/Sources/RCNDevice.h"
- /// Remote Config Error Domain.
- /// TODO: Rename according to obj-c style for constants.
- NSString *const FIRRemoteConfigErrorDomain = @"com.google.remoteconfig.ErrorDomain";
- /// Remote Config Error Info End Time Seconds;
- NSString *const FIRRemoteConfigThrottledEndTimeInSecondsKey = @"error_throttled_end_time_seconds";
- /// Remote Config Developer Mode Key
- static NSString *const kRemoteConfigDeveloperKey = @"_rcn_developer";
- /// Minimum required time interval between fetch requests made to the backend.
- static NSString *const kRemoteConfigMinimumFetchIntervalKey = @"_rcn_minimum_fetch_interval";
- /// Timeout value for waiting on a fetch response.
- static NSString *const kRemoteConfigFetchTimeoutKey = @"_rcn_fetch_timeout";
- @interface FIRRemoteConfigSettings () {
- BOOL _developerModeEnabled;
- }
- @end
- // Implementations depend upon multiple deprecated APIs
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- @implementation FIRRemoteConfigSettings
- - (instancetype)initWithDeveloperModeEnabled:(BOOL)developerModeEnabled {
- self = [self init];
- if (self) {
- _developerModeEnabled = developerModeEnabled;
- }
- return self;
- }
- - (instancetype)init {
- self = [super init];
- if (self) {
- _developerModeEnabled = NO;
- _minimumFetchInterval = RCNDefaultMinimumFetchInterval;
- _fetchTimeout = RCNHTTPDefaultConnectionTimeout;
- }
- return self;
- }
- - (BOOL)isDeveloperModeEnabled {
- return _developerModeEnabled;
- }
- @end
- @implementation FIRRemoteConfig {
- /// All the config content.
- RCNConfigContent *_configContent;
- RCNConfigDBManager *_DBManager;
- RCNConfigSettings *_settings;
- RCNConfigFetch *_configFetch;
- RCNConfigExperiment *_configExperiment;
- dispatch_queue_t _queue;
- NSString *_appName;
- }
- static NSMutableDictionary<NSString *, NSMutableDictionary<NSString *, FIRRemoteConfig *> *>
- *RCInstances;
- + (nonnull FIRRemoteConfig *)remoteConfigWithApp:(FIRApp *_Nonnull)firebaseApp {
- return [FIRRemoteConfig remoteConfigWithFIRNamespace:FIRNamespaceGoogleMobilePlatform
- app:firebaseApp];
- }
- + (nonnull FIRRemoteConfig *)remoteConfigWithFIRNamespace:(NSString *_Nonnull)firebaseNamespace {
- if (![FIRApp isDefaultAppConfigured]) {
- FIRLogError(kFIRLoggerRemoteConfig, @"I-RCN000047",
- @"FIRApp not configured. Please make sure you have called [FIRApp configure]");
- // TODO: Maybe throw an exception here? That'd be a breaking change though, but at this point
- // RC can't work as expected.
- }
- return [FIRRemoteConfig remoteConfigWithFIRNamespace:firebaseNamespace app:[FIRApp defaultApp]];
- }
- + (nonnull FIRRemoteConfig *)remoteConfigWithFIRNamespace:(NSString *_Nonnull)firebaseNamespace
- app:(FIRApp *_Nonnull)firebaseApp {
- // Use the provider to generate and return instances of FIRRemoteConfig for this specific app and
- // namespace. This will ensure the app is configured before Remote Config can return an instance.
- id<FIRRemoteConfigProvider> provider =
- FIR_COMPONENT(FIRRemoteConfigProvider, firebaseApp.container);
- return [provider remoteConfigForNamespace:firebaseNamespace];
- }
- + (FIRRemoteConfig *)remoteConfig {
- // If the default app is not configured at this point, warn the developer.
- if (![FIRApp isDefaultAppConfigured]) {
- FIRLogError(kFIRLoggerRemoteConfig, @"I-RCN000047",
- @"FIRApp not configured. Please make sure you have called [FIRApp configure]");
- // TODO: Maybe throw an exception here? That'd be a breaking change though, but at this point
- // RC can't work as expected.
- }
- return [FIRRemoteConfig remoteConfigWithFIRNamespace:FIRNamespaceGoogleMobilePlatform
- app:[FIRApp defaultApp]];
- }
- /// Singleton instance of serial queue for queuing all incoming RC calls.
- + (dispatch_queue_t)sharedRemoteConfigSerialQueue {
- static dispatch_once_t onceToken;
- static dispatch_queue_t sharedRemoteConfigQueue;
- dispatch_once(&onceToken, ^{
- sharedRemoteConfigQueue =
- dispatch_queue_create(RCNRemoteConfigQueueLabel, DISPATCH_QUEUE_SERIAL);
- });
- return sharedRemoteConfigQueue;
- }
- /// Designated initializer
- - (instancetype)initWithAppName:(NSString *)appName
- FIROptions:(FIROptions *)options
- namespace:(NSString *)FIRNamespace
- DBManager:(RCNConfigDBManager *)DBManager
- configContent:(RCNConfigContent *)configContent
- analytics:(nullable id<FIRAnalyticsInterop>)analytics {
- self = [super init];
- if (self) {
- _appName = appName;
- _DBManager = DBManager;
- // The fully qualified Firebase namespace is namespace:firappname.
- _FIRNamespace = [NSString stringWithFormat:@"%@:%@", FIRNamespace, appName];
- // Initialize RCConfigContent if not already.
- _configContent = configContent;
- _settings = [[RCNConfigSettings alloc] initWithDatabaseManager:_DBManager
- namespace:_FIRNamespace
- firebaseAppName:appName
- googleAppID:options.googleAppID];
- FIRExperimentController *experimentController = [FIRExperimentController sharedInstance];
- _configExperiment = [[RCNConfigExperiment alloc] initWithDBManager:_DBManager
- experimentController:experimentController];
- /// Serial queue for read and write lock.
- _queue = [FIRRemoteConfig sharedRemoteConfigSerialQueue];
- // Initialize with default config settings.
- [self setDefaultConfigSettings];
- _configFetch = [[RCNConfigFetch alloc] initWithContent:_configContent
- DBManager:_DBManager
- settings:_settings
- analytics:analytics
- experiment:_configExperiment
- queue:_queue
- namespace:_FIRNamespace
- options:options];
- [_settings loadConfigFromMetadataTable];
- }
- return self;
- }
- // Initialize with default config settings.
- - (void)setDefaultConfigSettings {
- // Set the default config settings.
- self->_settings.fetchTimeout = RCNHTTPDefaultConnectionTimeout;
- self->_settings.minimumFetchInterval = RCNDefaultMinimumFetchInterval;
- }
- - (void)ensureInitializedWithCompletionHandler:
- (nonnull FIRRemoteConfigInitializationCompletion)completionHandler {
- __weak FIRRemoteConfig *weakSelf = self;
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
- FIRRemoteConfig *strongSelf = weakSelf;
- if (!strongSelf) {
- return;
- }
- BOOL initializationSuccess = [self->_configContent initializationSuccessful];
- NSError *error = nil;
- if (!initializationSuccess) {
- error = [[NSError alloc]
- initWithDomain:FIRRemoteConfigErrorDomain
- code:FIRRemoteConfigErrorInternalError
- userInfo:@{NSLocalizedDescriptionKey : @"Timed out waiting for database load."}];
- }
- completionHandler(error);
- });
- }
- #pragma mark - fetch
- - (void)fetchWithCompletionHandler:(FIRRemoteConfigFetchCompletion)completionHandler {
- dispatch_async(_queue, ^{
- [self fetchWithExpirationDuration:self->_settings.minimumFetchInterval
- completionHandler:completionHandler];
- });
- }
- - (void)fetchWithExpirationDuration:(NSTimeInterval)expirationDuration
- completionHandler:(FIRRemoteConfigFetchCompletion)completionHandler {
- FIRRemoteConfigFetchCompletion completionHandlerCopy = nil;
- if (completionHandler) {
- completionHandlerCopy = [completionHandler copy];
- }
- [_configFetch fetchConfigWithExpirationDuration:expirationDuration
- completionHandler:completionHandlerCopy];
- }
- #pragma mark - fetchAndActivate
- - (void)fetchAndActivateWithCompletionHandler:
- (FIRRemoteConfigFetchAndActivateCompletion)completionHandler {
- __weak FIRRemoteConfig *weakSelf = self;
- FIRRemoteConfigFetchCompletion fetchCompletion =
- ^(FIRRemoteConfigFetchStatus fetchStatus, NSError *fetchError) {
- FIRRemoteConfig *strongSelf = weakSelf;
- if (!strongSelf) {
- return;
- }
- // Fetch completed. We are being called on the main queue.
- // If fetch is successful, try to activate the fetched config
- if (fetchStatus == FIRRemoteConfigFetchStatusSuccess && !fetchError) {
- [strongSelf activateWithCompletionHandler:^(NSError *_Nullable activateError) {
- if (completionHandler) {
- FIRRemoteConfigFetchAndActivateStatus status =
- activateError ? FIRRemoteConfigFetchAndActivateStatusSuccessUsingPreFetchedData
- : FIRRemoteConfigFetchAndActivateStatusSuccessFetchedFromRemote;
- completionHandler(status, nil);
- }
- }];
- } else if (completionHandler) {
- FIRRemoteConfigFetchAndActivateStatus status =
- fetchStatus == FIRRemoteConfigFetchStatusSuccess
- ? FIRRemoteConfigFetchAndActivateStatusSuccessUsingPreFetchedData
- : FIRRemoteConfigFetchAndActivateStatusError;
- completionHandler(status, fetchError);
- }
- };
- [self fetchWithCompletionHandler:fetchCompletion];
- }
- #pragma mark - apply
- - (BOOL)activateFetched {
- // TODO: We block on the async activate to complete. This method is deprecated and needs
- // to be removed at the next possible breaking change.
- __block dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
- __block BOOL didActivate = NO;
- [self activateWithCompletionHandler:^(NSError *_Nullable error) {
- didActivate = error ? false : true;
- dispatch_semaphore_signal(semaphore);
- }];
- dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);
- return didActivate;
- }
- typedef void (^FIRRemoteConfigActivateChangeCompletion)(BOOL changed, NSError *_Nullable error);
- - (void)activateWithCompletion:(FIRRemoteConfigActivateChangeCompletion)completion {
- [self activateWithEitherHandler:completion deprecatedHandler:nil];
- }
- - (void)activateWithCompletionHandler:(FIRRemoteConfigActivateCompletion)completionHandler {
- [self activateWithEitherHandler:nil deprecatedHandler:completionHandler];
- }
- - (void)activateWithEitherHandler:(FIRRemoteConfigActivateChangeCompletion)completion
- deprecatedHandler:(FIRRemoteConfigActivateCompletion)deprecatedHandler {
- __weak FIRRemoteConfig *weakSelf = self;
- void (^applyBlock)(void) = ^(void) {
- FIRRemoteConfig *strongSelf = weakSelf;
- if (!strongSelf) {
- NSError *error = [NSError errorWithDomain:FIRRemoteConfigErrorDomain
- code:FIRRemoteConfigErrorInternalError
- userInfo:@{@"ActivationFailureReason" : @"Internal Error."}];
- if (completion) {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- completion(NO, error);
- });
- } else if (deprecatedHandler) {
- deprecatedHandler(error);
- }
- FIRLogError(kFIRLoggerRemoteConfig, @"I-RCN000068", @"Internal error activating config.");
- return;
- }
- // Check if the last fetched config has already been activated. Fetches with no data change are
- // ignored.
- if (strongSelf->_settings.lastETagUpdateTime == 0 ||
- strongSelf->_settings.lastETagUpdateTime <= strongSelf->_settings.lastApplyTimeInterval) {
- FIRLogDebug(kFIRLoggerRemoteConfig, @"I-RCN000069",
- @"Most recently fetched config is already activated.");
- if (completion) {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- completion(NO, nil);
- });
- } else if (deprecatedHandler) {
- NSError *error = [NSError
- errorWithDomain:FIRRemoteConfigErrorDomain
- code:FIRRemoteConfigErrorInternalError
- userInfo:@{
- @"ActivationFailureReason" : @"Most recently fetched config already activated"
- }];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- deprecatedHandler(error);
- });
- }
- return;
- }
- [strongSelf->_configContent copyFromDictionary:self->_configContent.fetchedConfig
- toSource:RCNDBSourceActive
- forNamespace:self->_FIRNamespace];
- [strongSelf updateExperiments];
- strongSelf->_settings.lastApplyTimeInterval = [[NSDate date] timeIntervalSince1970];
- FIRLogDebug(kFIRLoggerRemoteConfig, @"I-RCN000069", @"Config activated.");
- if (completion) {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- completion(YES, nil);
- });
- } else if (deprecatedHandler) {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- deprecatedHandler(nil);
- });
- }
- };
- dispatch_async(_queue, applyBlock);
- }
- - (void)updateExperiments {
- [self->_configExperiment updateExperiments];
- }
- #pragma mark - helpers
- - (NSString *)fullyQualifiedNamespace:(NSString *)namespace {
- // If this is already a fully qualified namespace, return.
- if ([namespace rangeOfString:@":"].location != NSNotFound) {
- return namespace;
- }
- NSString *fullyQualifiedNamespace = [NSString stringWithFormat:@"%@:%@", namespace, _appName];
- return fullyQualifiedNamespace;
- }
- #pragma mark - Get Config Result
- - (FIRRemoteConfigValue *)objectForKeyedSubscript:(NSString *)key {
- return [self configValueForKey:key];
- }
- - (FIRRemoteConfigValue *)configValueForKey:(NSString *)key {
- return [self configValueForKey:key namespace:_FIRNamespace];
- }
- - (FIRRemoteConfigValue *)configValueForKey:(NSString *)key namespace:(NSString *)aNamespace {
- if (!key || !aNamespace) {
- return [[FIRRemoteConfigValue alloc] initWithData:[NSData data]
- source:FIRRemoteConfigSourceStatic];
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:aNamespace];
- __block FIRRemoteConfigValue *value;
- dispatch_sync(_queue, ^{
- value = self->_configContent.activeConfig[FQNamespace][key];
- if (value) {
- if (value.source != FIRRemoteConfigSourceRemote) {
- FIRLogError(kFIRLoggerRemoteConfig, @"I-RCN000001",
- @"Key %@ should come from source:%zd instead coming from source: %zd.", key,
- (long)FIRRemoteConfigSourceRemote, (long)value.source);
- }
- return;
- }
- value = self->_configContent.defaultConfig[FQNamespace][key];
- if (value) {
- return;
- }
- value = [[FIRRemoteConfigValue alloc] initWithData:[NSData data]
- source:FIRRemoteConfigSourceStatic];
- });
- return value;
- }
- - (FIRRemoteConfigValue *)configValueForKey:(NSString *)key source:(FIRRemoteConfigSource)source {
- return [self configValueForKey:key namespace:_FIRNamespace source:source];
- }
- - (FIRRemoteConfigValue *)configValueForKey:(NSString *)key
- namespace:(NSString *)aNamespace
- source:(FIRRemoteConfigSource)source {
- if (!key || !aNamespace) {
- return [[FIRRemoteConfigValue alloc] initWithData:[NSData data]
- source:FIRRemoteConfigSourceStatic];
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:aNamespace];
- __block FIRRemoteConfigValue *value;
- dispatch_sync(_queue, ^{
- if (source == FIRRemoteConfigSourceRemote) {
- value = self->_configContent.activeConfig[FQNamespace][key];
- } else if (source == FIRRemoteConfigSourceDefault) {
- value = self->_configContent.defaultConfig[FQNamespace][key];
- } else {
- value = [[FIRRemoteConfigValue alloc] initWithData:[NSData data]
- source:FIRRemoteConfigSourceStatic];
- }
- });
- return value;
- }
- - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
- objects:(id __unsafe_unretained[])stackbuf
- count:(NSUInteger)len {
- __block NSUInteger localValue;
- dispatch_sync(_queue, ^{
- localValue =
- [self->_configContent.activeConfig[self->_FIRNamespace] countByEnumeratingWithState:state
- objects:stackbuf
- count:len];
- });
- return localValue;
- }
- #pragma mark - Properties
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wunused-property-ivar"
- /// Last fetch completion time.
- - (NSDate *)lastFetchTime {
- __block NSDate *fetchTime;
- dispatch_sync(_queue, ^{
- NSTimeInterval lastFetchTime = self->_settings.lastFetchTimeInterval;
- fetchTime = [NSDate dateWithTimeIntervalSince1970:lastFetchTime];
- });
- return fetchTime;
- }
- #pragma clang diagnostic pop
- - (FIRRemoteConfigFetchStatus)lastFetchStatus {
- __block FIRRemoteConfigFetchStatus currentStatus;
- dispatch_sync(_queue, ^{
- currentStatus = self->_settings.lastFetchStatus;
- });
- return currentStatus;
- }
- - (NSArray *)allKeysFromSource:(FIRRemoteConfigSource)source {
- return [self allKeysFromSource:source namespace:_FIRNamespace];
- }
- - (NSArray *)allKeysFromSource:(FIRRemoteConfigSource)source namespace:(NSString *)aNamespace {
- __block NSArray *keys = [[NSArray alloc] init];
- dispatch_sync(_queue, ^{
- if (!aNamespace) {
- return;
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:aNamespace];
- switch (source) {
- case FIRRemoteConfigSourceDefault:
- if (self->_configContent.defaultConfig[FQNamespace]) {
- keys = [[self->_configContent.defaultConfig[FQNamespace] allKeys] copy];
- }
- break;
- case FIRRemoteConfigSourceRemote:
- if (self->_configContent.activeConfig[FQNamespace]) {
- keys = [[self->_configContent.activeConfig[FQNamespace] allKeys] copy];
- }
- break;
- default:
- break;
- }
- });
- return keys;
- }
- - (nonnull NSSet *)keysWithPrefix:(nullable NSString *)prefix {
- return [self keysWithPrefix:prefix namespace:_FIRNamespace];
- }
- - (nonnull NSSet *)keysWithPrefix:(nullable NSString *)prefix
- namespace:(nullable NSString *)aNamespace {
- __block NSMutableSet *keys = [[NSMutableSet alloc] init];
- __block NSString *namespaceToCheck = aNamespace;
- dispatch_sync(_queue, ^{
- if (!namespaceToCheck.length) {
- return;
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:namespaceToCheck];
- if (self->_configContent.activeConfig[FQNamespace]) {
- NSArray *allKeys = [self->_configContent.activeConfig[FQNamespace] allKeys];
- if (!prefix.length) {
- keys = [NSMutableSet setWithArray:allKeys];
- } else {
- for (NSString *key in allKeys) {
- if ([key hasPrefix:prefix]) {
- [keys addObject:key];
- }
- }
- }
- }
- });
- return [keys copy];
- }
- #pragma mark - Defaults
- - (void)setDefaults:(NSDictionary<NSString *, NSObject *> *)defaults {
- [self setDefaults:defaults namespace:_FIRNamespace];
- }
- - (void)setDefaults:(NSDictionary<NSString *, NSObject *> *)defaultConfig
- namespace:(NSString *)aNamespace {
- if (!aNamespace) {
- FIRLogWarning(kFIRLoggerRemoteConfig, @"I-RCN000036", @"The namespace cannot be empty or nil.");
- return;
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:aNamespace];
- NSDictionary *defaultConfigCopy = [[NSDictionary alloc] init];
- if (defaultConfig) {
- defaultConfigCopy = [defaultConfig copy];
- }
- void (^setDefaultsBlock)(void) = ^(void) {
- NSDictionary *namespaceToDefaults = @{FQNamespace : defaultConfigCopy};
- [self->_configContent copyFromDictionary:namespaceToDefaults
- toSource:RCNDBSourceDefault
- forNamespace:FQNamespace];
- self->_settings.lastSetDefaultsTimeInterval = [[NSDate date] timeIntervalSince1970];
- };
- dispatch_async(_queue, setDefaultsBlock);
- }
- - (FIRRemoteConfigValue *)defaultValueForKey:(NSString *)key {
- return [self defaultValueForKey:key namespace:_FIRNamespace];
- }
- - (FIRRemoteConfigValue *)defaultValueForKey:(NSString *)key namespace:(NSString *)aNamespace {
- if (!key || !aNamespace) {
- return nil;
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:aNamespace];
- __block FIRRemoteConfigValue *value;
- dispatch_sync(_queue, ^{
- NSDictionary *defaultConfig = self->_configContent.defaultConfig;
- value = defaultConfig[FQNamespace][key];
- if (value) {
- if (value.source != FIRRemoteConfigSourceDefault) {
- FIRLogError(kFIRLoggerRemoteConfig, @"I-RCN000002",
- @"Key %@ should come from source:%zd instead coming from source: %zd", key,
- (long)FIRRemoteConfigSourceDefault, (long)value.source);
- }
- }
- });
- return value;
- }
- - (void)setDefaultsFromPlistFileName:(nullable NSString *)fileName {
- return [self setDefaultsFromPlistFileName:fileName namespace:_FIRNamespace];
- }
- - (void)setDefaultsFromPlistFileName:(nullable NSString *)fileName
- namespace:(nullable NSString *)namespace {
- if (!namespace || namespace.length == 0) {
- FIRLogWarning(kFIRLoggerRemoteConfig, @"I-RCN000036", @"The namespace cannot be empty or nil.");
- return;
- }
- NSString *FQNamespace = [self fullyQualifiedNamespace:namespace];
- if (!fileName || fileName.length == 0) {
- FIRLogWarning(kFIRLoggerRemoteConfig, @"I-RCN000037",
- @"The plist file '%@' could not be found by Remote Config.", fileName);
- return;
- }
- NSArray *bundles = @[ [NSBundle mainBundle], [NSBundle bundleForClass:[self class]] ];
- for (NSBundle *bundle in bundles) {
- NSString *plistFile = [bundle pathForResource:fileName ofType:@"plist"];
- // Use the first one we find.
- if (plistFile) {
- NSDictionary *defaultConfig = [[NSDictionary alloc] initWithContentsOfFile:plistFile];
- if (defaultConfig) {
- [self setDefaults:defaultConfig namespace:FQNamespace];
- }
- return;
- }
- }
- FIRLogWarning(kFIRLoggerRemoteConfig, @"I-RCN000037",
- @"The plist file '%@' could not be found by Remote Config.", fileName);
- }
- #pragma mark - custom variables
- - (FIRRemoteConfigSettings *)configSettings {
- __block BOOL developerModeEnabled = NO;
- __block NSTimeInterval minimumFetchInterval = RCNDefaultMinimumFetchInterval;
- __block NSTimeInterval fetchTimeout = RCNHTTPDefaultConnectionTimeout;
- dispatch_sync(_queue, ^{
- developerModeEnabled = [self->_settings.customVariables[kRemoteConfigDeveloperKey] boolValue];
- minimumFetchInterval = self->_settings.minimumFetchInterval;
- fetchTimeout = self->_settings.fetchTimeout;
- });
- FIRLogDebug(kFIRLoggerRemoteConfig, @"I-RCN000066",
- @"Successfully read configSettings. Developer Mode: %@, Minimum Fetch Interval:%f, "
- @"Fetch timeout: %f",
- developerModeEnabled ? @"true" : @"false", minimumFetchInterval, fetchTimeout);
- FIRRemoteConfigSettings *settings =
- [[FIRRemoteConfigSettings alloc] initWithDeveloperModeEnabled:developerModeEnabled];
- settings.minimumFetchInterval = minimumFetchInterval;
- settings.fetchTimeout = fetchTimeout;
- /// The NSURLSession needs to be recreated whenever the fetch timeout may be updated.
- [_configFetch recreateNetworkSession];
- return settings;
- }
- - (void)setConfigSettings:(FIRRemoteConfigSettings *)configSettings {
- void (^setConfigSettingsBlock)(void) = ^(void) {
- if (!configSettings) {
- return;
- }
- NSDictionary *settingsToSave = @{
- kRemoteConfigDeveloperKey : @(configSettings.isDeveloperModeEnabled),
- };
- self->_settings.customVariables = settingsToSave;
- self->_settings.minimumFetchInterval = configSettings.minimumFetchInterval;
- self->_settings.fetchTimeout = configSettings.fetchTimeout;
- /// The NSURLSession needs to be recreated whenever the fetch timeout may be updated.
- [self->_configFetch recreateNetworkSession];
- FIRLogDebug(kFIRLoggerRemoteConfig, @"I-RCN000067",
- @"Successfully set configSettings. Developer Mode: %@, Minimum Fetch Interval:%f, "
- @"Fetch timeout:%f",
- configSettings.isDeveloperModeEnabled ? @"true" : @"false",
- configSettings.minimumFetchInterval, configSettings.fetchTimeout);
- };
- dispatch_async(_queue, setConfigSettingsBlock);
- }
- #pragma clang diagnostic push // "-Wdeprecated-declarations"
- @end
|