Skip to content

Commit 6bbde2f

Browse files
committed
chore: web Cloud Functions stream wip
1 parent 1190fde commit 6bbde2f

File tree

5 files changed

+152
-3
lines changed

5 files changed

+152
-3
lines changed

packages/cloud_functions/cloud_functions_platform_interface/lib/src/platform_interface/platform_interface_firebase_functions.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ abstract class FirebaseFunctionsPlatform extends PlatformInterface {
7070
/// Creates a [HttpsCallablePlatform] instance from a [Uri]
7171
HttpsCallablePlatform httpsCallableWithUri(
7272
String? origin, Uri uri, HttpsCallableOptions options) {
73-
throw UnimplementedError('httpsCallable() is not implemented');
73+
throw UnimplementedError('httpsCallableWithUri() is not implemented');
7474
}
7575

7676
HttpsCallableStreamsPlatform httpsStreamCallable(
7777
String? origin,
7878
String name,
7979
) {
80-
throw UnimplementedError('httpsCallable() is not implemented');
80+
throw UnimplementedError('httpsStreamCallable() is not implemented');
8181
}
8282

8383
HttpsCallableStreamsPlatform httpsStreamCallableWithUri(

packages/cloud_functions/cloud_functions_web/lib/cloud_functions_web.dart

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// found in the LICENSE file.
55

66
import 'package:cloud_functions_platform_interface/cloud_functions_platform_interface.dart';
7+
import 'package:cloud_functions_web/https_callable_stream_web.dart';
78
import 'package:firebase_core/firebase_core.dart';
89
import 'package:firebase_core_web/firebase_core_web.dart';
910
import 'package:firebase_core_web/firebase_core_web_interop.dart'
@@ -62,4 +63,9 @@ class FirebaseFunctionsWeb extends FirebaseFunctionsPlatform {
6263
String? origin, Uri uri, HttpsCallableOptions options) {
6364
return HttpsCallableWeb(this, _delegate, origin, null, options, uri);
6465
}
66+
67+
@override
68+
HttpsCallableStreamsPlatform httpsStreamCallable(String? origin, String name) {
69+
return HttpsCallableStreamWeb(this, _delegate, origin, name, null);
70+
}
6571
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// ignore_for_file: require_trailing_commas
2+
// Copyright 2020, the Chromium project authors. Please see the AUTHORS file
3+
// for details. All rights reserved. Use of this source code is governed by a
4+
// BSD-style license that can be found in the LICENSE file.
5+
6+
import 'dart:js_interop';
7+
8+
import 'package:cloud_functions_platform_interface/cloud_functions_platform_interface.dart';
9+
10+
import 'interop/functions.dart' as functions_interop;
11+
12+
class HttpsCallableStreamWeb extends HttpsCallableStreamsPlatform {
13+
HttpsCallableStreamWeb(
14+
super.functions, this._webFunctions, super.origin, super.name, super.uri);
15+
16+
final functions_interop.Functions _webFunctions;
17+
18+
@override
19+
Future get data => throw UnimplementedError();
20+
21+
@override
22+
Stream<dynamic> stream(Object? parameters) async* {
23+
if (origin != null) {
24+
final uri = Uri.parse(origin!);
25+
26+
_webFunctions.useFunctionsEmulator(uri.host, uri.port);
27+
}
28+
29+
late functions_interop.HttpsCallable callable;
30+
31+
if (name != null) {
32+
callable = _webFunctions.httpsCallable(name!);
33+
} else if (uri != null) {
34+
callable = _webFunctions.httpsCallableUri(uri!);
35+
} else {
36+
throw ArgumentError('Either name or uri must be provided');
37+
}
38+
39+
final JSAny? parametersJS = parameters?.jsify();
40+
41+
await for (final value in callable.stream(parametersJS)){
42+
yield value;
43+
}
44+
}
45+
}

packages/cloud_functions/cloud_functions_web/lib/interop/functions.dart

+35-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// ignore_for_file: public_member_api_docs
77

88
import 'dart:js_interop';
9-
109
import 'package:firebase_core_web/firebase_core_web_interop.dart';
1110

1211
import 'functions_interop.dart' as functions_interop;
@@ -84,6 +83,19 @@ class HttpsCallable extends JsObjectWrapper<JSFunction> {
8483
result! as functions_interop.HttpsCallableResultJsImpl,
8584
);
8685
}
86+
87+
Stream<HttpsCallableResult> stream(JSAny? data) async* {
88+
final streamCallable =
89+
await (jsObject as functions_interop.HttpsCallable).stream().toDart;
90+
final streamResult =
91+
streamCallable! as functions_interop.HttpsCallableStreamResultJsImpl;
92+
93+
await for (final value in streamResult.stream.asStream()) {
94+
yield HttpsCallableResult.getInstance(
95+
value as functions_interop.HttpsCallableResultJsImpl,
96+
);
97+
}
98+
}
8799
}
88100

89101
/// Returns Dart representation from JS Object.
@@ -137,3 +149,25 @@ class HttpsCallableResult
137149
return _data;
138150
}
139151
}
152+
153+
class HttpsCallableStreamResult
154+
extends JsObjectWrapper<functions_interop.HttpsCallableStreamResultJsImpl> {
155+
HttpsCallableStreamResult._fromJsObject(
156+
functions_interop.HttpsCallableStreamResultJsImpl jsObject)
157+
: _data = _dartify(jsObject.data),
158+
super.fromJsObject(jsObject);
159+
160+
static final _expando = Expando<HttpsCallableStreamResult>();
161+
final dynamic _data;
162+
163+
/// Creates a new HttpsCallableResult from a [jsObject].
164+
static HttpsCallableStreamResult getInstance(
165+
functions_interop.HttpsCallableStreamResultJsImpl jsObject) {
166+
return _expando[jsObject] ??=
167+
HttpsCallableStreamResult._fromJsObject(jsObject);
168+
}
169+
170+
dynamic get data {
171+
return _data;
172+
}
173+
}

packages/cloud_functions/cloud_functions_web/lib/interop/functions_interop.dart

+64
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,67 @@ abstract class HttpsCallableResultJsImpl {}
7676
extension HttpsCallableResultJsImplExtension on HttpsCallableResultJsImpl {
7777
external JSAny? get data;
7878
}
79+
80+
@JS('HttpsCallable')
81+
@staticInterop
82+
class HttpsCallable {}
83+
84+
extension HttpsCallableExtension on HttpsCallable {
85+
external JSPromise stream(
86+
[JSAny? data, HttpsCallableStreamOptions? options]);
87+
}
88+
89+
90+
@JS('HttpsCallableStreamResult')
91+
@staticInterop
92+
class HttpsCallableStreamResultJsImpl {}
93+
94+
extension HttpsCallableStreamResultJsImplExtension
95+
on HttpsCallableStreamResultJsImpl {
96+
external JSPromise data;
97+
external JsAsyncIterator<JSAny> stream;
98+
}
99+
100+
101+
@JS('HttpsCallableStreamOptions')
102+
@staticInterop
103+
@anonymous
104+
abstract class HttpsCallableStreamOptions {
105+
external factory HttpsCallableStreamOptions(
106+
{JSBoolean? limitedUseAppCheckTokens});
107+
}
108+
109+
extension HttpsCallableStreamOptionsExtension on HttpsCallableStreamOptions {
110+
external JSBoolean? get limitedUseAppCheckTokens;
111+
external set limitedUseAppCheckTokens(JSBoolean? t);
112+
}
113+
114+
extension type JsAsyncIterator<T extends JSAny>._(JSObject _)
115+
implements JSObject {
116+
external JSPromise<JsAsyncIteratorState<T>> next();
117+
118+
Stream<T> asStream() async* {
119+
this as SymbolJsImpl;
120+
while (true) {
121+
final result = await next().toDart;
122+
if (result.done) break;
123+
yield result.value;
124+
}
125+
}
126+
}
127+
128+
extension type JsAsyncIteratorState<T extends JSAny>._(JSObject _)
129+
implements JSObject {
130+
external bool get done;
131+
132+
external T get value;
133+
}
134+
135+
136+
@JS('Symbol')
137+
@staticInterop
138+
extension type SymbolJsImpl(JSObject _) implements JSObject {
139+
140+
@JS('asyncIterator')
141+
external static JSSymbol asyncIterator;
142+
}

0 commit comments

Comments
 (0)