Skip to content

Commit 3717182

Browse files
committed
feat(app_check, mobile): add option to pass debugTokens in initialization
1 parent 43d8158 commit 3717182

File tree

10 files changed

+60
-11
lines changed

10 files changed

+60
-11
lines changed

packages/firebase_app_check/firebase_app_check/android/src/main/java/io/flutter/plugins/firebase/appcheck/FlutterFirebaseAppCheckPlugin.java

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ private Task<Void> activate(Map<String, Object> arguments) {
102102
case debugProvider:
103103
{
104104
FirebaseAppCheck firebaseAppCheck = getAppCheck(arguments);
105+
FlutterFirebaseAppRegistrar.debugToken = (String) arguments.get("androidDebugToken");
105106
firebaseAppCheck.installAppCheckProviderFactory(
106107
DebugAppCheckProviderFactory.getInstance());
107108
break;

packages/firebase_app_check/firebase_app_check/android/src/main/java/io/flutter/plugins/firebase/appcheck/FlutterFirebaseAppRegistrar.java

+24-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,38 @@
55
package io.flutter.plugins.firebase.appcheck;
66

77
import androidx.annotation.Keep;
8+
import androidx.annotation.Nullable;
9+
10+
import com.google.firebase.appcheck.debug.InternalDebugSecretProvider;
811
import com.google.firebase.components.Component;
912
import com.google.firebase.components.ComponentRegistrar;
1013
import com.google.firebase.platforminfo.LibraryVersionComponent;
14+
15+
import java.util.Arrays;
1116
import java.util.Collections;
1217
import java.util.List;
1318

1419
@Keep
15-
public class FlutterFirebaseAppRegistrar implements ComponentRegistrar {
20+
public class FlutterFirebaseAppRegistrar implements ComponentRegistrar, InternalDebugSecretProvider {
21+
private static final String DEBUG_SECRET_NAME = "fire-app-check-debug-secret";
22+
23+
public static String debugToken;
24+
1625
@Override
1726
public List<Component<?>> getComponents() {
18-
return Collections.<Component<?>>singletonList(
19-
LibraryVersionComponent.create(BuildConfig.LIBRARY_NAME, BuildConfig.LIBRARY_VERSION));
27+
Component<?> library = LibraryVersionComponent.create(BuildConfig.LIBRARY_NAME,
28+
BuildConfig.LIBRARY_VERSION);
29+
30+
Component<InternalDebugSecretProvider> debugSecretProvider = Component.builder(InternalDebugSecretProvider.class)
31+
.name(DEBUG_SECRET_NAME)
32+
.factory(container -> this).build();
33+
34+
return Arrays.<Component<?>>asList(library, debugSecretProvider);
35+
}
36+
37+
@Nullable
38+
@Override
39+
public String getDebugSecret() {
40+
return debugToken;
2041
}
2142
}

packages/firebase_app_check/firebase_app_check/ios/Classes/FLTAppCheckProvider.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@property id<FIRAppCheckProvider> delegateProvider;
1313

14-
- (void)configure:(FIRApp *)app providerName:(NSString *)providerName;
14+
- (void)configure:(FIRApp *)app providerName:(NSString *)providerName debugToken:(NSString *)debugToken;
1515

1616
- (id)initWithApp:(FIRApp *)app;
1717

packages/firebase_app_check/firebase_app_check/ios/Classes/FLTAppCheckProvider.m

+11-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,19 @@ - (id)initWithApp:app {
1414
return self;
1515
}
1616

17-
- (void)configure:(FIRApp *)app providerName:(NSString *)providerName {
17+
- (void)configure:(FIRApp *)app
18+
providerName:(NSString *)providerName
19+
debugToken:(NSString *)debugToken {
1820
if ([providerName isEqualToString:@"debug"]) {
21+
if (debugToken != nil) {
22+
// We have a debug token, so just need to stuff it in the environment and it will hook up
23+
char *key = "FIRAAppCheckDebugToken", *value = (char *) [debugToken UTF8String];
24+
int overwrite = 1;
25+
setenv(key, value, overwrite);
26+
}
27+
1928
FIRAppCheckDebugProvider *provider = [[FIRAppCheckDebugProvider alloc] initWithApp:app];
20-
NSLog(@"Firebase App Check Debug Token: %@", [provider localDebugToken]);
29+
if(debugToken == nil) NSLog(@"Firebase App Check Debug Token: %@", [provider localDebugToken]);
2130
self.delegateProvider = provider;
2231
}
2332

packages/firebase_app_check/firebase_app_check/ios/Classes/FLTAppCheckProviderFactory.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
@property NSMutableDictionary *_Nullable providers;
99

10-
- (void)configure:(FIRApp *_Nonnull)app providerName:(NSString *_Nonnull)providerName;
10+
- (void)configure:(FIRApp *_Nonnull)app providerName:(NSString *_Nonnull)providerName debugToken:(NSString *)debugToken;
1111

1212
@end

packages/firebase_app_check/firebase_app_check/ios/Classes/FLTAppCheckProviderFactory.m

+5-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ @implementation FLTAppCheckProviderFactory
2424
self.providers[app.name] = [FLTAppCheckProvider new];
2525
FLTAppCheckProvider *provider = self.providers[app.name];
2626
// We set "deviceCheck" as this is currently what is default. Backward compatible.
27-
[provider configure:app providerName:@"deviceCheck"];
27+
[provider configure:app providerName:@"deviceCheck" debugToken:nil];
2828
}
2929

3030
return self.providers[app.name];
3131
}
3232

33-
- (void)configure:(FIRApp *)app providerName:(NSString *)providerName {
33+
- (void)configure:(FIRApp *)app
34+
providerName:(NSString *)providerName
35+
debugToken:(NSString *)debugToken {
3436
if (self.providers == nil) {
3537
self.providers = [NSMutableDictionary new];
3638
}
@@ -40,7 +42,7 @@ - (void)configure:(FIRApp *)app providerName:(NSString *)providerName {
4042
}
4143

4244
FLTAppCheckProvider *provider = self.providers[app.name];
43-
[provider configure:app providerName:providerName];
45+
[provider configure:app providerName:providerName debugToken:debugToken];
4446
}
4547

4648
@end

packages/firebase_app_check/firebase_app_check/ios/Classes/FLTFirebaseAppCheckPlugin.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,10 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)flutter
118118
- (void)activate:(id)arguments withMethodCallResult:(FLTFirebaseMethodCallResult *)result {
119119
NSString *appNameDart = arguments[@"appName"];
120120
NSString *providerName = arguments[@"appleProvider"];
121+
NSString *debugToken = arguments[@"iosDebugToken"];
121122

122123
FIRApp *app = [FLTFirebasePlugin firebaseAppNamed:appNameDart];
123-
[self->providerFactory configure:app providerName:providerName];
124+
[self->providerFactory configure:app providerName:providerName debugToken:debugToken];
124125
result.success(nil);
125126
}
126127

packages/firebase_app_check/firebase_app_check/lib/src/firebase_app_check.dart

+7
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,23 @@ class FirebaseAppCheck extends FirebasePluginPlatform {
5555
/// On iOS or macOS, the default provider is "device check". If you wish to set the provider to "app attest", "debug" or "app attest with fallback to device check"
5656
/// ("app attest" is only available on iOS 14.0+, macOS 14.0+), you may set the `appleProvider` property using the `AppleProvider` enum
5757
///
58+
/// `androidDebugToken` and `iosDebugToken` allow you to set a debug token for the "debug" provider on Android and iOS respectively.
59+
/// On iOS you have to rerun app after changing `iosDebugToken`.
60+
///
5861
/// For more information, see [the Firebase Documentation](https://firebase.google.com/docs/app-check)
5962
Future<void> activate({
6063
WebProvider? webProvider,
6164
AndroidProvider androidProvider = AndroidProvider.playIntegrity,
6265
AppleProvider appleProvider = AppleProvider.deviceCheck,
66+
String? androidDebugToken,
67+
String? iosDebugToken,
6368
}) {
6469
return _delegate.activate(
6570
webProvider: webProvider,
6671
androidProvider: androidProvider,
6772
appleProvider: appleProvider,
73+
androidDebugToken: androidDebugToken,
74+
iosDebugToken: iosDebugToken,
6875
);
6976
}
7077

packages/firebase_app_check/firebase_app_check_platform_interface/lib/src/method_channel/method_channel_firebase_app_check.dart

+6
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,21 @@ class MethodChannelFirebaseAppCheck extends FirebaseAppCheckPlatform {
7979
WebProvider? webProvider,
8080
AndroidProvider? androidProvider,
8181
AppleProvider? appleProvider,
82+
String? androidDebugToken,
83+
String? iosDebugToken,
8284
}) async {
8385
try {
8486
await channel.invokeMethod<void>('FirebaseAppCheck#activate', {
8587
'appName': app.name,
8688
// Allow value to pass for debug mode for unit testing
8789
if (Platform.isAndroid || kDebugMode)
8890
'androidProvider': getAndroidProviderString(androidProvider),
91+
if(androidDebugToken != null)
92+
'androidDebugToken': androidDebugToken,
8993
if (Platform.isIOS || Platform.isMacOS || kDebugMode)
9094
'appleProvider': getAppleProviderString(appleProvider),
95+
if(iosDebugToken != null)
96+
'iosDebugToken': iosDebugToken,
9197
});
9298
} on PlatformException catch (e, s) {
9399
convertPlatformException(e, s);

packages/firebase_app_check/firebase_app_check_platform_interface/lib/src/platform_interface/platform_interface_firebase_app_check.dart

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ abstract class FirebaseAppCheckPlatform extends PlatformInterface {
6666
WebProvider? webProvider,
6767
AndroidProvider? androidProvider,
6868
AppleProvider? appleProvider,
69+
String? androidDebugToken,
70+
String? iosDebugToken,
6971
}) {
7072
throw UnimplementedError('activate() is not implemented');
7173
}

0 commit comments

Comments
 (0)