2021-05-22 10:25:37 +02:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
2021-04-12 17:31:53 +02:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:file_picker_cross/file_picker_cross.dart';
|
2021-05-22 10:25:37 +02:00
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
2021-05-22 09:08:23 +02:00
|
|
|
import 'package:fluffychat/pages/views/sign_up_view.dart';
|
2021-05-22 10:25:37 +02:00
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
2021-04-12 17:31:53 +02:00
|
|
|
|
2021-05-22 08:53:52 +02:00
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
2021-04-12 17:31:53 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2021-05-22 10:25:37 +02:00
|
|
|
import 'package:flutter/foundation.dart';
|
2021-04-12 17:31:53 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-05-22 10:25:37 +02:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
|
|
import 'package:uni_links/uni_links.dart';
|
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
import 'package:universal_html/html.dart' as html;
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2021-05-22 10:25:37 +02:00
|
|
|
|
|
|
|
import '../main.dart';
|
2021-04-12 17:31:53 +02:00
|
|
|
|
|
|
|
class SignUp extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
SignUpController createState() => SignUpController();
|
|
|
|
}
|
|
|
|
|
|
|
|
class SignUpController extends State<SignUp> {
|
|
|
|
final TextEditingController usernameController = TextEditingController();
|
|
|
|
String usernameError;
|
|
|
|
bool loading = false;
|
2021-05-23 13:11:55 +02:00
|
|
|
static MatrixFile avatar;
|
2021-04-12 17:31:53 +02:00
|
|
|
|
2021-05-22 10:25:37 +02:00
|
|
|
LoginTypes _loginTypes;
|
|
|
|
StreamSubscription _intentDataStreamSubscription;
|
|
|
|
|
|
|
|
void _loginWithToken(String token) {
|
|
|
|
if (token?.isEmpty ?? true) return;
|
|
|
|
showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context).client.login(
|
|
|
|
type: AuthenticationTypes.token,
|
|
|
|
token: token,
|
|
|
|
initialDeviceDisplayName: PlatformInfos.clientName,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _processIncomingUris(String text) async {
|
|
|
|
if (text == null || !text.startsWith(AppConfig.appOpenUrlScheme)) return;
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/home');
|
2021-05-22 10:25:37 +02:00
|
|
|
final token = Uri.parse(text).queryParameters['loginToken'];
|
|
|
|
if (token != null) _loginWithToken(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _initReceiveUri() {
|
|
|
|
if (!PlatformInfos.isMobile) return;
|
|
|
|
// For receiving shared Uris
|
|
|
|
_intentDataStreamSubscription = linkStream.listen(_processIncomingUris);
|
|
|
|
if (FluffyChatApp.gotInitialLink == false) {
|
|
|
|
FluffyChatApp.gotInitialLink = true;
|
|
|
|
getInitialLink().then(_processIncomingUris);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_initReceiveUri();
|
|
|
|
if (kIsWeb) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
final token =
|
|
|
|
Uri.parse(html.window.location.href).queryParameters['loginToken'];
|
|
|
|
_loginWithToken(token);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
super.dispose();
|
|
|
|
_intentDataStreamSubscription?.cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get passwordLoginSupported => _loginTypes.flows
|
|
|
|
.any((flow) => flow.type == AuthenticationTypes.password);
|
|
|
|
|
|
|
|
bool get ssoLoginSupported =>
|
|
|
|
_loginTypes.flows.any((flow) => flow.type == AuthenticationTypes.sso);
|
|
|
|
|
|
|
|
Future<LoginTypes> getLoginTypes() async {
|
|
|
|
_loginTypes ??= await Matrix.of(context).client.getLoginFlows();
|
|
|
|
return _loginTypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ssoLoginAction() {
|
|
|
|
if (!kIsWeb && !PlatformInfos.isMobile) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content: Text(
|
|
|
|
'Single sign on is not suppored on ${Platform.operatingSystem}'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final redirectUrl = kIsWeb
|
|
|
|
? html.window.location.href
|
|
|
|
: AppConfig.appOpenUrlScheme.toLowerCase() + '://sso';
|
|
|
|
launch(
|
|
|
|
'${Matrix.of(context).client.homeserver?.toString()}/_matrix/client/r0/login/sso/redirect?redirectUrl=${Uri.encodeQueryComponent(redirectUrl)}');
|
|
|
|
}
|
|
|
|
|
2021-04-12 17:31:53 +02:00
|
|
|
void setAvatarAction() async {
|
2021-04-14 10:37:15 +02:00
|
|
|
final file =
|
2021-04-12 17:31:53 +02:00
|
|
|
await FilePickerCross.importFromStorage(type: FileTypeCross.image);
|
|
|
|
if (file != null) {
|
|
|
|
setState(
|
|
|
|
() => avatar = MatrixFile(
|
|
|
|
bytes: file.toUint8List(),
|
|
|
|
name: file.fileName,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void resetAvatarAction() => setState(() => avatar = null);
|
|
|
|
|
|
|
|
void signUpAction([_]) async {
|
2021-04-14 10:37:15 +02:00
|
|
|
final matrix = Matrix.of(context);
|
2021-04-12 17:31:53 +02:00
|
|
|
if (usernameController.text.isEmpty) {
|
|
|
|
setState(() => usernameError = L10n.of(context).pleaseChooseAUsername);
|
|
|
|
} else {
|
|
|
|
setState(() => usernameError = null);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usernameController.text.isEmpty) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setState(() => loading = true);
|
|
|
|
|
|
|
|
final preferredUsername =
|
|
|
|
usernameController.text.toLowerCase().trim().replaceAll(' ', '-');
|
|
|
|
|
|
|
|
try {
|
2021-05-20 13:59:55 +02:00
|
|
|
await matrix.client.checkUsernameAvailability(preferredUsername);
|
2021-04-12 17:31:53 +02:00
|
|
|
} on MatrixException catch (exception) {
|
|
|
|
setState(() => usernameError = exception.errorMessage);
|
|
|
|
return setState(() => loading = false);
|
|
|
|
} catch (exception) {
|
|
|
|
setState(() => usernameError = exception.toString());
|
|
|
|
return setState(() => loading = false);
|
|
|
|
}
|
|
|
|
setState(() => loading = false);
|
2021-05-23 13:11:55 +02:00
|
|
|
|
|
|
|
VRouter.of(context).push(
|
2021-05-23 13:28:55 +02:00
|
|
|
'/signup/password/${Uri.encodeComponent(preferredUsername)}',
|
2021-05-23 13:11:55 +02:00
|
|
|
queryParameters: {'displayname': usernameController.text},
|
2021-04-12 17:31:53 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2021-05-22 09:13:47 +02:00
|
|
|
Widget build(BuildContext context) => SignUpView(this);
|
2021-04-12 17:31:53 +02:00
|
|
|
}
|