mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
120 lines
4.3 KiB
Dart
120 lines
4.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
|
|
extension UiaRequestManager on MatrixState {
|
|
Future uiaRequestHandler(UiaRequest uiaRequest) async {
|
|
try {
|
|
if (uiaRequest.state != UiaRequestState.waitForUser ||
|
|
uiaRequest.nextStages.isEmpty) return;
|
|
final stage = uiaRequest.nextStages.first;
|
|
switch (stage) {
|
|
case AuthenticationTypes.password:
|
|
final input = cachedPassword ??
|
|
(await showTextInputDialog(
|
|
context: navigatorContext,
|
|
title: L10n.of(context).pleaseEnterYourPassword,
|
|
okLabel: L10n.of(context).ok,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
textFields: [
|
|
const DialogTextField(
|
|
minLines: 1,
|
|
maxLines: 1,
|
|
obscureText: true,
|
|
hintText: '******',
|
|
)
|
|
],
|
|
))
|
|
?.single;
|
|
if (input?.isEmpty ?? true) return;
|
|
return uiaRequest.completeStage(
|
|
AuthenticationPassword(
|
|
session: uiaRequest.session,
|
|
password: input,
|
|
identifier: AuthenticationUserIdentifier(user: client.userID),
|
|
),
|
|
);
|
|
case AuthenticationTypes.emailIdentity:
|
|
final emailInput = await showTextInputDialog(
|
|
context: navigatorContext,
|
|
message: L10n.of(context).serverRequiresEmail,
|
|
okLabel: L10n.of(context).next,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
textFields: [
|
|
DialogTextField(
|
|
hintText: L10n.of(context).addEmail,
|
|
keyboardType: TextInputType.emailAddress,
|
|
),
|
|
],
|
|
);
|
|
if (emailInput == null || emailInput.isEmpty) {
|
|
return uiaRequest
|
|
.cancel(Exception(L10n.of(context).serverRequiresEmail));
|
|
}
|
|
final clientSecret = DateTime.now().millisecondsSinceEpoch.toString();
|
|
final currentThreepidCreds = await client.requestTokenToRegisterEmail(
|
|
clientSecret,
|
|
emailInput.single,
|
|
0,
|
|
);
|
|
final auth = AuthenticationThreePidCreds(
|
|
session: uiaRequest.session,
|
|
type: AuthenticationTypes.emailIdentity,
|
|
threepidCreds: [
|
|
ThreepidCreds(
|
|
sid: currentThreepidCreds.sid,
|
|
clientSecret: clientSecret,
|
|
),
|
|
],
|
|
);
|
|
if (OkCancelResult.ok ==
|
|
await showOkCancelAlertDialog(
|
|
useRootNavigator: false,
|
|
context: navigatorContext,
|
|
title: L10n.of(context).weSentYouAnEmail,
|
|
message: L10n.of(context).pleaseClickOnLink,
|
|
okLabel: L10n.of(context).iHaveClickedOnLink,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
)) {
|
|
return uiaRequest.completeStage(auth);
|
|
}
|
|
return uiaRequest.cancel();
|
|
case AuthenticationTypes.dummy:
|
|
return uiaRequest.completeStage(
|
|
AuthenticationData(
|
|
type: AuthenticationTypes.dummy,
|
|
session: uiaRequest.session,
|
|
),
|
|
);
|
|
default:
|
|
await launch(
|
|
client.homeserver.toString() +
|
|
'/_matrix/client/r0/auth/$stage/fallback/web?session=${uiaRequest.session}',
|
|
);
|
|
if (OkCancelResult.ok ==
|
|
await showOkCancelAlertDialog(
|
|
useRootNavigator: false,
|
|
message: L10n.of(context).pleaseFollowInstructionsOnWeb,
|
|
context: navigatorContext,
|
|
okLabel: L10n.of(context).next,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
)) {
|
|
return uiaRequest.completeStage(
|
|
AuthenticationData(session: uiaRequest.session),
|
|
);
|
|
} else {
|
|
return uiaRequest.cancel();
|
|
}
|
|
}
|
|
} catch (e, s) {
|
|
Logs().e('Error while background UIA', e, s);
|
|
return uiaRequest.cancel(e is Exception ? e : Exception(e));
|
|
}
|
|
}
|
|
}
|