fluffychat/lib/views/sign_up_password.dart

174 lines
5.7 KiB
Dart
Raw Normal View History

2020-01-09 21:52:27 +00:00
import 'dart:math';
2021-01-16 11:46:38 +00:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
import 'package:flushbar/flushbar_helper.dart';
2020-01-09 21:52:27 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-10-04 15:01:54 +00:00
2020-01-09 21:52:27 +00:00
import 'package:fluffychat/components/matrix.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-09 21:52:27 +00:00
class SignUpPassword extends StatefulWidget {
2020-10-04 15:01:54 +00:00
final MatrixFile avatar;
2020-01-09 21:52:27 +00: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;
bool loading = false;
bool showPassword = true;
2020-12-11 09:27:38 +00:00
void _signUpAction(BuildContext context, {AuthenticationData auth}) async {
2020-05-13 13:58:59 +00:00
var matrix = Matrix.of(context);
2020-01-09 21:52:27 +00:00
if (passwordController.text.isEmpty) {
2020-05-07 05:52:40 +00:00
setState(() => passwordError = L10n.of(context).pleaseEnterYourPassword);
2020-01-09 21:52:27 +00:00
} else {
setState(() => passwordError = null);
}
if (passwordController.text.isEmpty) {
return;
}
try {
2020-01-14 14:53:35 +00:00
setState(() => loading = true);
2020-05-13 13:58:59 +00:00
var waitForLogin = matrix.client.onLoginStateChanged.stream.first;
2020-01-14 12:21:15 +00:00
await matrix.client.register(
2020-01-09 21:52:27 +00:00
username: widget.username,
password: passwordController.text,
2020-12-11 13:14:33 +00:00
initialDeviceDisplayName: matrix.clientName,
2020-01-09 21:52:27 +00:00
auth: auth,
);
2020-01-14 12:21:15 +00:00
await waitForLogin;
2020-01-09 21:52:27 +00:00
} on MatrixException catch (exception) {
2020-01-14 12:21:15 +00:00
if (exception.requireAdditionalAuthentication) {
2020-05-13 13:58:59 +00:00
final stages = exception.authenticationFlows
.firstWhere((a) => !a.stages.contains('m.login.email.identity'))
2020-01-14 14:53:35 +00:00
.stages;
2020-05-13 13:58:59 +00:00
final currentStage = exception.completedAuthenticationFlows == null
? stages.first
: stages.firstWhere((stage) =>
!exception.completedAuthenticationFlows.contains(stage) ??
true);
2020-01-17 08:18:05 +00:00
2020-05-13 13:58:59 +00:00
if (currentStage == 'm.login.dummy') {
2020-12-11 09:27:38 +00:00
_signUpAction(
context,
auth: AuthenticationData(
type: currentStage,
session: exception.session,
),
);
2020-01-14 12:21:15 +00:00
} else {
2021-01-16 11:46:38 +00:00
await AdaptivePageLayout.of(context).pushNamed(
'/authwebview',
arguments: () => _signUpAction(
2020-01-14 14:53:35 +00:00
context,
2021-01-16 11:46:38 +00:00
auth: AuthenticationData(session: exception.session),
2020-01-14 14:53:35 +00:00
),
);
2020-01-14 11:16:29 +00:00
return;
2020-01-09 22:15:32 +00:00
}
2020-01-14 12:21:15 +00:00
} else {
setState(() => passwordError = exception.errorMessage);
return setState(() => loading = false);
2020-01-09 22:15:32 +00:00
}
2020-01-14 12:21:15 +00:00
} catch (exception) {
setState(() => passwordError = exception.toString());
return setState(() => loading = false);
}
2020-01-29 09:36:30 +00:00
await matrix.client.onLoginStateChanged.stream
.firstWhere((l) => l == LoginState.logged);
2020-01-14 12:21:15 +00:00
try {
2020-08-16 10:54:43 +00:00
await matrix.client
.setDisplayname(matrix.client.userID, widget.displayname);
2020-01-14 12:21:15 +00:00
} catch (exception) {
await FlushbarHelper.createError(
message: L10n.of(context).couldNotSetDisplayname)
.show(context);
2020-01-14 12:21:15 +00:00
}
2020-01-29 09:36:30 +00:00
if (widget.avatar != null) {
try {
2020-10-04 15:01:54 +00:00
await matrix.client.setAvatar(widget.avatar);
2020-01-29 09:36:30 +00:00
} catch (exception) {
await FlushbarHelper.createError(
message: L10n.of(context).couldNotSetAvatar)
.show(context);
2020-01-29 09:36:30 +00:00
}
2020-01-14 14:53:35 +00:00
}
2021-01-16 11:46:38 +00:00
if (mounted) setState(() => loading = false);
2020-01-09 21:52:27 +00:00
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2020-04-12 08:35:45 +00:00
elevation: 0,
leading: loading ? Container() : null,
title: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).chooseAStrongPassword,
2020-04-12 08:35:45 +00:00
),
2020-01-09 21:52:27 +00:00
),
body: ListView(
padding: EdgeInsets.symmetric(
2020-01-27 09:59:03 +00:00
horizontal: max((MediaQuery.of(context).size.width - 600) / 2, 0)),
2020-01-09 21:52:27 +00:00
children: <Widget>[
ListTile(
leading: CircleAvatar(
2020-01-27 09:59:03 +00:00
backgroundColor: Colors.white,
2020-12-08 14:55:42 +00:00
child: Icon(Icons.lock_outlined,
color: Theme.of(context).primaryColor),
2020-01-09 21:52:27 +00:00
),
title: TextField(
controller: passwordController,
obscureText: !showPassword,
autofocus: true,
autocorrect: false,
onSubmitted: (t) => _signUpAction(context),
decoration: InputDecoration(
2020-05-13 13:58:59 +00:00
hintText: '****',
2020-01-09 21:52:27 +00:00
errorText: passwordError,
suffixIcon: IconButton(
2020-12-08 14:55:42 +00:00
icon: Icon(showPassword
? Icons.visibility_off_outlined
: Icons.visibility_outlined),
2020-01-09 21:52:27 +00:00
onPressed: () =>
setState(() => showPassword = !showPassword),
),
2020-05-07 05:52:40 +00:00
labelText: L10n.of(context).password),
2020-01-09 21:52:27 +00:00
),
),
SizedBox(height: 20),
2020-04-12 08:35:45 +00:00
Hero(
tag: 'loginButton',
child: Container(
height: 50,
padding: EdgeInsets.symmetric(horizontal: 12),
child: RaisedButton(
elevation: 7,
color: Theme.of(context).primaryColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
child: loading
? CircularProgressIndicator()
: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).createAccountNow.toUpperCase(),
2020-04-12 08:35:45 +00:00
style: TextStyle(color: Colors.white, fontSize: 16),
),
2020-06-20 09:35:54 +00:00
onPressed: loading ? null : () => _signUpAction(context),
2020-01-09 21:52:27 +00:00
),
),
),
],
),
);
}
}