fluffychat/lib/views/sign_up_password.dart

185 lines
6.0 KiB
Dart
Raw Normal View History

2020-01-09 22:52:27 +01:00
import 'dart:math';
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:fluffychat/utils/app_route.dart';
2020-01-14 15:53:35 +01:00
import 'package:fluffychat/views/auth_web_view.dart';
2020-01-09 22:52:27 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-09 22:52:27 +01:00
import 'chat_list.dart';
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;
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,
2020-12-11 14:14:33 +01:00
initialDeviceDisplayName: matrix.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 {
2020-01-14 15:53:35 +01:00
await Navigator.of(context).push(
AppRoute.defaultRoute(
context,
AuthWebView(
2020-01-17 09:18:05 +01:00
currentStage,
2020-01-14 15:53:35 +01:00
exception.session,
2020-12-11 10:27:38 +01:00
() => _signUpAction(
context,
auth: AuthenticationData(session: exception.session),
),
2020-01-14 15:53:35 +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
}
2020-01-29 10:36:30 +01:00
await Navigator.of(context).pushAndRemoveUntil(
AppRoute.defaultRoute(context, ChatListView()), (r) => false);
2020-01-09 22:52:27 +01:00
setState(() => loading = false);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2020-04-12 10:35:45 +02:00
elevation: 0,
leading: loading ? Container() : null,
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>[
ListTile(
leading: CircleAvatar(
2020-01-27 10:59:03 +01:00
backgroundColor: Colors.white,
2020-12-08 15:55:42 +01:00
child: Icon(Icons.lock_outlined,
color: Theme.of(context).primaryColor),
2020-01-09 22:52:27 +01:00
),
title: TextField(
controller: passwordController,
obscureText: !showPassword,
autofocus: true,
autocorrect: false,
onSubmitted: (t) => _signUpAction(context),
decoration: InputDecoration(
2020-05-13 15:58:59 +02:00
hintText: '****',
2020-01-09 22:52:27 +01:00
errorText: passwordError,
suffixIcon: IconButton(
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
),
),
SizedBox(height: 20),
2020-04-12 10:35:45 +02: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 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
),
),
),
],
),
);
}
}