FurryChat/lib/views/sign_up_password.dart

189 lines
6.3 KiB
Dart
Raw Normal View History

2020-01-09 21:52:27 +00:00
import 'dart:math';
import 'package:bot_toast/bot_toast.dart';
2020-01-09 21:52:27 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-10-04 15:01:54 +00:00
2020-10-06 19:59:36 +00:00
import 'package:furrychat/components/matrix.dart';
import 'package:furrychat/utils/app_route.dart';
import 'package:furrychat/views/auth_web_view.dart';
2020-01-09 21:52:27 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-09 21:52:27 +00:00
import 'chat_list.dart';
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;
2020-06-14 12:12:47 +00:00
final WellKnownInformations wellknown;
const SignUpPassword(this.username,
{this.avatar, this.displayname, this.wellknown});
2020-01-09 21:52:27 +00:00
@override
_SignUpPasswordState createState() => _SignUpPasswordState();
}
class _SignUpPasswordState extends State<SignUpPassword> {
final TextEditingController passwordController = TextEditingController();
String passwordError;
bool loading = false;
bool showPassword = true;
void _signUpAction(BuildContext context, {Map<String, dynamic> 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,
initialDeviceDisplayName: matrix.widget.clientName,
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-01-09 22:15:32 +00:00
_signUpAction(context, auth: {
2020-05-13 13:58:59 +00:00
'type': currentStage,
'session': exception.session,
2020-01-09 22:15:32 +00:00
});
2020-01-14 12:21:15 +00:00
} else {
2020-01-14 14:53:35 +00:00
await Navigator.of(context).push(
AppRoute.defaultRoute(
context,
AuthWebView(
2020-01-17 08:18:05 +00:00
currentStage,
2020-01-14 14:53:35 +00:00
exception.session,
() => _signUpAction(context, auth: {
2020-05-13 13:58:59 +00:00
'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) {
2020-01-26 11:17:54 +00:00
debugPrint(exception);
2020-01-14 12:21:15 +00:00
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) {
2020-05-13 08:45:50 +00:00
BotToast.showText(text: L10n.of(context).couldNotSetDisplayname);
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) {
2020-05-13 08:45:50 +00:00
BotToast.showText(text: L10n.of(context).couldNotSetAvatar);
2020-01-29 09:36:30 +00:00
}
2020-01-14 14:53:35 +00:00
}
2020-06-14 12:12:47 +00:00
if (widget.wellknown != null) {
if (widget.wellknown.jitsiHomeserver?.baseUrl != null) {
if (!widget.wellknown.jitsiHomeserver.baseUrl.startsWith('https://')) {
widget.wellknown.jitsiHomeserver.baseUrl =
'https://${widget.wellknown.jitsiHomeserver.baseUrl}';
}
2020-10-06 19:59:36 +00:00
await Matrix.of(context).store.setItem('chat.fluffy.jitsi_instance',
2020-06-14 12:12:47 +00:00
'https://${Uri.parse(widget.wellknown.jitsiHomeserver.baseUrl).host}/');
Matrix.of(context).jitsiInstance =
'https://${Uri.parse(widget.wellknown.jitsiHomeserver.baseUrl).host}/';
}
}
2020-01-29 09:36:30 +00:00
await Navigator.of(context).pushAndRemoveUntil(
AppRoute.defaultRoute(context, ChatListView()), (r) => false);
2020-01-09 21:52:27 +00:00
setState(() => loading = false);
}
@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>[
2020-06-14 11:14:10 +00:00
SizedBox(height: 10),
2020-01-09 21:52:27 +00:00
ListTile(
title: TextField(
controller: passwordController,
obscureText: !showPassword,
autofocus: true,
autocorrect: false,
onSubmitted: (t) => _signUpAction(context),
decoration: InputDecoration(
2020-06-14 11:14:10 +00:00
icon: Icon(Icons.lock_outline),
hintText: '****',
errorText: passwordError,
suffixIcon: IconButton(
icon: Icon(
showPassword ? Icons.visibility_off : Icons.visibility),
onPressed: () => setState(() => showPassword = !showPassword),
),
labelText: L10n.of(context).password,
border: OutlineInputBorder(),
),
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
),
),
),
],
),
);
}
}