fluffychat/lib/views/sign_up_password.dart

200 lines
6.7 KiB
Dart
Raw Normal View History

2020-01-09 22:52:27 +01:00
import 'dart:math';
2021-02-01 11:08:29 +01:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:flushbar/flushbar_helper.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';
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
2021-02-07 09:12:34 +01:00
import '../app_config.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-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) {
await FlushbarHelper.createError(
message: L10n.of(context).couldNotSetDisplayname)
.show(context);
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) {
await FlushbarHelper.createError(
message: L10n.of(context).couldNotSetAvatar)
.show(context);
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) {
return Scaffold(
appBar: AppBar(
2020-04-12 10:35:45 +02:00
elevation: 0,
2021-01-16 14:24:52 +01:00
leading: loading ? Container() : BackButton(),
2020-04-12 10:35:45 +02:00
title: Text(
2020-05-07 07:52:40 +02:00
L10n.of(context).chooseAStrongPassword,
2020-04-12 10:35:45 +02:00
),
2020-01-09 22:52:27 +01:00
),
body: ListView(
padding: EdgeInsets.symmetric(
2020-01-27 10:59:03 +01:00
horizontal: max((MediaQuery.of(context).size.width - 600) / 2, 0)),
2020-01-09 22:52:27 +01:00
children: <Widget>[
2021-01-24 17:26:59 +01:00
Padding(
padding: const EdgeInsets.all(12.0),
child: TextField(
2020-01-09 22:52:27 +01:00
controller: passwordController,
obscureText: !showPassword,
autofocus: true,
2021-02-01 21:39:34 +01:00
readOnly: loading,
2020-01-09 22:52:27 +01:00
autocorrect: false,
onSubmitted: (t) => _signUpAction(context),
2021-02-01 21:39:34 +01:00
autofillHints: loading ? null : [AutofillHints.newPassword],
2020-01-09 22:52:27 +01:00
decoration: InputDecoration(
2021-01-24 17:26:59 +01:00
prefixIcon: Icon(Icons.lock_outlined),
2020-05-13 15:58:59 +02:00
hintText: '****',
2020-01-09 22:52:27 +01:00
errorText: passwordError,
suffixIcon: IconButton(
2021-02-20 07:40:42 +01:00
tooltip: L10n.of(context).showPassword,
2020-12-08 15:55:42 +01:00
icon: Icon(showPassword
? Icons.visibility_off_outlined
: Icons.visibility_outlined),
2020-01-09 22:52:27 +01:00
onPressed: () =>
setState(() => showPassword = !showPassword),
),
2020-05-07 07:52:40 +02:00
labelText: L10n.of(context).password),
2020-01-09 22:52:27 +01:00
),
),
2021-01-24 17:26:59 +01:00
SizedBox(height: 12),
2020-04-12 10:35:45 +02:00
Hero(
tag: 'loginButton',
child: Container(
2021-01-24 17:26:59 +01:00
height: 56,
2020-04-12 10:35:45 +02:00
padding: EdgeInsets.symmetric(horizontal: 12),
child: RaisedButton(
elevation: 7,
color: Theme.of(context).primaryColor,
shape: RoundedRectangleBorder(
2021-02-07 09:12:34 +01:00
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
2020-04-12 10:35:45 +02:00
),
child: loading
2021-01-16 15:13:29 +01:00
? LinearProgressIndicator()
2020-04-12 10:35:45 +02:00
: Text(
2020-05-07 07:52:40 +02:00
L10n.of(context).createAccountNow.toUpperCase(),
2020-04-12 10:35:45 +02:00
style: TextStyle(color: Colors.white, fontSize: 16),
),
2020-06-20 11:35:54 +02:00
onPressed: loading ? null : () => _signUpAction(context),
2020-01-09 22:52:27 +01:00
),
),
),
],
),
);
}
}