mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 19:49:29 +01:00
86c4fa5165
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
151 lines
4.6 KiB
Dart
151 lines
4.6 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:matrix_homeserver_recommendations/matrix_homeserver_recommendations.dart';
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
import 'package:fluffychat/pages/homeserver_picker/homeserver_bottom_sheet.dart';
|
|
import 'package:fluffychat/pages/homeserver_picker/homeserver_picker_view.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
import '../../utils/localized_exception_extension.dart';
|
|
|
|
class HomeserverPicker extends StatefulWidget {
|
|
const HomeserverPicker({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
HomeserverPickerController createState() => HomeserverPickerController();
|
|
}
|
|
|
|
class HomeserverPickerController extends State<HomeserverPicker> {
|
|
bool isLoading = false;
|
|
final TextEditingController homeserverController = TextEditingController(
|
|
text: AppConfig.defaultHomeserver,
|
|
);
|
|
final FocusNode homeserverFocusNode = FocusNode();
|
|
String? error;
|
|
List<HomeserverBenchmarkResult>? benchmarkResults;
|
|
bool displayServerList = false;
|
|
|
|
bool get loadingHomeservers =>
|
|
AppConfig.allowOtherHomeservers && benchmarkResults == null;
|
|
String searchTerm = '';
|
|
|
|
void _updateFocus() {
|
|
if (benchmarkResults == null) _loadHomeserverList();
|
|
if (homeserverFocusNode.hasFocus) {
|
|
setState(() {
|
|
displayServerList = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
void showServerInfo(HomeserverBenchmarkResult server) => showModalBottomSheet(
|
|
context: context,
|
|
builder: (_) => HomeserverBottomSheet(
|
|
homeserver: server,
|
|
),
|
|
);
|
|
|
|
void onChanged(String text) => setState(() {
|
|
searchTerm = text;
|
|
});
|
|
|
|
List<HomeserverBenchmarkResult> get filteredHomeservers => benchmarkResults!
|
|
.where((element) =>
|
|
element.homeserver.baseUrl.host.contains(searchTerm) ||
|
|
(element.homeserver.description?.contains(searchTerm) ?? false))
|
|
.toList();
|
|
|
|
void _loadHomeserverList() async {
|
|
try {
|
|
final homeserverList = await JoinmatrixOrgParser().fetchHomeservers();
|
|
final benchmark = await HomeserverListProvider.benchmarkHomeserver(
|
|
homeserverList,
|
|
timeout: const Duration(seconds: 10),
|
|
);
|
|
setState(() {
|
|
benchmarkResults = benchmark;
|
|
});
|
|
} catch (e, s) {
|
|
Logs().e('Homeserver benchmark failed', e, s);
|
|
benchmarkResults = [];
|
|
}
|
|
}
|
|
|
|
void setServer(String server) => setState(() {
|
|
homeserverController.text = server;
|
|
searchTerm = '';
|
|
homeserverFocusNode.unfocus();
|
|
displayServerList = false;
|
|
});
|
|
|
|
/// Starts an analysis of the given homeserver. It uses the current domain and
|
|
/// makes sure that it is prefixed with https. Then it searches for the
|
|
/// well-known information and forwards to the login page depending on the
|
|
/// login type.
|
|
Future<void> checkHomeserverAction() async {
|
|
setState(() {
|
|
homeserverFocusNode.unfocus();
|
|
error = null;
|
|
isLoading = true;
|
|
searchTerm = '';
|
|
displayServerList = false;
|
|
});
|
|
|
|
try {
|
|
homeserverController.text =
|
|
homeserverController.text.trim().toLowerCase().replaceAll(' ', '-');
|
|
var homeserver = Uri.parse(homeserverController.text);
|
|
if (homeserver.scheme.isEmpty) {
|
|
homeserver = Uri.https(homeserverController.text, '');
|
|
}
|
|
final matrix = Matrix.of(context);
|
|
matrix.loginHomeserverSummary =
|
|
await matrix.getLoginClient().checkHomeserver(homeserver);
|
|
final ssoSupported = matrix.loginHomeserverSummary!.loginFlows
|
|
.any((flow) => flow.type == 'm.login.sso');
|
|
|
|
try {
|
|
await Matrix.of(context).getLoginClient().register();
|
|
matrix.loginRegistrationSupported = true;
|
|
} on MatrixException catch (e) {
|
|
matrix.loginRegistrationSupported = e.requireAdditionalAuthentication;
|
|
}
|
|
|
|
if (!ssoSupported && matrix.loginRegistrationSupported == false) {
|
|
// Server does not support SSO or registration. We can skip to login page:
|
|
VRouter.of(context).to('login');
|
|
} else {
|
|
VRouter.of(context).to('connect');
|
|
}
|
|
} catch (e) {
|
|
setState(() => error = (e).toLocalizedString(context));
|
|
} finally {
|
|
if (mounted) {
|
|
setState(() => isLoading = false);
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
homeserverFocusNode.removeListener(_updateFocus);
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
homeserverFocusNode.addListener(_updateFocus);
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Matrix.of(context).navigatorContext = context;
|
|
return HomeserverPickerView(this);
|
|
}
|
|
}
|