You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.2 KiB
Dart
77 lines
2.2 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
|
import 'package:fluffychat/widgets/adaptive_dialogs/show_text_input_dialog.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
|
|
class SpaceCodeUtil {
|
|
static const codeLength = 7;
|
|
|
|
static bool isValidCode(String? spacecode) {
|
|
if (spacecode == null) return false;
|
|
return spacecode.length == codeLength && spacecode.contains(r'[0-9]');
|
|
}
|
|
|
|
static Future<String> generateSpaceCode(Client client) async {
|
|
final response = await client.httpClient.get(
|
|
Uri.parse(
|
|
'${client.homeserver}/_synapse/client/pangea/v1/request_room_code',
|
|
),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Authorization': 'Bearer ${client.accessToken}',
|
|
},
|
|
);
|
|
if (response.statusCode != 200) {
|
|
throw Exception('Failed to generate room code: $response');
|
|
}
|
|
final roomCodeResult = jsonDecode(response.body);
|
|
if (roomCodeResult['access_code'] is String) {
|
|
return roomCodeResult['access_code'] as String;
|
|
} else {
|
|
throw Exception('Invalid response, access_code not found $response');
|
|
}
|
|
}
|
|
|
|
static Future<void> joinWithSpaceCodeDialog(
|
|
BuildContext context,
|
|
) async {
|
|
final String? spaceCode = await showTextInputDialog(
|
|
context: context,
|
|
title: L10n.of(context).joinWithClassCode,
|
|
okLabel: L10n.of(context).ok,
|
|
cancelLabel: L10n.of(context).cancel,
|
|
hintText: L10n.of(context).joinWithClassCodeHint,
|
|
autoSubmit: true,
|
|
);
|
|
if (spaceCode == null || spaceCode.isEmpty) return;
|
|
await MatrixState.pangeaController.classController.joinClasswithCode(
|
|
context,
|
|
spaceCode,
|
|
);
|
|
}
|
|
|
|
static messageDialog(
|
|
BuildContext context,
|
|
String title,
|
|
void Function()? action,
|
|
) =>
|
|
showDialog(
|
|
context: context,
|
|
useRootNavigator: false,
|
|
builder: (context) => AlertDialog(
|
|
content: Text(title),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: action,
|
|
child: Text(L10n.of(context).ok),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|