-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathset_encryption.dart
More file actions
286 lines (265 loc) · 8.7 KB
/
Copy pathset_encryption.dart
File metadata and controls
286 lines (265 loc) · 8.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// ignore_for_file: unnecessary_brace_in_string_interps
import 'dart:async';
import 'dart:convert';
import 'dart:typed_data';
import 'package:agora_rtc_engine/agora_rtc_engine.dart';
import 'package:agora_rtc_engine_example/config/agora.config.dart' as config;
import 'package:agora_rtc_engine_example/components/example_actions_widget.dart';
import 'package:agora_rtc_engine_example/components/log_sink.dart';
import 'package:flutter/material.dart';
/// SetEncryption Example
// ignore: use_key_in_widget_constructors
class SetEncryption extends StatefulWidget {
@override
State<StatefulWidget> createState() => _SetEncryptionState();
}
class _SetEncryptionState extends State<SetEncryption> {
late final RtcEngine _engine;
bool _isReadyPreview = false;
String channelId = config.channelId;
bool isJoined = false,
openMicrophone = true,
enableSpeakerphone = true,
playEffect = false;
late TextEditingController _controller;
Set<int> remoteUid = {};
// Only take 3 EncryptionMode for demo purpose
final List<EncryptionMode> encryptionModes = [
EncryptionMode.aes128Gcm2,
EncryptionMode.aes128Xts,
EncryptionMode.aes256Gcm,
];
late EncryptionMode _selectedEncryptionMode;
final TextEditingController _encryptionKey = TextEditingController();
late final TextEditingController _encryptionKdfSalt;
@override
void initState() {
super.initState();
_selectedEncryptionMode = encryptionModes[0];
_controller = TextEditingController(text: channelId);
_encryptionKdfSalt =
TextEditingController(text: 'EncryptionKdfSaltInBase64Strings');
_initEngine();
}
@override
void reassemble() {
super.reassemble();
_destroy();
}
@override
void dispose() {
_controller.dispose();
_encryptionKey.dispose();
_encryptionKdfSalt.dispose();
_destroy();
super.dispose();
}
Future<void> _initEngine() async {
_engine = createAgoraRtcEngine();
await _engine.initialize(RtcEngineContext(
appId: config.appId,
channelProfile: ChannelProfileType.channelProfileLiveBroadcasting,
));
_engine.registerEventHandler(RtcEngineEventHandler(
onError: (ErrorCodeType err, String msg) {
logSink.log('[onError] err: $err, msg: $msg');
},
onJoinChannelSuccess: (RtcConnection connection, int elapsed) {
logSink.log(
'[onJoinChannelSuccess] connection: ${connection.toJson()} elapsed: $elapsed');
setState(() {
isJoined = true;
});
},
onUserJoined: (RtcConnection connection, int rUid, int elapsed) {
logSink.log(
'[onUserJoined] connection: ${connection.toJson()} remoteUid: $rUid elapsed: $elapsed');
setState(() {
remoteUid.add(rUid);
});
},
onUserOffline:
(RtcConnection connection, int rUid, UserOfflineReasonType reason) {
logSink.log(
'[onUserOffline] connection: ${connection.toJson()} rUid: $rUid reason: $reason');
setState(() {
remoteUid.remove(rUid);
});
},
onLeaveChannel: (RtcConnection connection, RtcStats stats) {
logSink.log(
'[onLeaveChannel] connection: ${connection.toJson()} stats: ${stats.toJson()}');
setState(() {
remoteUid.clear();
isJoined = false;
});
},
onEncryptionError:
(RtcConnection connection, EncryptionErrorType errorType) {
logSink.log(
'[onEncryptionError] connection: ${connection.toJson()} errorType: ${errorType}');
},
));
await _engine.enableVideo();
await _engine.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
await _engine.startPreview();
setState(() {
_isReadyPreview = true;
});
}
Future<void> _destroy() async {
_leaveChannel();
await _engine.release();
}
Future<void> _joinChannel() async {
final EncryptionConfig encryptionConfig = EncryptionConfig(
encryptionMode: _selectedEncryptionMode,
encryptionKey: _encryptionKey.text,
encryptionKdfSalt:
Uint8List.fromList(utf8.encode(_encryptionKdfSalt.text)),
);
await _engine.enableEncryption(enabled: true, config: encryptionConfig);
await _engine.joinChannel(
token: config.token,
channelId: _controller.text,
uid: config.uid,
options: const ChannelMediaOptions());
}
Future<void> _leaveChannel() async {
await _engine.leaveChannel();
}
@override
Widget build(BuildContext context) {
return ExampleActionsWidget(
displayContentBuilder: (context, isLayoutHorizontal) {
if (!_isReadyPreview) return Container();
return Stack(
children: [
AgoraVideoView(
controller: VideoViewController(
rtcEngine: _engine,
canvas: const VideoCanvas(uid: 0),
),
),
Align(
alignment: Alignment.topLeft,
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: List.of(remoteUid.map(
(e) => SizedBox(
width: 120,
height: 120,
child: AgoraVideoView(
controller: VideoViewController.remote(
rtcEngine: _engine,
canvas: VideoCanvas(uid: e),
connection:
RtcConnection(channelId: _controller.text),
),
),
),
)),
),
),
)
],
);
},
actionsBuilder: (context, isLayoutHorizontal) {
final dropDownMenus = <DropdownMenuItem<EncryptionMode>>[];
for (var v in encryptionModes) {
dropDownMenus.add(DropdownMenuItem(
child: Text(
'$v',
style: const TextStyle(fontSize: 12),
),
value: v,
));
}
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
TextField(
controller: _controller,
decoration: const InputDecoration(hintText: 'Channel ID'),
// onChanged: (text) {
// setState(() {
// channelId = text;
// });
// },
),
const SizedBox(
height: 20,
),
const Text('Encryption Mode: '),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
DropdownButton<EncryptionMode>(
items: dropDownMenus,
value: _selectedEncryptionMode,
onChanged: isJoined
? null
: (v) {
setState(() {
_selectedEncryptionMode = v!;
});
},
),
],
),
const SizedBox(
height: 20,
),
const Text('Input Encryption Key: '),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expanded(
child: TextField(
controller: _encryptionKey,
readOnly: isJoined,
decoration:
const InputDecoration(hintText: 'Encryption Key'),
),
)
],
),
const SizedBox(
height: 20,
),
const Text('Input EncryptionKdfSalt: '),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Expanded(
child: TextField(
controller: _encryptionKdfSalt,
readOnly: isJoined,
),
),
],
),
Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: isJoined ? _leaveChannel : _joinChannel,
child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
),
)
],
),
],
);
},
);
}
}