-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpermissions_block.dart
242 lines (205 loc) · 7.74 KB
/
permissions_block.dart
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
import 'dart:async';
import 'dart:io';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:twilio_voice/twilio_voice.dart';
import '../../utils.dart';
import 'permission_tile.dart';
class PermissionsBlock extends StatefulWidget {
const PermissionsBlock({super.key});
@override
State<PermissionsBlock> createState() => _PermissionsBlockState();
}
class _PermissionsBlockState extends State<PermissionsBlock> with WidgetsBindingObserver {
late final StreamSubscription<CallEvent> _subscription;
AppLifecycleState? _lastLifecycleState;
final _tv = TwilioVoice.instance;
bool activeCall = false;
//#region #region Permissions
bool _hasMicPermission = false;
set setMicPermission(bool value) {
setState(() {
_hasMicPermission = value;
});
}
bool _hasRegisteredPhoneAccount = false;
set setPhoneAccountRegistered(bool value) {
setState(() {
_hasRegisteredPhoneAccount = value;
});
}
bool _hasCallPhonePermission = false;
set setCallPhonePermission(bool value) {
setState(() {
_hasCallPhonePermission = value;
});
}
bool _hasManageCallsPermission = false;
set setManageCallsPermission(bool value) {
setState(() {
_hasManageCallsPermission = value;
});
}
bool _isPhoneAccountEnabled = false;
set setIsPhoneAccountEnabled(bool value) {
setState(() {
_isPhoneAccountEnabled = value;
});
}
bool _hasReadPhoneStatePermission = false;
set setReadPhoneStatePermission(bool value) {
setState(() {
_hasReadPhoneStatePermission = value;
});
}
bool _hasReadPhoneNumbersPermission = false;
set setReadPhoneNumbersPermission(bool value) {
setState(() {
_hasReadPhoneNumbersPermission = value;
});
}
bool _hasBackgroundPermissions = false;
set setBackgroundPermission(bool value) {
setState(() {
_hasBackgroundPermissions = value;
});
}
//#endregion
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
printDebug("AppLifecycleState: $state");
if (_lastLifecycleState != state && state == AppLifecycleState.resumed) {
_updatePermissions();
}
_lastLifecycleState = state;
}
@override
void initState() {
super.initState();
_updatePermissions();
}
void _updatePermissions() {
// get all permission states
_tv.hasMicAccess().then((value) => setMicPermission = value);
_tv.hasReadPhoneStatePermission().then((value) => setReadPhoneStatePermission = value);
_tv.hasReadPhoneNumbersPermission().then((value) => setReadPhoneNumbersPermission = value);
if (firebaseEnabled && Firebase.apps.isNotEmpty) {
FirebaseMessaging.instance.requestPermission().then((value) => setBackgroundPermission = value.authorizationStatus == AuthorizationStatus.authorized);
}
_tv.hasCallPhonePermission().then((value) => setCallPhonePermission = value);
_tv.hasManageOwnCallsPermission().then((value) => setManageCallsPermission = value);
_tv.hasRegisteredPhoneAccount().then((value) => setPhoneAccountRegistered = value);
_tv.isPhoneAccountEnabled().then((value) => setIsPhoneAccountEnabled = value);
}
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
child: Column(
children: [
// permissions
Text("Permissions", style: Theme.of(context).textTheme.titleLarge),
Column(
children: [
PermissionTile(
icon: Icons.mic,
title: "Microphone",
granted: _hasMicPermission,
onRequestPermission: () async {
await _tv.requestMicAccess();
setMicPermission = await _tv.hasMicAccess();
},
),
if (firebaseEnabled && Firebase.apps.isNotEmpty)
PermissionTile(
icon: Icons.notifications,
title: "Notifications",
granted: _hasBackgroundPermissions,
onRequestPermission: () async {
await FirebaseMessaging.instance.requestPermission();
final settings = await FirebaseMessaging.instance.getNotificationSettings();
setBackgroundPermission = settings.authorizationStatus == AuthorizationStatus.authorized;
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
PermissionTile(
icon: Icons.phone,
title: "Read Phone State",
granted: _hasReadPhoneStatePermission,
onRequestPermission: () async {
await _tv.requestReadPhoneStatePermission();
setReadPhoneStatePermission = await _tv.hasReadPhoneStatePermission();
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
PermissionTile(
icon: Icons.phone,
title: "Read Phone Numbers",
granted: _hasReadPhoneNumbersPermission,
onRequestPermission: () async {
await _tv.requestReadPhoneNumbersPermission();
setReadPhoneNumbersPermission = await _tv.hasReadPhoneNumbersPermission();
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
PermissionTile(
icon: Icons.call_made,
title: "Call Phone",
granted: _hasCallPhonePermission,
onRequestPermission: () async {
await _tv.requestCallPhonePermission();
setCallPhonePermission = await _tv.hasCallPhonePermission();
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
PermissionTile(
icon: Icons.call_received,
title: "Manage Calls",
granted: _hasManageCallsPermission,
onRequestPermission: () async {
await _tv.requestManageOwnCallsPermission();
setManageCallsPermission = await _tv.hasManageOwnCallsPermission();
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
PermissionTile(
icon: Icons.phonelink_setup,
title: "Phone Account",
granted: _hasRegisteredPhoneAccount,
onRequestPermission: () async {
await _tv.registerPhoneAccount();
setPhoneAccountRegistered = await _tv.hasRegisteredPhoneAccount();
},
),
// if android
if (!kIsWeb && Platform.isAndroid)
ListTile(
enabled: _hasRegisteredPhoneAccount,
dense: true,
leading: const Icon(Icons.phonelink_lock_outlined),
title: const Text("Phone Account Status"),
subtitle: Text(_hasRegisteredPhoneAccount ? (_isPhoneAccountEnabled ? "Enabled" : "Not Enabled") : "Not Registered"),
trailing: ElevatedButton(
onPressed: _hasRegisteredPhoneAccount && !_isPhoneAccountEnabled ? () => _tv.openPhoneAccountSettings() : null,
child: const Text("Open Settings"),
),
),
],
),
],
),
);
}
@override
void dispose() {
WidgetsBinding.instance.removeObserver(this);
_subscription.cancel();
super.dispose();
}
}