fluffychat/lib/views/homeserver_picker.dart

188 lines
6.3 KiB
Dart
Raw Normal View History

2020-04-12 10:35:45 +02:00
import 'dart:math';
2021-01-16 12:46:38 +01:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
2021-01-18 22:59:02 +01:00
import 'package:famedlysdk/famedlysdk.dart';
2020-04-12 10:35:45 +02:00
import 'package:fluffychat/components/matrix.dart';
2020-12-11 14:14:33 +01:00
import 'package:fluffychat/app_config.dart';
2021-01-17 15:33:31 +01:00
import 'package:fluffychat/components/sentry_switch_list_tile.dart';
2021-01-17 15:43:38 +01:00
import 'package:fluffychat/utils/platform_infos.dart';
2021-01-17 15:33:31 +01:00
import 'package:flushbar/flushbar_helper.dart';
2020-10-03 11:11:28 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-04-12 10:35:45 +02:00
import 'package:flutter/material.dart';
2020-10-03 11:11:28 +02:00
import 'package:url_launcher/url_launcher.dart';
2021-01-17 15:33:31 +01:00
import '../utils/localized_exception_extension.dart';
2020-04-12 10:35:45 +02:00
2021-01-17 15:33:31 +01:00
class HomeserverPicker extends StatefulWidget {
@override
_HomeserverPickerState createState() => _HomeserverPickerState();
}
2020-04-12 10:35:45 +02:00
2021-01-17 15:33:31 +01:00
class _HomeserverPickerState extends State<HomeserverPicker> {
final TextEditingController _controller =
TextEditingController(text: AppConfig.defaultHomeserver);
bool _isLoading = false;
void _checkHomeserverAction(BuildContext context) async {
var homeserver = _controller.text;
2020-09-08 10:55:32 +02:00
2020-04-12 10:35:45 +02:00
if (!homeserver.startsWith('https://')) {
homeserver = 'https://$homeserver';
}
2021-01-17 15:33:31 +01:00
setState(() => _isLoading = true);
2021-01-18 22:59:02 +01:00
// Look up well known
try {
final wellKnown = await MatrixApi(homeserver: Uri.parse(homeserver))
.requestWellKnownInformations();
homeserver = wellKnown.mHomeserver.baseUrl;
} catch (e) {
Logs().v('Found no well known information', e);
}
2021-01-17 15:33:31 +01:00
try {
2021-01-18 22:59:02 +01:00
await Matrix.of(context)
.client
.checkHomeserver(homeserver, supportedLoginTypes: {
AuthenticationTypes.password,
if (PlatformInfos.isMobile) AuthenticationTypes.sso
});
final loginTypes = await Matrix.of(context).client.requestLoginTypes();
if (loginTypes.flows
.any((flow) => flow.type == AuthenticationTypes.password)) {
await AdaptivePageLayout.of(context)
.pushNamed(AppConfig.enableRegistration ? '/signup' : '/login');
} else if (loginTypes.flows
.any((flow) => flow.type == AuthenticationTypes.sso)) {
await AdaptivePageLayout.of(context).pushNamed('/sso');
}
2021-01-17 15:33:31 +01:00
} catch (e) {
// ignore: unawaited_futures
FlushbarHelper.createError(
title: L10n.of(context).noConnectionToTheServer,
message: (e as Object).toLocalizedString(context))
.show(context);
} finally {
if (mounted) {
setState(() => _isLoading = false);
}
2020-04-12 10:35:45 +02:00
}
}
@override
Widget build(BuildContext context) {
2021-01-18 07:59:01 +01:00
final padding = EdgeInsets.symmetric(
horizontal: max((MediaQuery.of(context).size.width - 600) / 2, 0),
);
2020-04-12 10:35:45 +02:00
return Scaffold(
2021-01-17 15:33:31 +01:00
appBar: AppBar(
title: Container(
height: 40,
2021-01-18 07:59:01 +01:00
padding: padding,
2021-01-17 15:33:31 +01:00
child: Material(
color: Theme.of(context).secondaryHeaderColor,
borderRadius: BorderRadius.circular(32),
child: TextField(
controller: _controller,
autocorrect: false,
readOnly: !AppConfig.allowOtherHomeservers,
decoration: InputDecoration(
prefixText: 'https://',
suffix: Icon(Icons.domain_outlined),
contentPadding: EdgeInsets.only(
left: 24,
right: 16,
),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(32),
),
labelText: L10n.of(context).changeTheHomeserver,
hintText: AppConfig.defaultHomeserver,
),
),
),
),
),
2020-04-12 10:35:45 +02:00
body: SafeArea(
child: Padding(
2021-01-18 07:59:01 +01:00
padding: padding,
2021-01-17 15:33:31 +01:00
child: ListView(
children: [
Hero(
tag: 'loginBanner',
child: Image.asset('assets/banner.png'),
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
AppConfig.applicationWelcomeMessage ??
L10n.of(context).welcomeText,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 22,
),
2020-04-12 10:35:45 +02:00
),
),
2020-12-11 14:14:33 +01:00
SizedBox(height: 16),
2020-04-12 10:35:45 +02:00
Hero(
tag: 'loginButton',
child: Container(
width: double.infinity,
height: 50,
padding: EdgeInsets.symmetric(horizontal: 12),
child: RaisedButton(
elevation: 7,
color: Theme.of(context).primaryColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
2021-01-17 15:33:31 +01:00
child: _isLoading
? LinearProgressIndicator()
: Text(
L10n.of(context).connect.toUpperCase(),
style: TextStyle(color: Colors.white, fontSize: 16),
),
onPressed: _isLoading
? null
: () => _checkHomeserverAction(context),
2020-04-12 10:35:45 +02:00
),
),
),
2021-01-17 15:33:31 +01:00
SentrySwitchListTile(),
2020-12-11 14:14:33 +01:00
Wrap(
2021-01-17 15:33:31 +01:00
alignment: WrapAlignment.center,
2020-12-11 14:14:33 +01:00
children: [
2021-01-17 15:33:31 +01:00
FlatButton(
padding: EdgeInsets.all(8),
child: Text(
L10n.of(context).about,
style: TextStyle(
decoration: TextDecoration.underline,
fontSize: 16,
2020-12-11 14:14:33 +01:00
),
),
2021-01-17 15:43:38 +01:00
onPressed: () => PlatformInfos.showDialog(context),
2021-01-17 15:33:31 +01:00
),
2020-12-11 14:14:33 +01:00
FlatButton(
2021-01-16 15:13:29 +01:00
padding: EdgeInsets.all(8),
2020-12-11 14:14:33 +01:00
child: Text(
L10n.of(context).privacy,
style: TextStyle(
decoration: TextDecoration.underline,
fontSize: 16,
),
),
onPressed: () => launch(AppConfig.privacyUrl),
2020-04-12 10:35:45 +02:00
),
2020-12-11 14:14:33 +01:00
],
2020-04-12 10:35:45 +02:00
),
SizedBox(height: 16),
],
),
),
),
);
}
}