fluffychat/lib/pages/chat_list/chat_list.dart

571 lines
18 KiB
Dart
Raw Normal View History

2021-04-14 12:09:46 +00:00
import 'dart:async';
import 'dart:io';
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-04-14 12:09:46 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2021-04-14 12:09:46 +00:00
import 'package:receive_sharing_intent/receive_sharing_intent.dart';
2021-05-16 14:38:52 +00:00
import 'package:uni_links/uni_links.dart';
2021-05-23 11:11:55 +00:00
import 'package:vrouter/vrouter.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/config/app_config.dart';
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/pages/chat_list/chat_list_view.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/fluffy_share.dart';
import 'package:fluffychat/utils/platform_infos.dart';
2021-11-09 20:32:16 +00:00
import '../../../utils/account_bundles.dart';
import '../../main.dart';
import '../../utils/matrix_sdk_extensions.dart/matrix_file_extension.dart';
import '../../utils/url_launcher.dart';
import '../../widgets/matrix.dart';
import '../bootstrap/bootstrap_dialog.dart';
2021-04-14 12:09:46 +00:00
enum SelectMode { normal, share, select }
2021-08-01 06:05:40 +00:00
enum PopupMenuAction {
settings,
invite,
newGroup,
newSpace,
setStatus,
archive,
}
2021-04-14 12:09:46 +00:00
class ChatList extends StatefulWidget {
2021-05-23 18:13:10 +00:00
const ChatList({Key key}) : super(key: key);
2021-04-14 12:09:46 +00:00
@override
ChatListController createState() => ChatListController();
}
class ChatListController extends State<ChatList> {
StreamSubscription _intentDataStreamSubscription;
StreamSubscription _intentFileStreamSubscription;
2021-05-16 14:38:52 +00:00
StreamSubscription _intentUriStreamSubscription;
String _activeSpaceId;
2021-11-15 09:05:15 +00:00
String get activeSpaceId =>
Matrix.of(context).client.getRoomById(_activeSpaceId) == null
? null
: _activeSpaceId;
final ScrollController scrollController = ScrollController();
bool scrolledToTop = true;
void _onScroll() {
final newScrolledToTop = scrollController.position.pixels <= 0;
if (newScrolledToTop != scrolledToTop) {
setState(() {
scrolledToTop = newScrolledToTop;
});
}
}
void setActiveSpaceId(BuildContext context, String spaceId) {
setState(() => _activeSpaceId = spaceId);
}
2021-08-04 07:56:05 +00:00
void editSpace(BuildContext context, String spaceId) async {
await Matrix.of(context).client.getRoomById(spaceId).postLoad();
2021-08-15 11:26:16 +00:00
VRouter.of(context).toSegments(['spaces', spaceId]);
2021-08-01 05:54:44 +00:00
}
List<Room> get spaces =>
Matrix.of(context).client.rooms.where((r) => r.isSpace).toList();
2021-04-14 12:09:46 +00:00
final selectedRoomIds = <String>{};
bool crossSigningCached;
2021-11-19 08:12:47 +00:00
bool showChatBackupBanner = false;
void firstRunBootstrapAction() async {
2021-11-19 08:12:47 +00:00
setState(() {
showChatBackupBanner = false;
});
await BootstrapDialog(
client: Matrix.of(context).client,
).show(context);
2021-07-08 15:10:20 +00:00
VRouter.of(context).to('/rooms');
}
2021-04-14 12:09:46 +00:00
2021-05-23 18:13:10 +00:00
String get activeChat => VRouter.of(context).pathParameters['roomid'];
SelectMode get selectMode => Matrix.of(context).shareContent != null
? SelectMode.share
: selectedRoomIds.isEmpty
? SelectMode.normal
: SelectMode.select;
2021-04-14 12:09:46 +00:00
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
if (files?.isEmpty ?? true) return;
2021-07-08 15:10:20 +00:00
VRouter.of(context).to('/rooms');
2021-04-14 12:09:46 +00: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 15:10:20 +00:00
VRouter.of(context).to('/rooms');
2021-11-26 13:59:35 +00:00
if (text.toLowerCase().startsWith(AppConfig.deepLinkPrefix) ||
text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
2021-04-14 12:09:46 +00:00
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
!RegExp(r'\s').hasMatch(text))) {
2021-11-26 13:59:35 +00:00
return _processIncomingUris(text);
2021-04-14 12:09:46 +00:00
}
Matrix.of(context).shareContent = {
'msgtype': 'm.text',
'body': text,
};
}
2021-05-16 14:38:52 +00:00
void _processIncomingUris(String text) async {
2021-08-28 08:50:12 +00:00
if (text == null) return;
VRouter.of(context).to('/rooms');
2021-11-21 12:58:19 +00:00
text = text.replaceFirst('im.fluffychat://', 'matrix:');
2021-08-28 08:50:12 +00:00
UrlLauncher(context, text).openMatrixToUrl();
return;
2021-05-16 14:38:52 +00:00
}
2021-04-14 12:09:46 +00: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 14:38:52 +00:00
// For receiving shared Uris
2021-08-02 16:41:09 +00:00
_intentUriStreamSubscription = linkStream.listen(_processIncomingUris);
2021-05-16 14:38:52 +00:00
if (FluffyChatApp.gotInitialLink == false) {
FluffyChatApp.gotInitialLink = true;
getInitialLink().then(_processIncomingUris);
}
2021-04-14 12:09:46 +00:00
}
@override
void initState() {
_initReceiveSharingIntent();
2021-11-15 09:05:15 +00:00
scrollController.addListener(_onScroll);
2021-11-15 09:05:15 +00:00
_waitForFirstSync();
2021-04-14 12:09:46 +00:00
super.initState();
}
2021-08-01 14:05:32 +00:00
void checkBootstrap() async {
if (!Matrix.of(context).client.encryptionEnabled) return;
2021-11-11 18:52:56 +00:00
await Matrix.of(context).client.accountDataLoading;
await Matrix.of(context).client.userDeviceKeysLoading;
2021-11-11 18:39:55 +00:00
final crossSigning =
await Matrix.of(context).client.encryption?.crossSigning?.isCached() ??
false;
2021-08-01 14:05:32 +00:00
final needsBootstrap =
Matrix.of(context).client.encryption?.crossSigning?.enabled == false ||
crossSigning == false;
final isUnknownSession = Matrix.of(context).client.isUnknownSession;
if (needsBootstrap || isUnknownSession) {
2021-11-19 08:12:47 +00:00
setState(() {
showChatBackupBanner = true;
});
2021-08-01 14:05:32 +00:00
}
}
2021-04-14 12:09:46 +00:00
@override
void dispose() {
_intentDataStreamSubscription?.cancel();
_intentFileStreamSubscription?.cancel();
2021-05-16 14:38:52 +00:00
_intentUriStreamSubscription?.cancel();
scrollController.removeListener(_onScroll);
2021-04-14 12:09:46 +00:00
super.dispose();
}
bool roomCheck(Room room) {
if (room.isSpace && room.membership == Membership.join && !room.isUnread) {
return false;
}
if (activeSpaceId != null) {
final space = Matrix.of(context).client.getRoomById(activeSpaceId);
if (space.spaceChildren?.any((child) => child.roomId == room.id) ??
false) {
return true;
}
if (room.spaceParents?.any((parent) => parent.roomId == activeSpaceId) ??
false) {
return true;
}
if (room.isDirectChat &&
2021-08-01 14:06:34 +00:00
room.summary?.mHeroes != null &&
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 12:09:46 +00:00
void toggleSelection(String roomId) {
setState(() => selectedRoomIds.contains(roomId)
? selectedRoomIds.remove(roomId)
: selectedRoomIds.add(roomId));
}
Future<void> toggleUnread() async {
await showFutureLoadingDialog(
2021-04-14 12:09:46 +00:00
context: context,
future: () async {
final markUnread = anySelectedRoomNotMarkedUnread;
final client = Matrix.of(context).client;
for (final roomId in selectedRoomIds) {
final room = client.getRoomById(roomId);
if (room.markedUnread == markUnread) continue;
await client.getRoomById(roomId).markUnread(markUnread);
}
},
2021-04-14 12:09:46 +00:00
);
cancelAction();
2021-04-14 12:09:46 +00:00
}
Future<void> toggleFavouriteRoom() async {
await showFutureLoadingDialog(
2021-04-14 12:09:46 +00:00
context: context,
future: () async {
final makeFavorite = anySelectedRoomNotFavorite;
final client = Matrix.of(context).client;
for (final roomId in selectedRoomIds) {
final room = client.getRoomById(roomId);
if (room.isFavourite == makeFavorite) continue;
await client.getRoomById(roomId).setFavourite(makeFavorite);
}
},
2021-04-14 12:09:46 +00:00
);
cancelAction();
2021-04-14 12:09:46 +00:00
}
Future<void> toggleMuted() async {
await showFutureLoadingDialog(
2021-04-14 12:09:46 +00:00
context: context,
future: () async {
final newState = anySelectedRoomNotMuted
? PushRuleState.mentionsOnly
: PushRuleState.notify;
final client = Matrix.of(context).client;
for (final roomId in selectedRoomIds) {
final room = client.getRoomById(roomId);
if (room.pushRuleState == newState) continue;
await client.getRoomById(roomId).setPushRuleState(newState);
}
},
2021-04-14 12:09:46 +00:00
);
cancelAction();
2021-04-14 12:09:46 +00:00
}
Future<void> archiveAction() async {
final confirmed = await showOkCancelAlertDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2021-04-14 12:09:46 +00: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 13:02:36 +00:00
useRootNavigator: false,
2021-04-14 12:09:46 +00: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 11:59:55 +00:00
future: () => Matrix.of(context).client.setPresence(
2021-04-14 12:09:46 +00: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 15:10:20 +00:00
VRouter.of(context).to('/settings');
2021-04-14 12:09:46 +00: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 15:10:20 +00:00
VRouter.of(context).to('/newgroup');
2021-04-14 12:09:46 +00:00
break;
2021-08-01 06:05:40 +00:00
case PopupMenuAction.newSpace:
VRouter.of(context).to('/newspace');
break;
2021-04-14 12:09:46 +00:00
case PopupMenuAction.archive:
2021-07-08 15:10:20 +00:00
VRouter.of(context).to('/archive');
2021-04-14 12:09:46 +00:00
break;
}
}
Future<void> _archiveSelectedRooms() async {
final client = Matrix.of(context).client;
while (selectedRoomIds.isNotEmpty) {
final roomId = selectedRoomIds.first;
try {
await client.getRoomById(roomId).leave();
} finally {
toggleSelection(roomId);
}
2021-04-14 12:09:46 +00:00
}
}
Future<void> addOrRemoveToSpace() async {
if (activeSpaceId != null) {
2021-11-15 07:20:29 +00:00
final consent = await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).removeFromSpace,
message: L10n.of(context).removeFromSpaceDescription,
okLabel: L10n.of(context).remove,
cancelLabel: L10n.of(context).cancel,
isDestructiveAction: true,
fullyCapitalizedForMaterial: false,
);
if (consent != OkCancelResult.ok) return;
final space = Matrix.of(context).client.getRoomById(activeSpaceId);
final result = await showFutureLoadingDialog(
context: context,
future: () async {
for (final roomId in selectedRoomIds) {
await space.removeSpaceChild(roomId);
}
},
);
if (result.error == null) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(L10n.of(context).chatHasBeenRemovedFromThisSpace),
),
);
}
} else {
final selectedSpace = await showConfirmationDialog<String>(
context: context,
title: L10n.of(context).addToSpace,
2021-11-15 07:20:29 +00:00
message: L10n.of(context).addToSpaceDescription,
fullyCapitalizedForMaterial: false,
actions: Matrix.of(context)
.client
.rooms
.where((r) => r.isSpace)
.map(
(space) => AlertDialogAction(
key: space.id,
label: space.displayname,
),
)
.toList());
if (selectedSpace == null) return;
final result = await showFutureLoadingDialog(
context: context,
future: () async {
2021-11-15 07:20:29 +00:00
final space = Matrix.of(context).client.getRoomById(selectedSpace);
if (space.canSendDefaultStates) {
for (final roomId in selectedRoomIds) {
await space.setSpaceChild(roomId);
}
}
},
);
if (result.error == null) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(L10n.of(context).chatHasBeenAddedToThisSpace),
),
);
}
}
setState(() => selectedRoomIds.clear());
}
bool get anySelectedRoomNotMarkedUnread => selectedRoomIds.any(
(roomId) => !Matrix.of(context).client.getRoomById(roomId).markedUnread);
bool get anySelectedRoomNotFavorite => selectedRoomIds.any(
(roomId) => !Matrix.of(context).client.getRoomById(roomId).isFavourite);
bool get anySelectedRoomNotMuted => selectedRoomIds.any((roomId) =>
Matrix.of(context).client.getRoomById(roomId).pushRuleState ==
PushRuleState.notify);
2021-11-15 09:05:15 +00:00
bool waitForFirstSync = false;
2021-11-09 16:30:04 +00:00
Future<void> _waitForFirstSync() async {
2021-04-14 12:09:46 +00:00
final client = Matrix.of(context).client;
2021-11-09 12:06:41 +00:00
await client.roomsLoading;
await client.accountDataLoading;
2021-04-14 12:09:46 +00:00
if (client.prevBatch?.isEmpty ?? true) {
await client.onFirstSync.stream.first;
}
// Load space members to display DM rooms
if (activeSpaceId != null) {
final space = client.getRoomById(activeSpaceId);
final localMembers = space.getParticipants().length;
final actualMembersCount = (space.summary?.mInvitedMemberCount ?? 0) +
(space.summary?.mJoinedMemberCount ?? 0);
if (localMembers < actualMembersCount) {
await space.requestParticipants();
}
}
2021-11-15 09:05:15 +00:00
setState(() {
waitForFirstSync = true;
});
WidgetsBinding.instance.addPostFrameCallback((_) => checkBootstrap());
return;
2021-04-14 12:09:46 +00:00
}
void cancelAction() {
if (selectMode == SelectMode.share) {
setState(() => Matrix.of(context).shareContent = null);
} else {
setState(() => selectedRoomIds.clear());
}
}
void setActiveClient(Client client) {
if (client == null) return;
VRouter.of(context).to('/rooms');
setState(() {
_activeSpaceId = null;
selectedRoomIds.clear();
Matrix.of(context).setActiveClient(client);
});
}
void setActiveBundle(String bundle) {
VRouter.of(context).to('/rooms');
setState(() {
_activeSpaceId = null;
selectedRoomIds.clear();
Matrix.of(context).activeBundle = bundle;
if (!Matrix.of(context)
.currentBundle
.any((client) => client == Matrix.of(context).client)) {
Matrix.of(context)
.setActiveClient(Matrix.of(context).currentBundle.first);
}
});
}
void editBundlesForAccount(String userId, String activeBundle) async {
final client = Matrix.of(context)
.widget
.clients[Matrix.of(context).getClientIndexByMatrixId(userId)];
final action = await showConfirmationDialog<EditBundleAction>(
context: context,
title: L10n.of(context).editBundlesForAccount,
actions: [
AlertDialogAction(
key: EditBundleAction.addToBundle,
label: L10n.of(context).addToBundle,
),
if (activeBundle != client.userID)
AlertDialogAction(
key: EditBundleAction.removeFromBundle,
label: L10n.of(context).removeFromBundle,
),
],
);
if (action == null) return;
switch (action) {
case EditBundleAction.addToBundle:
final bundle = await showTextInputDialog(
context: context,
title: L10n.of(context).bundleName,
textFields: [
DialogTextField(hintText: L10n.of(context).bundleName)
]);
if (bundle == null || bundle.isEmpty || bundle.single.isEmpty) return;
await showFutureLoadingDialog(
context: context,
future: () => client.setAccountBundle(bundle.single),
);
break;
case EditBundleAction.removeFromBundle:
await showFutureLoadingDialog(
context: context,
future: () => client.removeFromAccountBundle(activeBundle),
);
}
}
bool get displayBundles =>
Matrix.of(context).hasComplexBundles &&
Matrix.of(context).accountBundles.keys.length > 1;
String get secureActiveBundle {
if (Matrix.of(context).activeBundle == null ||
!Matrix.of(context)
.accountBundles
.keys
.contains(Matrix.of(context).activeBundle)) {
return Matrix.of(context).accountBundles.keys.first;
}
return Matrix.of(context).activeBundle;
}
void resetActiveBundle() {
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
setState(() {
Matrix.of(context).activeBundle = null;
});
});
}
2021-04-14 12:09:46 +00:00
@override
Widget build(BuildContext context) {
Matrix.of(context).navigatorContext = context;
return ChatListView(this);
}
2021-04-14 12:09:46 +00:00
}
enum EditBundleAction { addToBundle, removeFromBundle }