2021-04-14 14:09:46 +02:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-08-01 15:45:41 +02:00
|
|
|
import 'package:fluffychat/config/setting_keys.dart';
|
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_database.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
|
2021-06-18 10:29:48 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:fluffychat/utils/fluffy_share.dart';
|
2021-05-22 09:08:23 +02:00
|
|
|
import 'package:fluffychat/pages/views/chat_list_view.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
|
|
import 'package:receive_sharing_intent/receive_sharing_intent.dart';
|
2021-05-16 16:38:52 +02:00
|
|
|
import 'package:uni_links/uni_links.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2021-05-16 16:38:52 +02:00
|
|
|
import '../main.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import '../widgets/matrix.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import '../utils/matrix_sdk_extensions.dart/matrix_file_extension.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import '../utils/url_launcher.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
|
2021-06-20 13:16:51 +02:00
|
|
|
import 'bootstrap_dialog.dart';
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
enum SelectMode { normal, share, select }
|
2021-08-01 08:05:40 +02:00
|
|
|
enum PopupMenuAction {
|
|
|
|
settings,
|
|
|
|
invite,
|
|
|
|
newGroup,
|
|
|
|
newSpace,
|
|
|
|
setStatus,
|
|
|
|
archive,
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
class ChatList extends StatefulWidget {
|
2021-05-23 20:13:10 +02:00
|
|
|
const ChatList({Key key}) : super(key: key);
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
ChatListController createState() => ChatListController();
|
|
|
|
}
|
|
|
|
|
|
|
|
class ChatListController extends State<ChatList> {
|
|
|
|
StreamSubscription _intentDataStreamSubscription;
|
|
|
|
|
|
|
|
StreamSubscription _intentFileStreamSubscription;
|
|
|
|
|
2021-05-16 16:38:52 +02:00
|
|
|
StreamSubscription _intentUriStreamSubscription;
|
|
|
|
|
2021-08-01 07:45:34 +02:00
|
|
|
String _activeSpaceId;
|
|
|
|
String get activeSpaceId => _activeSpaceId;
|
|
|
|
|
|
|
|
void setActiveSpaceId(BuildContext context, String spaceId) {
|
|
|
|
Scaffold.of(context).openEndDrawer();
|
|
|
|
setState(() => _activeSpaceId = spaceId);
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:56:05 +02:00
|
|
|
void editSpace(BuildContext context, String spaceId) async {
|
2021-08-01 07:54:44 +02:00
|
|
|
Scaffold.of(context).openEndDrawer();
|
2021-08-04 09:56:05 +02:00
|
|
|
await Matrix.of(context).client.getRoomById(spaceId).postLoad();
|
|
|
|
VRouter.of(context).to('/spaces/$spaceId');
|
2021-08-01 07:54:44 +02:00
|
|
|
}
|
|
|
|
|
2021-08-01 07:45:34 +02:00
|
|
|
List<Room> get spaces =>
|
|
|
|
Matrix.of(context).client.rooms.where((r) => r.isSpace).toList();
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
final selectedRoomIds = <String>{};
|
2021-06-20 13:16:51 +02:00
|
|
|
Future<bool> crossSigningCachedFuture;
|
|
|
|
bool crossSigningCached;
|
|
|
|
bool hideChatBackupBanner = false;
|
|
|
|
|
|
|
|
void hideChatBackupBannerAction() =>
|
|
|
|
setState(() => hideChatBackupBanner = true);
|
|
|
|
|
|
|
|
void firstRunBootstrapAction() async {
|
|
|
|
hideChatBackupBannerAction();
|
|
|
|
await BootstrapDialog(
|
|
|
|
client: Matrix.of(context).client,
|
|
|
|
).show(context);
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-06-20 13:16:51 +02:00
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2021-05-23 20:13:10 +02:00
|
|
|
String get activeChat => VRouter.of(context).pathParameters['roomid'];
|
|
|
|
|
2021-05-31 20:41:46 +02:00
|
|
|
SelectMode get selectMode => Matrix.of(context).shareContent != null
|
|
|
|
? SelectMode.share
|
|
|
|
: selectedRoomIds.isEmpty
|
|
|
|
? SelectMode.normal
|
|
|
|
: SelectMode.select;
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
|
|
|
|
if (files?.isEmpty ?? true) return;
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-04-14 14:09:46 +02:00
|
|
|
final file = File(files.first.path);
|
|
|
|
|
|
|
|
Matrix.of(context).shareContent = {
|
|
|
|
'msgtype': 'chat.fluffy.shared_file',
|
|
|
|
'file': MatrixFile(
|
|
|
|
bytes: file.readAsBytesSync(),
|
|
|
|
name: file.path,
|
|
|
|
).detectFileType,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void _processIncomingSharedText(String text) {
|
|
|
|
if (text == null) return;
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-04-14 14:09:46 +02:00
|
|
|
if (text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
|
|
|
|
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
|
|
|
|
!RegExp(r'\s').hasMatch(text))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Matrix.of(context).shareContent = {
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'body': text,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-05-16 16:38:52 +02:00
|
|
|
void _processIncomingUris(String text) async {
|
|
|
|
if (text == null || !text.startsWith(AppConfig.appOpenUrlScheme)) return;
|
|
|
|
if (text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
|
|
|
|
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
|
|
|
|
!RegExp(r'\s').hasMatch(text))) {
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-05-16 16:38:52 +02:00
|
|
|
UrlLauncher(context, text).openMatrixToUrl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void _initReceiveSharingIntent() {
|
|
|
|
if (!PlatformInfos.isMobile) return;
|
|
|
|
|
|
|
|
// For sharing images coming from outside the app while the app is in the memory
|
|
|
|
_intentFileStreamSubscription = ReceiveSharingIntent.getMediaStream()
|
|
|
|
.listen(_processIncomingSharedFiles, onError: print);
|
|
|
|
|
|
|
|
// For sharing images coming from outside the app while the app is closed
|
|
|
|
ReceiveSharingIntent.getInitialMedia().then(_processIncomingSharedFiles);
|
|
|
|
|
|
|
|
// For sharing or opening urls/text coming from outside the app while the app is in the memory
|
|
|
|
_intentDataStreamSubscription = ReceiveSharingIntent.getTextStream()
|
|
|
|
.listen(_processIncomingSharedText, onError: print);
|
|
|
|
|
|
|
|
// For sharing or opening urls/text coming from outside the app while the app is closed
|
|
|
|
ReceiveSharingIntent.getInitialText().then(_processIncomingSharedText);
|
2021-05-16 16:38:52 +02:00
|
|
|
|
|
|
|
// For receiving shared Uris
|
2021-08-02 18:41:09 +02:00
|
|
|
_intentUriStreamSubscription = linkStream.listen(_processIncomingUris);
|
2021-05-16 16:38:52 +02:00
|
|
|
if (FluffyChatApp.gotInitialLink == false) {
|
|
|
|
FluffyChatApp.gotInitialLink = true;
|
|
|
|
getInitialLink().then(_processIncomingUris);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_initReceiveSharingIntent();
|
2021-08-01 16:05:32 +02:00
|
|
|
WidgetsBinding.instance.addPostFrameCallback(
|
|
|
|
(_) => waitForFirstSync().then((_) => checkBootstrap()),
|
|
|
|
);
|
2021-04-14 14:09:46 +02:00
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2021-08-01 16:05:32 +02:00
|
|
|
void checkBootstrap() async {
|
|
|
|
if (!Matrix.of(context).client.encryptionEnabled) return;
|
|
|
|
if ((Matrix.of(context).client.database as FlutterMatrixHiveStore)
|
|
|
|
.get(SettingKeys.dontAskForBootstrapKey) ==
|
|
|
|
true) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final crossSigning = await crossSigningCachedFuture;
|
|
|
|
final needsBootstrap =
|
|
|
|
Matrix.of(context).client.encryption?.crossSigning?.enabled == false ||
|
|
|
|
crossSigning == false;
|
|
|
|
final isUnknownSession = Matrix.of(context).client.isUnknownSession;
|
|
|
|
if (needsBootstrap || isUnknownSession) {
|
|
|
|
firstRunBootstrapAction();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_intentDataStreamSubscription?.cancel();
|
|
|
|
_intentFileStreamSubscription?.cancel();
|
2021-05-16 16:38:52 +02:00
|
|
|
_intentUriStreamSubscription?.cancel();
|
2021-04-14 14:09:46 +02:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2021-08-01 15:33:26 +02:00
|
|
|
bool roomCheck(Room room) {
|
2021-08-04 09:49:34 +02:00
|
|
|
if (room.isSpace && room.membership == Membership.join) return false;
|
2021-08-01 15:33:26 +02:00
|
|
|
if (activeSpaceId != null) {
|
|
|
|
final space = Matrix.of(context).client.getRoomById(activeSpaceId);
|
2021-08-01 15:45:41 +02:00
|
|
|
if (space.spaceChildren?.any((child) => child.roomId == room.id) ??
|
|
|
|
false) {
|
2021-08-01 15:33:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
2021-08-01 15:45:41 +02:00
|
|
|
if (room.spaceParents?.any((parent) => parent.roomId == activeSpaceId) ??
|
|
|
|
false) {
|
2021-08-01 15:33:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (room.isDirectChat &&
|
2021-08-01 16:06:34 +02:00
|
|
|
room.summary?.mHeroes != null &&
|
2021-08-01 15:33:26 +02:00
|
|
|
room.summary.mHeroes.any((userId) {
|
|
|
|
final user = space.getState(EventTypes.RoomMember, userId)?.asUser;
|
|
|
|
return user != null && user.membership == Membership.join;
|
|
|
|
})) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void toggleSelection(String roomId) {
|
|
|
|
setState(() => selectedRoomIds.contains(roomId)
|
|
|
|
? selectedRoomIds.remove(roomId)
|
|
|
|
: selectedRoomIds.add(roomId));
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleUnread() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setUnread(!room.isUnread),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleFavouriteRoom() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setFavourite(!room.isFavourite),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleMuted() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setPushRuleState(
|
|
|
|
room.pushRuleState == PushRuleState.notify
|
2021-04-21 14:19:54 +02:00
|
|
|
? PushRuleState.mentionsOnly
|
2021-04-14 14:09:46 +02:00
|
|
|
: PushRuleState.notify),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> archiveAction() async {
|
|
|
|
final confirmed = await showOkCancelAlertDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).areYouSure,
|
|
|
|
okLabel: L10n.of(context).yes,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
) ==
|
|
|
|
OkCancelResult.ok;
|
|
|
|
if (!confirmed) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => _archiveSelectedRooms(),
|
|
|
|
);
|
|
|
|
setState(() => null);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setStatus() async {
|
|
|
|
final input = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).setStatus,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: L10n.of(context).statusExampleMessage,
|
|
|
|
),
|
|
|
|
]);
|
|
|
|
if (input == null) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => Matrix.of(context).client.setPresence(
|
2021-04-14 14:09:46 +02:00
|
|
|
Matrix.of(context).client.userID,
|
|
|
|
PresenceType.online,
|
|
|
|
statusMsg: input.single,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void onPopupMenuSelect(action) {
|
|
|
|
switch (action) {
|
|
|
|
case PopupMenuAction.setStatus:
|
|
|
|
setStatus();
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.settings:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/settings');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
case PopupMenuAction.invite:
|
|
|
|
FluffyShare.share(
|
|
|
|
L10n.of(context).inviteText(Matrix.of(context).client.userID,
|
|
|
|
'https://matrix.to/#/${Matrix.of(context).client.userID}'),
|
|
|
|
context);
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.newGroup:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/newgroup');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
2021-08-01 08:05:40 +02:00
|
|
|
case PopupMenuAction.newSpace:
|
|
|
|
VRouter.of(context).to('/newspace');
|
|
|
|
break;
|
2021-04-14 14:09:46 +02:00
|
|
|
case PopupMenuAction.archive:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/archive');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _archiveSelectedRooms() async {
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
while (selectedRoomIds.isNotEmpty) {
|
|
|
|
final roomId = selectedRoomIds.first;
|
|
|
|
await client.getRoomById(roomId).leave();
|
|
|
|
toggleSelection(roomId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> waitForFirstSync() async {
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
if (client.prevBatch?.isEmpty ?? true) {
|
|
|
|
await client.onFirstSync.stream.first;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cancelAction() {
|
|
|
|
if (selectMode == SelectMode.share) {
|
|
|
|
setState(() => Matrix.of(context).shareContent = null);
|
|
|
|
} else {
|
|
|
|
setState(() => selectedRoomIds.clear());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2021-05-23 13:28:55 +02:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Matrix.of(context).navigatorContext = context;
|
2021-06-20 13:16:51 +02:00
|
|
|
crossSigningCachedFuture ??= Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.encryption
|
|
|
|
?.crossSigning
|
|
|
|
?.isCached()
|
|
|
|
?.then((c) {
|
|
|
|
if (mounted) setState(() => crossSigningCached = c);
|
|
|
|
return c;
|
|
|
|
});
|
2021-05-23 13:28:55 +02:00
|
|
|
return ChatListView(this);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|