2017-05-19 07:49:49 +00:00
|
|
|
#import "RNFirebaseRemoteConfig.h"
|
|
|
|
|
|
|
|
#if __has_include(<React/RCTConvert.h>)
|
|
|
|
#import <React/RCTConvert.h>
|
|
|
|
#else // Compatibility for RN version < 0.40
|
|
|
|
#import "RCTConvert.h"
|
|
|
|
#endif
|
|
|
|
#if __has_include(<React/RCTUtils.h>)
|
|
|
|
#import <React/RCTUtils.h>
|
|
|
|
#else // Compatibility for RN version < 0.40
|
|
|
|
#import "RCTUtils.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#import "FirebaseRemoteConfig/FirebaseRemoteConfig.h"
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
if (self = [super init]) {
|
|
|
|
_remoteConfig = [FIRRemoteConfig remoteConfig];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_METHOD(enableDeveloperMode)
|
|
|
|
{
|
|
|
|
FIRRemoteConfigSettings *remoteConfigSettings = [[FIRRemoteConfigSettings alloc] initWithDeveloperModeEnabled:YES];
|
|
|
|
self.remoteConfig.configSettings = remoteConfigSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_METHOD(fetch:(RCTPromiseResolveBlock)resolve
|
|
|
|
rejecter:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
|
|
|
[self.remoteConfig fetchWithCompletionHandler:^(FIRRemoteConfigFetchStatus status, NSError *__nullable error) {
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
[self.remoteConfig fetchWithExpirationDuration:expirationDuration.doubleValue completionHandler:^(FIRRemoteConfigFetchStatus status, NSError *__nullable error) {
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
BOOL status = [self.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)
|
|
|
|
{
|
|
|
|
FIRRemoteConfigValue *value = [self.remoteConfig configValueForKey:key];
|
|
|
|
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) {
|
|
|
|
FIRRemoteConfigValue *value = [self.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)
|
|
|
|
{
|
|
|
|
NSSet *keys = [self.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
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_METHOD(setDefaults:(NSDictionary *)defaults)
|
|
|
|
{
|
|
|
|
[self.remoteConfig setDefaults:defaults];
|
|
|
|
}
|
|
|
|
|
2017-05-23 13:53:19 +00:00
|
|
|
RCT_EXPORT_METHOD(setDefaultsFromResource:(NSString *)fileName)
|
2017-05-19 07:49:49 +00:00
|
|
|
{
|
|
|
|
[self.remoteConfig setDefaultsFromPlistFileName:fileName];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|