2020-11-24 14:27:07 +01:00
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-12-25 09:58:34 +01:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2020-11-24 14:27:07 +01:00
|
|
|
import 'package:fluffychat/components/matrix.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
|
|
|
|
class Settings3Pid extends StatefulWidget {
|
|
|
|
static int sendAttempt = 0;
|
|
|
|
|
|
|
|
@override
|
|
|
|
_Settings3PidState createState() => _Settings3PidState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _Settings3PidState extends State<Settings3Pid> {
|
|
|
|
void _add3PidAction(BuildContext context) async {
|
|
|
|
final input = await showTextInputDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).enterAnEmailAddress,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: L10n.of(context).enterAnEmailAddress,
|
|
|
|
keyboardType: TextInputType.emailAddress,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (input == null) return;
|
|
|
|
final clientSecret = DateTime.now().millisecondsSinceEpoch.toString();
|
2020-12-25 09:58:34 +01:00
|
|
|
final response = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context).client.requestEmailToken(
|
2020-11-24 14:27:07 +01:00
|
|
|
input.single,
|
|
|
|
clientSecret,
|
|
|
|
Settings3Pid.sendAttempt++,
|
|
|
|
),
|
|
|
|
);
|
2020-12-25 09:58:34 +01:00
|
|
|
if (response.error != null) return;
|
2020-11-24 14:27:07 +01:00
|
|
|
final ok = await showOkAlertDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).weSentYouAnEmail,
|
|
|
|
message: L10n.of(context).pleaseClickOnLink,
|
|
|
|
okLabel: L10n.of(context).iHaveClickedOnLink,
|
|
|
|
);
|
|
|
|
if (ok == null) return;
|
|
|
|
final password = await showTextInputDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).pleaseEnterYourPassword,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: '******',
|
|
|
|
obscureText: true,
|
2020-12-10 15:06:02 +01:00
|
|
|
minLines: 1,
|
|
|
|
maxLines: 1,
|
2020-11-24 14:27:07 +01:00
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (password == null) return;
|
2020-12-25 09:58:34 +01:00
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context).client.uiaRequestBackground(
|
2020-12-11 10:27:38 +01:00
|
|
|
(auth) => Matrix.of(context).client.addThirdPartyIdentifier(
|
2020-11-24 14:27:07 +01:00
|
|
|
clientSecret,
|
|
|
|
(response as RequestTokenResponse).sid,
|
|
|
|
auth: auth,
|
2020-12-11 10:27:38 +01:00
|
|
|
),
|
|
|
|
),
|
2020-11-24 14:27:07 +01:00
|
|
|
);
|
2020-12-25 09:58:34 +01:00
|
|
|
if (success.error != null) return;
|
2020-11-24 14:27:07 +01:00
|
|
|
setState(() => _request = null);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<List<ThirdPartyIdentifier>> _request;
|
|
|
|
|
|
|
|
void _delete3Pid(
|
|
|
|
BuildContext context, ThirdPartyIdentifier identifier) async {
|
|
|
|
if (await showOkCancelAlertDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).areYouSure,
|
|
|
|
) !=
|
|
|
|
OkCancelResult.ok) {
|
|
|
|
return;
|
|
|
|
}
|
2020-12-25 09:58:34 +01:00
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context).client.deleteThirdPartyIdentifier(
|
2020-11-24 14:27:07 +01:00
|
|
|
identifier.address,
|
|
|
|
identifier.medium,
|
|
|
|
));
|
2020-12-25 09:58:34 +01:00
|
|
|
if (success.error != null) return;
|
2020-11-24 14:27:07 +01:00
|
|
|
setState(() => _request = null);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
_request ??= Matrix.of(context).client.requestThirdPartyIdentifiers();
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2021-01-16 14:24:52 +01:00
|
|
|
leading: BackButton(),
|
2020-11-24 14:27:07 +01:00
|
|
|
title: Text(L10n.of(context).passwordRecovery),
|
|
|
|
actions: [
|
|
|
|
IconButton(
|
2020-12-06 10:31:35 +01:00
|
|
|
icon: Icon(Icons.add_outlined),
|
2020-11-24 14:27:07 +01:00
|
|
|
onPressed: () => _add3PidAction(context),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
body: FutureBuilder<List<ThirdPartyIdentifier>>(
|
|
|
|
future: _request,
|
|
|
|
builder: (BuildContext context,
|
|
|
|
AsyncSnapshot<List<ThirdPartyIdentifier>> snapshot) {
|
|
|
|
if (snapshot.hasError) {
|
|
|
|
return Center(
|
|
|
|
child: Text(
|
|
|
|
snapshot.error.toString(),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!snapshot.hasData) {
|
|
|
|
return Center(child: CircularProgressIndicator());
|
|
|
|
}
|
|
|
|
final identifier = snapshot.data;
|
|
|
|
return Column(
|
|
|
|
children: [
|
|
|
|
ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
foregroundColor:
|
|
|
|
identifier.isEmpty ? Colors.orange : Colors.grey,
|
|
|
|
child: Icon(
|
2020-12-06 10:31:35 +01:00
|
|
|
identifier.isEmpty
|
|
|
|
? Icons.warning_outlined
|
|
|
|
: Icons.info_outlined,
|
2020-11-24 14:27:07 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
title: Text(
|
|
|
|
identifier.isEmpty
|
|
|
|
? L10n.of(context).noPasswordRecoveryDescription
|
|
|
|
: L10n.of(context).withTheseAddressesRecoveryDescription,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
Expanded(
|
|
|
|
child: ListView.builder(
|
|
|
|
itemCount: identifier.length,
|
|
|
|
itemBuilder: (BuildContext context, int i) => ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundColor:
|
|
|
|
Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
foregroundColor: Colors.grey,
|
|
|
|
child: Icon(identifier[i].iconData)),
|
|
|
|
title: Text(identifier[i].address),
|
|
|
|
trailing: IconButton(
|
2020-12-06 10:31:35 +01:00
|
|
|
icon: Icon(Icons.delete_forever_outlined),
|
2020-11-24 14:27:07 +01:00
|
|
|
color: Colors.red,
|
|
|
|
onPressed: () => _delete3Pid(context, identifier[i]),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension on ThirdPartyIdentifier {
|
|
|
|
IconData get iconData {
|
|
|
|
switch (medium) {
|
|
|
|
case ThirdPartyIdentifierMedium.email:
|
|
|
|
return Icons.mail_outline_rounded;
|
|
|
|
case ThirdPartyIdentifierMedium.msisdn:
|
|
|
|
return Icons.phone_android_outlined;
|
|
|
|
}
|
|
|
|
return Icons.device_unknown_outlined;
|
|
|
|
}
|
|
|
|
}
|