2017-05-19 07:49:49 +00:00
|
|
|
#import "RNFirebaseRemoteConfig.h"
|
|
|
|
|
2017-05-25 14:24:53 +00:00
|
|
|
#if __has_include(<FirebaseRemoteConfig/FirebaseRemoteConfig.h>)
|
2017-05-19 07:49:49 +00:00
|
|
|
#import "FirebaseRemoteConfig/FirebaseRemoteConfig.h"
|
2017-05-31 08:54:02 +00:00
|
|
|
#import <React/RCTConvert.h>
|
2017-07-19 15:22:00 +00:00
|
|
|
#import <React/RCTUtils.h>
|
2017-05-19 07:49:49 +00:00
|
|
|
|
|
|
|
NSString *convertFIRRemoteConfigFetchStatusToNSString(FIRRemoteConfigFetchStatus value)
|
|
|
|
{
|
|
|
|
switch(value){
|
|
|
|
case FIRRemoteConfigFetchStatusNoFetchYet:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"config/no_fetch_yet";
|
2017-05-19 07:49:49 +00:00
|
|
|
case FIRRemoteConfigFetchStatusFailure:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"config/failure";
|
2017-05-19 07:49:49 +00:00
|
|
|
case FIRRemoteConfigFetchStatusThrottled:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"config/throttled";
|
2017-05-19 07:49:49 +00:00
|
|
|
default:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"config/failure";
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString *convertFIRRemoteConfigSourceToNSString(FIRRemoteConfigSource value)
|
|
|
|
{
|
|
|
|
switch(value) {
|
|
|
|
case FIRRemoteConfigSourceDefault:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"default";
|
|
|
|
case FIRRemoteConfigSourceRemote:
|
|
|
|
return @"remote";
|
2017-05-19 07:49:49 +00:00
|
|
|
default:
|
2017-05-23 13:08:59 +00:00
|
|
|
return @"static";
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSDictionary *convertFIRRemoteConfigValueToNSDictionary(FIRRemoteConfigValue *value)
|
|
|
|
{
|
|
|
|
return @{
|
|
|
|
@"stringValue" : value.stringValue ?: [NSNull null],
|
|
|
|
@"numberValue" : value.numberValue ?: [NSNull null],
|
|
|
|
@"dataValue" : value.dataValue ? [value.dataValue base64EncodedStringWithOptions:0] : [NSNull null],
|
|
|
|
@"boolValue" : @(value.boolValue),
|
|
|
|
@"source" : convertFIRRemoteConfigSourceToNSString(value.source)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
@interface RNFirebaseRemoteConfig ()
|
|
|
|
|
|
|
|
@property (nonatomic, readwrite, weak) FIRRemoteConfig *remoteConfig;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RNFirebaseRemoteConfig
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE(RNFirebaseRemoteConfig);
|
|
|
|
|
2017-05-25 14:24:53 +00:00
|
|
|
RCT_EXPORT_METHOD(enableDeveloperMode) {
|
2017-05-19 07:49:49 +00:00
|
|
|
FIRRemoteConfigSettings *remoteConfigSettings = [[FIRRemoteConfigSettings alloc] initWithDeveloperModeEnabled:YES];
|
2017-05-31 08:54:02 +00:00
|
|
|
[FIRRemoteConfig remoteConfig].configSettings = remoteConfigSettings;
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:24:53 +00:00
|
|
|
RCT_EXPORT_METHOD(fetch:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) {
|
2017-05-31 08:54:02 +00:00
|
|
|
[[FIRRemoteConfig remoteConfig] fetchWithCompletionHandler:^(FIRRemoteConfigFetchStatus status, NSError *__nullable error) {
|
2017-05-19 07:49:49 +00:00
|
|
|
if (error) {
|
|
|
|
RCTLogError(@"\nError: %@", RCTJSErrorFromNSError(error));
|
|
|
|
reject(convertFIRRemoteConfigFetchStatusToNSString(status), error.localizedDescription, error);
|
|
|
|
} else {
|
|
|
|
resolve(convertFIRRemoteConfigFetchStatusToNSString(status));
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:26:23 +00:00
|
|
|
RCT_EXPORT_METHOD(fetchWithExpirationDuration:(nonnull NSNumber *)expirationDuration
|
2017-05-19 07:49:49 +00:00
|
|
|
resolver:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
2017-05-31 08:54:02 +00:00
|
|
|
[[FIRRemoteConfig remoteConfig] fetchWithExpirationDuration:expirationDuration.doubleValue completionHandler:^(FIRRemoteConfigFetchStatus status, NSError *__nullable error) {
|
2017-05-19 07:49:49 +00:00
|
|
|
if (error) {
|
|
|
|
RCTLogError(@"\nError: %@", RCTJSErrorFromNSError(error));
|
|
|
|
reject(convertFIRRemoteConfigFetchStatusToNSString(status), error.localizedDescription, error);
|
|
|
|
} else {
|
|
|
|
resolve(convertFIRRemoteConfigFetchStatusToNSString(status));
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_METHOD(activateFetched:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
2017-05-31 08:54:02 +00:00
|
|
|
BOOL status = [[FIRRemoteConfig remoteConfig] activateFetched];
|
2017-05-23 10:51:16 +00:00
|
|
|
resolve(@(status));
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-23 13:08:59 +00:00
|
|
|
RCT_EXPORT_METHOD(getValue:(NSString *)key
|
2017-05-19 07:49:49 +00:00
|
|
|
resolver:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
2017-05-31 08:54:02 +00:00
|
|
|
FIRRemoteConfigValue *value = [[FIRRemoteConfig remoteConfig] configValueForKey:key];
|
2017-05-19 07:49:49 +00:00
|
|
|
resolve(convertFIRRemoteConfigValueToNSDictionary(value));
|
|
|
|
}
|
|
|
|
|
2017-05-23 13:08:59 +00:00
|
|
|
RCT_EXPORT_METHOD(getValues:(NSArray *)keys
|
2017-05-19 07:49:49 +00:00
|
|
|
resolver:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
2017-05-23 13:08:59 +00:00
|
|
|
NSMutableArray *valuesArray = [[NSMutableArray alloc] init];
|
2017-05-19 07:49:49 +00:00
|
|
|
for (NSString *key in keys) {
|
2017-05-31 08:54:02 +00:00
|
|
|
FIRRemoteConfigValue *value = [[FIRRemoteConfig remoteConfig] configValueForKey:key];
|
2017-05-23 13:08:59 +00:00
|
|
|
[valuesArray addObject:convertFIRRemoteConfigValueToNSDictionary(value)];
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
2017-05-23 13:08:59 +00:00
|
|
|
resolve(valuesArray);
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-23 13:08:59 +00:00
|
|
|
RCT_EXPORT_METHOD(getKeysByPrefix:(NSString *)prefix
|
2017-05-19 07:49:49 +00:00
|
|
|
resolver:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
2017-05-31 08:54:02 +00:00
|
|
|
NSSet *keys = [[FIRRemoteConfig remoteConfig] keysWithPrefix:prefix];
|
2017-05-23 13:08:59 +00:00
|
|
|
NSMutableArray *keysArray = [[NSMutableArray alloc] init];
|
|
|
|
for (NSString *key in keys) {
|
|
|
|
[keysArray addObject:key];
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
2017-05-23 13:08:59 +00:00
|
|
|
resolve(keysArray);
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:24:53 +00:00
|
|
|
RCT_EXPORT_METHOD(setDefaults:(NSDictionary *)defaults) {
|
2017-05-31 08:54:02 +00:00
|
|
|
[[FIRRemoteConfig remoteConfig] setDefaults:defaults];
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:24:53 +00:00
|
|
|
RCT_EXPORT_METHOD(setDefaultsFromResource:(NSString *)fileName) {
|
2017-05-31 08:54:02 +00:00
|
|
|
[[FIRRemoteConfig remoteConfig] setDefaultsFromPlistFileName:fileName];
|
2017-05-19 07:49:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2017-05-25 14:24:53 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
@implementation RNFirebaseRemoteConfig
|
|
|
|
@end
|
2017-05-31 08:54:02 +00:00
|
|
|
#endif
|