fluffychat/lib/views/sign_up_password.dart

191 lines
6.6 KiB
Dart
Raw Normal View History

2021-02-01 11:08:29 +01:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-04-03 13:09:20 +02:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
2020-01-09 22:52:27 +01:00
import 'package:famedlysdk/famedlysdk.dart';
2020-10-04 17:01:54 +02:00
2020-01-09 22:52:27 +01:00
import 'package:fluffychat/components/matrix.dart';
2021-04-09 14:56:23 +02:00
import 'package:fluffychat/components/one_page_card.dart';
2020-01-09 22:52:27 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-02-01 11:08:29 +01:00
import 'package:url_launcher/url_launcher.dart';
2021-02-07 17:18:38 +01:00
import '../utils/platform_infos.dart';
2020-01-09 22:52:27 +01:00
class SignUpPassword extends StatefulWidget {
2020-10-04 17:01:54 +02:00
final MatrixFile avatar;
2020-01-09 22:52:27 +01:00
final String username;
final String displayname;
const SignUpPassword(this.username, {this.avatar, this.displayname});
@override
_SignUpPasswordState createState() => _SignUpPasswordState();
}
class _SignUpPasswordState extends State<SignUpPassword> {
final TextEditingController passwordController = TextEditingController();
String passwordError;
2021-01-16 15:15:22 +01:00
String _lastAuthWebViewStage;
2020-01-09 22:52:27 +01:00
bool loading = false;
bool showPassword = true;
2020-12-11 10:27:38 +01:00
void _signUpAction(BuildContext context, {AuthenticationData auth}) async {
2020-05-13 15:58:59 +02:00
var matrix = Matrix.of(context);
2020-01-09 22:52:27 +01:00
if (passwordController.text.isEmpty) {
2020-05-07 07:52:40 +02:00
setState(() => passwordError = L10n.of(context).pleaseEnterYourPassword);
2020-01-09 22:52:27 +01:00
} else {
setState(() => passwordError = null);
}
if (passwordController.text.isEmpty) {
return;
}
try {
2020-01-14 15:53:35 +01:00
setState(() => loading = true);
2020-05-13 15:58:59 +02:00
var waitForLogin = matrix.client.onLoginStateChanged.stream.first;
2020-01-14 13:21:15 +01:00
await matrix.client.register(
2020-01-09 22:52:27 +01:00
username: widget.username,
password: passwordController.text,
2021-02-07 17:18:38 +01:00
initialDeviceDisplayName: PlatformInfos.clientName,
2020-01-09 22:52:27 +01:00
auth: auth,
);
2020-01-14 13:21:15 +01:00
await waitForLogin;
2020-01-09 22:52:27 +01:00
} on MatrixException catch (exception) {
2020-01-14 13:21:15 +01:00
if (exception.requireAdditionalAuthentication) {
2020-05-13 15:58:59 +02:00
final stages = exception.authenticationFlows
.firstWhere((a) => !a.stages.contains('m.login.email.identity'))
2020-01-14 15:53:35 +01:00
.stages;
2020-05-13 15:58:59 +02:00
final currentStage = exception.completedAuthenticationFlows == null
? stages.first
: stages.firstWhere((stage) =>
!exception.completedAuthenticationFlows.contains(stage) ??
true);
2020-01-17 09:18:05 +01:00
2020-05-13 15:58:59 +02:00
if (currentStage == 'm.login.dummy') {
2020-12-11 10:27:38 +01:00
_signUpAction(
context,
auth: AuthenticationData(
type: currentStage,
session: exception.session,
),
);
2020-01-14 13:21:15 +01:00
} else {
2021-01-16 15:15:22 +01:00
if (_lastAuthWebViewStage == currentStage) {
2021-01-16 15:18:32 +01:00
_lastAuthWebViewStage = null;
2021-01-16 15:15:22 +01:00
setState(
() => passwordError = L10n.of(context).oopsSomethingWentWrong);
return setState(() => loading = false);
}
_lastAuthWebViewStage = currentStage;
2021-02-01 11:08:29 +01:00
await launch(
Matrix.of(context).client.homeserver.toString() +
'/_matrix/client/r0/auth/$currentStage/fallback/web?session=${exception.session}',
);
if (OkCancelResult.ok ==
await showOkCancelAlertDialog(
message: L10n.of(context).pleaseFollowInstructionsOnWeb,
2021-02-01 11:08:29 +01:00
context: context,
okLabel: L10n.of(context).next,
cancelLabel: L10n.of(context).cancel,
2021-02-24 12:17:23 +01:00
useRootNavigator: false,
2021-02-01 11:08:29 +01:00
)) {
_signUpAction(
2020-01-14 15:53:35 +01:00
context,
2021-01-16 12:46:38 +01:00
auth: AuthenticationData(session: exception.session),
2021-02-01 11:08:29 +01:00
);
} else {
setState(() {
loading = false;
passwordError = null;
});
2021-02-01 11:08:29 +01:00
}
2020-01-14 12:16:29 +01:00
return;
2020-01-09 23:15:32 +01:00
}
2020-01-14 13:21:15 +01:00
} else {
setState(() => passwordError = exception.errorMessage);
return setState(() => loading = false);
2020-01-09 23:15:32 +01:00
}
2020-01-14 13:21:15 +01:00
} catch (exception) {
setState(() => passwordError = exception.toString());
return setState(() => loading = false);
}
2020-01-29 10:36:30 +01:00
await matrix.client.onLoginStateChanged.stream
.firstWhere((l) => l == LoginState.logged);
2020-01-14 13:21:15 +01:00
try {
2020-08-16 12:54:43 +02:00
await matrix.client
.setDisplayname(matrix.client.userID, widget.displayname);
2020-01-14 13:21:15 +01:00
} catch (exception) {
2021-04-03 13:09:20 +02:00
AdaptivePageLayout.of(context).showSnackBar(
SnackBar(content: Text(L10n.of(context).couldNotSetDisplayname)));
2020-01-14 13:21:15 +01:00
}
2020-01-29 10:36:30 +01:00
if (widget.avatar != null) {
try {
2020-10-04 17:01:54 +02:00
await matrix.client.setAvatar(widget.avatar);
2020-01-29 10:36:30 +01:00
} catch (exception) {
2021-04-03 13:09:20 +02:00
AdaptivePageLayout.of(context).showSnackBar(
SnackBar(content: Text(L10n.of(context).couldNotSetAvatar)));
2020-01-29 10:36:30 +01:00
}
2020-01-14 15:53:35 +01:00
}
2021-01-16 12:46:38 +01:00
if (mounted) setState(() => loading = false);
2020-01-09 22:52:27 +01:00
}
@override
Widget build(BuildContext context) {
2021-04-09 14:56:23 +02:00
return OnePageCard(
child: Scaffold(
appBar: AppBar(
elevation: 0,
leading: loading ? Container() : BackButton(),
title: Text(
L10n.of(context).chooseAStrongPassword,
),
2020-04-12 10:35:45 +02:00
),
2021-04-09 14:56:23 +02:00
body: ListView(
children: <Widget>[
Padding(
padding: const EdgeInsets.all(12.0),
child: TextField(
controller: passwordController,
obscureText: !showPassword,
autofocus: true,
readOnly: loading,
autocorrect: false,
onSubmitted: (t) => _signUpAction(context),
autofillHints: loading ? null : [AutofillHints.newPassword],
decoration: InputDecoration(
prefixIcon: Icon(Icons.lock_outlined),
hintText: '****',
errorText: passwordError,
suffixIcon: IconButton(
tooltip: L10n.of(context).showPassword,
icon: Icon(showPassword
? Icons.visibility_off_outlined
: Icons.visibility_outlined),
onPressed: () =>
setState(() => showPassword = !showPassword),
),
labelText: L10n.of(context).password),
),
2020-01-09 22:52:27 +01:00
),
2021-04-09 14:56:23 +02:00
SizedBox(height: 12),
Hero(
tag: 'loginButton',
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 12),
child: ElevatedButton(
onPressed: loading ? null : () => _signUpAction(context),
child: loading
? LinearProgressIndicator()
: Text(
L10n.of(context).createAccountNow.toUpperCase(),
style: TextStyle(color: Colors.white, fontSize: 16),
),
),
2020-01-09 22:52:27 +01:00
),
),
2021-04-09 14:56:23 +02:00
],
),
2020-01-09 22:52:27 +01:00
),
);
}
}