FurryChat/lib/views/homeserver_picker.dart

171 lines
5.5 KiB
Dart
Raw Normal View History

2020-04-12 08:35:45 +00:00
import 'dart:math';
import 'package:famedlysdk/matrix_api/model/well_known_informations.dart';
2020-10-06 19:59:36 +00:00
import 'package:furrychat/components/dialogs/simple_dialogs.dart';
import 'package:furrychat/components/matrix.dart';
2020-10-03 09:11:28 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-10-06 19:59:36 +00:00
import 'package:furrychat/utils/app_route.dart';
import 'package:furrychat/views/login.dart';
import 'package:furrychat/views/sign_up.dart';
2020-04-12 08:35:45 +00:00
import 'package:flutter/material.dart';
class HomeserverPicker extends StatefulWidget {
@override
_HomeserverPickerState createState() => _HomeserverPickerState();
}
class _HomeserverPickerState extends State<HomeserverPicker> {
2020-05-13 13:58:59 +00:00
void _checkHomeserverAction(String homeserver, BuildContext context) async {
if (!_isMXID && !homeserver.startsWith('https://')) {
2020-04-12 08:35:45 +00:00
homeserver = 'https://$homeserver';
}
WellKnownInformations wellknown;
if (_isMXID) {
if (!homeserver.startsWith('@')) {
homeserver = '@$homeserver';
}
wellknown = await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context)
.client
.getWellKnownInformationsByUserId(homeserver));
final success = await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context).client.checkServer(wellknown.mHomeserver != null
? 'https://${Uri.parse(wellknown.mHomeserver.baseUrl).host}'
: homeserver));
if (success != false) {
await Navigator.of(context).push(AppRoute(Login(
username: homeserver,
2020-06-14 12:12:47 +00:00
wellknown: wellknown,
)));
}
} else {
homeserver = homeserver.trim();
if (homeserver.endsWith('/')) {
homeserver = homeserver.substring(0, homeserver.length - 1);
}
wellknown = await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context)
.client
.getWellKnownInformationsByDomain(homeserver));
final success = await SimpleDialogs(context).tryRequestWithLoadingDialog(
Matrix.of(context).client.checkServer(wellknown.mHomeserver != null
? 'https://${Uri.parse(wellknown.mHomeserver.baseUrl).host}'
: homeserver));
if (success != false) {
2020-06-14 12:12:47 +00:00
await Navigator.of(context).push(AppRoute(SignUp(
wellknown: wellknown,
)));
}
}
}
final textController = TextEditingController();
bool _isMXID = false;
void _checkInputType() {
if (textController.text.contains(':')) {
setState(() {
_isMXID = true;
});
} else {
setState(() {
_isMXID = false;
});
2020-04-12 08:35:45 +00:00
}
}
@override
void initState() {
super.initState();
textController.addListener(_checkInputType);
}
@override
void dispose() {
textController.dispose();
super.dispose();
}
2020-04-12 08:35:45 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: EdgeInsets.symmetric(
horizontal:
max((MediaQuery.of(context).size.width - 600) / 2, 0)),
child: Column(
children: <Widget>[
Hero(
tag: 'loginBanner',
child: Center(
child: Padding(
padding: const EdgeInsets.fromLTRB(0.0, 32.0, 0.0, 18.0),
child: Text(
L10n.of(context).fluffychat,
style: TextStyle(fontSize: 28.0),
),
),
),
2020-04-12 08:35:45 +00:00
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).welcomeText,
2020-04-12 08:35:45 +00:00
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 22,
),
),
),
Spacer(),
Padding(
padding: const EdgeInsets.all(16.0),
child: TextField(
controller: textController,
onSubmitted: (s) {
_checkHomeserverAction(s, context);
},
decoration: InputDecoration(
icon: (_isMXID
? Icon(Icons.person_outline)
: Icon(Icons.business)),
labelText: L10n.of(context).homeserverOrMXID,
border: OutlineInputBorder(),
),
),
),
Spacer(),
2020-04-12 08:35:45 +00: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),
),
child: Text(
2020-06-14 11:14:22 +00:00
(_isMXID
? L10n.of(context).login.toUpperCase()
: L10n.of(context).connect.toUpperCase()),
2020-04-12 08:35:45 +00:00
style: TextStyle(color: Colors.white, fontSize: 16),
),
onPressed: () =>
_checkHomeserverAction(textController.text, context),
2020-04-12 08:35:45 +00:00
),
),
),
SizedBox(height: 16),
],
),
),
),
);
}
}