fluffychat/lib/pages/sign_up_password.dart

119 lines
4.1 KiB
Dart
Raw Normal View History

import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-05-23 13:11:55 +02:00
import 'package:email_validator/email_validator.dart';
2021-04-03 13:09:20 +02:00
2020-01-09 22:52:27 +01:00
import 'package:famedlysdk/famedlysdk.dart';
2021-05-23 13:11:55 +02:00
import 'package:fluffychat/pages/sign_up.dart';
import 'package:fluffychat/utils/get_client_secret.dart';
import 'package:fluffychat/pages/views/sign_up_password_view.dart';
2020-10-04 17:01:54 +02:00
2021-05-22 08:53:52 +02:00
import 'package:fluffychat/widgets/matrix.dart';
2020-01-09 22:52:27 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-05-23 13:11:55 +02:00
import 'package:vrouter/vrouter.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 {
2021-05-23 13:11:55 +02:00
const SignUpPassword();
2020-01-09 22:52:27 +01:00
@override
2021-04-12 17:40:45 +02:00
SignUpPasswordController createState() => SignUpPasswordController();
2020-01-09 22:52:27 +01:00
}
2021-04-12 17:40:45 +02:00
class SignUpPasswordController extends State<SignUpPassword> {
2020-01-09 22:52:27 +01:00
final TextEditingController passwordController = TextEditingController();
final TextEditingController emailController = TextEditingController();
2020-01-09 22:52:27 +01:00
String passwordError;
String emailError;
2020-01-09 22:52:27 +01:00
bool loading = false;
bool showPassword = true;
2021-04-12 17:40:45 +02:00
void toggleShowPassword() => setState(() => showPassword = !showPassword);
2021-05-13 11:10:05 +02:00
void signUpAction() async {
2021-04-14 10:37:15 +02:00
final 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 = emailError = null);
2020-01-09 22:52:27 +01:00
}
if (passwordController.text.isEmpty) {
return;
}
try {
2020-01-14 15:53:35 +01:00
setState(() => loading = true);
if (emailController.text.isNotEmpty) {
emailController.text = emailController.text.trim();
if (!EmailValidator.validate(emailController.text)) {
setState(() => emailError = L10n.of(context).invalidEmail);
return;
}
matrix.currentClientSecret = getClientSecret(30);
Logs().d('Request email token');
matrix.currentThreepidCreds = await matrix.client.requestEmailToken(
emailController.text,
matrix.currentClientSecret,
1,
);
if (OkCancelResult.ok !=
await showOkCancelAlertDialog(
2021-05-23 15:02:36 +02:00
useRootNavigator: false,
context: context,
message: L10n.of(context).weSentYouAnEmail,
okLabel: L10n.of(context).confirm,
cancelLabel: L10n.of(context).cancel,
)) {
matrix.currentClientSecret = matrix.currentThreepidCreds = null;
setState(() => loading = false);
return;
}
}
2021-04-14 10:37:15 +02:00
final waitForLogin = matrix.client.onLoginStateChanged.stream.first;
2021-05-23 13:11:55 +02:00
final username = VRouter.of(context).pathParameters['username'];
2021-05-13 11:10:05 +02:00
await matrix.client.uiaRequestBackground((auth) => matrix.client.register(
2021-05-23 13:11:55 +02:00
username: username,
2021-05-13 11:10:05 +02:00
password: passwordController.text,
initialDeviceDisplayName: PlatformInfos.clientName,
auth: auth,
));
if (matrix.currentClientSecret != null &&
matrix.currentThreepidCreds != null) {
Logs().d('Add third party identifier');
2021-05-20 13:59:55 +02:00
await matrix.client.add3PID(
matrix.currentClientSecret,
matrix.currentThreepidCreds.sid,
);
}
2020-01-14 13:21:15 +01:00
await waitForLogin;
} catch (exception) {
setState(() => emailError = exception.toString());
2020-01-14 13:21:15 +01:00
return setState(() => loading = false);
}
2020-01-29 10:36:30 +01:00
await matrix.client.onLoginStateChanged.stream
.firstWhere((l) => l == LoginState.logged);
2021-05-23 13:11:55 +02:00
final displayname = VRouter.of(context).queryParameters['displayname'];
if (displayname != null) {
try {
await matrix.client.setDisplayName(matrix.client.userID, displayname);
} catch (exception) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(L10n.of(context).couldNotSetDisplayname)));
}
2020-01-14 13:21:15 +01:00
}
2021-05-23 13:11:55 +02:00
if (SignUpController.avatar != null) {
2020-01-29 10:36:30 +01:00
try {
2021-05-23 13:11:55 +02:00
await matrix.client.setAvatar(SignUpController.avatar);
2020-01-29 10:36:30 +01:00
} catch (exception) {
2021-05-23 13:11:55 +02:00
ScaffoldMessenger.of(context).showSnackBar(
2021-04-03 13:09:20 +02:00
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
2021-05-22 09:13:47 +02:00
Widget build(BuildContext context) => SignUpPasswordView(this);
2020-01-09 22:52:27 +01:00
}