312 lines
9.2 KiB
Dart
312 lines
9.2 KiB
Dart
import 'dart:async';
|
|
import 'dart:math' as math;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:surface/providers/sn_network.dart';
|
|
import 'package:surface/providers/user_directory.dart';
|
|
import 'package:surface/providers/websocket.dart';
|
|
import 'package:surface/types/chat.dart';
|
|
import 'package:uuid/uuid.dart';
|
|
|
|
class ChatMessageController extends ChangeNotifier {
|
|
static const kChatMessageBoxPrefix = 'nex_chat_messages_';
|
|
static const kSingleBatchLoadLimit = 100;
|
|
|
|
late final SnNetworkProvider _sn;
|
|
late final UserDirectoryProvider _ud;
|
|
late final WebSocketProvider _ws;
|
|
|
|
StreamSubscription? _wsSubscription;
|
|
|
|
ChatMessageController(BuildContext context) {
|
|
_sn = context.read<SnNetworkProvider>();
|
|
_ud = context.read<UserDirectoryProvider>();
|
|
_ws = context.read<WebSocketProvider>();
|
|
}
|
|
|
|
bool isPending = true;
|
|
bool isLoading = false;
|
|
|
|
int? messageTotal;
|
|
|
|
bool get isAllLoaded =>
|
|
messageTotal != null && messages.length >= messageTotal!;
|
|
|
|
String? _boxKey;
|
|
SnChannel? channel;
|
|
SnChannelMember? profile;
|
|
|
|
/// Messages are the all the messages that in the channel
|
|
final List<SnChatMessage> messages = List.empty(growable: true);
|
|
|
|
/// Unconfirmed messages are the messages that sent by client but did not receive the reply from websocket server.
|
|
/// Stored as a list of nonce to provide the loading state
|
|
final List<String> unconfirmedMessages = List.empty(growable: true);
|
|
|
|
Box<SnChatMessage>? get _box =>
|
|
(_boxKey == null || isPending) ? null : Hive.box<SnChatMessage>(_boxKey!);
|
|
|
|
Future<void> initialize(SnChannel chan) async {
|
|
channel = chan;
|
|
|
|
// Initialize local data
|
|
_boxKey = '$kChatMessageBoxPrefix${chan.id}';
|
|
await Hive.openBox<SnChatMessage>(_boxKey!);
|
|
|
|
// Fetch channel profile
|
|
final resp = await _sn.client.get(
|
|
'/cgi/im/channels/${chan.keyPath}/me',
|
|
);
|
|
profile = SnChannelMember.fromJson(
|
|
resp.data as Map<String, dynamic>,
|
|
);
|
|
|
|
_wsSubscription = _ws.stream.stream.listen((event) {
|
|
switch (event.method) {
|
|
case 'events.new':
|
|
final payload = SnChatMessage.fromJson(event.payload!);
|
|
_addMessage(payload);
|
|
break;
|
|
case 'calls.new':
|
|
final payload = SnChatMessage.fromJson(event.payload!);
|
|
if (payload.channel.id == channel?.id) {
|
|
// TODO impl call
|
|
}
|
|
break;
|
|
case 'calls.end':
|
|
final payload = SnChatMessage.fromJson(event.payload!);
|
|
if (payload.channel.id == channel?.id) {
|
|
// TODO impl call
|
|
}
|
|
break;
|
|
case 'status.typing':
|
|
if (event.payload?['channel_id'] != channel?.id) break;
|
|
final member = SnChannelMember.fromJson(event.payload!['member']);
|
|
if (member.id == profile?.id) break;
|
|
// TODO impl typing users
|
|
// if (!_typingUsers.any((x) => x.id == member.id)) {
|
|
// setState(() {
|
|
// _typingUsers.add(member);
|
|
// });
|
|
// }
|
|
// _typingInactiveTimer[member.id]?.cancel();
|
|
// _typingInactiveTimer[member.id] = Timer(
|
|
// const Duration(seconds: 3),
|
|
// () {
|
|
// setState(() {
|
|
// _typingUsers.removeWhere((x) => x.id == member.id);
|
|
// _typingInactiveTimer.remove(member.id);
|
|
// });
|
|
// },
|
|
// );
|
|
}
|
|
});
|
|
|
|
isPending = false;
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> _saveMessageToLocal(Iterable<SnChatMessage> messages) async {
|
|
if (_box == null) return;
|
|
await _box!.putAll({
|
|
for (final message in messages) message.id: message,
|
|
});
|
|
}
|
|
|
|
Future<void> _addUnconfirmedMessage(SnChatMessage message) async {
|
|
messages.insert(0, message);
|
|
unconfirmedMessages.add(message.uuid);
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> _addMessage(SnChatMessage message) async {
|
|
final idx = messages.indexWhere((e) => e.uuid == message.uuid);
|
|
if (idx != -1) {
|
|
unconfirmedMessages.remove(message.uuid);
|
|
messages[idx] = message;
|
|
} else {
|
|
messages.insert(0, message);
|
|
}
|
|
await _applyMessage(message);
|
|
notifyListeners();
|
|
|
|
if (_box == null) return;
|
|
await _box!.put(message.id, message);
|
|
}
|
|
|
|
Future<void> _applyMessage(SnChatMessage message) async {
|
|
if (message.channelId != channel?.id) return;
|
|
|
|
switch (message.type) {
|
|
case 'messages.edit':
|
|
final body = message.body;
|
|
if (body['related_event'] != null) {
|
|
final idx = messages.indexWhere((x) => x.id == body['related_event']);
|
|
if (idx != -1) {
|
|
final newBody = message.body;
|
|
newBody.remove('related_event');
|
|
messages[idx] = messages[idx].copyWith(
|
|
body: newBody,
|
|
updatedAt: message.updatedAt,
|
|
);
|
|
if (_box!.containsKey(body['related_event'])) {
|
|
await _box!.put(body['related_event'], messages[idx]);
|
|
}
|
|
}
|
|
}
|
|
case 'messages.delete':
|
|
final body = message.body;
|
|
if (body['related_event'] != null) {
|
|
messages.removeWhere((x) => x.id == body['related_event']);
|
|
if (_box!.containsKey(body['related_event'])) {
|
|
await _box!.delete(body['related_event']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Future<void> sendMessage(
|
|
String type,
|
|
String content, {
|
|
int? quoteId,
|
|
int? relatedId,
|
|
List<String>? attachments,
|
|
}) async {
|
|
if (channel == null) return;
|
|
const uuid = Uuid();
|
|
final nonce = uuid.v4();
|
|
final body = {
|
|
'text': content,
|
|
'algorithm': 'plain',
|
|
if (quoteId != null) 'quote_id': quoteId,
|
|
if (relatedId != null) 'related_id': relatedId,
|
|
if (attachments != null) 'attachments': attachments,
|
|
};
|
|
|
|
// Mock the message locally
|
|
final message = SnChatMessage(
|
|
id: 0,
|
|
createdAt: DateTime.now(),
|
|
updatedAt: DateTime.now(),
|
|
deletedAt: null,
|
|
uuid: nonce,
|
|
body: body,
|
|
type: type,
|
|
channel: channel!,
|
|
channelId: channel!.id,
|
|
sender: profile!,
|
|
senderId: profile!.id,
|
|
);
|
|
_addUnconfirmedMessage(message);
|
|
|
|
// Send to server
|
|
try {
|
|
await _sn.client.post(
|
|
'/cgi/im/channels/${channel!.keyPath}/messages',
|
|
data: {
|
|
'type': type,
|
|
'uuid': nonce,
|
|
'body': body,
|
|
},
|
|
);
|
|
} catch (err) {
|
|
print(err);
|
|
}
|
|
}
|
|
|
|
/// Check the local storage is up to date with the server.
|
|
/// If the local storage is not up to date, it will be updated.
|
|
Future<void> checkUpdate() async {
|
|
if (_box == null) return;
|
|
if (_box!.isEmpty) return;
|
|
|
|
isLoading = true;
|
|
notifyListeners();
|
|
|
|
try {
|
|
final resp = await _sn.client.get(
|
|
'/cgi/im/channels/${channel!.keyPath}/events/update',
|
|
queryParameters: {
|
|
'pivot': _box!.values.last.id,
|
|
},
|
|
);
|
|
if (resp.data['up_to_date'] == true) return;
|
|
// Only preload the first 100 messages to prevent first time check update cause load to server and waste local storage.
|
|
// FIXME If the local is missing more than 100 messages, it won't be fetched, this is a problem, we need to fix it.
|
|
final countToFetch = math.min(resp.data['count'] as int, 100);
|
|
|
|
for (int idx = 0; idx < countToFetch; idx += kSingleBatchLoadLimit) {
|
|
await getMessages(kSingleBatchLoadLimit, idx);
|
|
}
|
|
} catch (err) {
|
|
rethrow;
|
|
} finally {
|
|
await loadMessages();
|
|
isLoading = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
/// Get message from local storage first, then from the server.
|
|
/// Will not check local storage is up to date with the server.
|
|
/// If you need to do the sync, do the `checkUpdate` instead.
|
|
Future<List<SnChatMessage>> getMessages(
|
|
int take,
|
|
int offset, {
|
|
bool forceLocal = false,
|
|
}) async {
|
|
if (_box != null) {
|
|
// Try retrieve these messages from the local storage
|
|
if (_box!.length >= take + offset || forceLocal) {
|
|
return _box!.values.skip(offset).take(take).toList();
|
|
}
|
|
}
|
|
|
|
final resp = await _sn.client.get(
|
|
'/cgi/im/channels/${channel!.keyPath}/events',
|
|
queryParameters: {
|
|
'take': take,
|
|
'offset': offset,
|
|
},
|
|
);
|
|
messageTotal = resp.data['count'] as int?;
|
|
final out = List<SnChatMessage>.from(
|
|
resp.data['data']?.map((e) => SnChatMessage.fromJson(e)) ?? [],
|
|
);
|
|
_saveMessageToLocal(out);
|
|
|
|
// Preload sender accounts
|
|
await _ud.listAccount(out.map((ele) => ele.sender.accountId).toSet());
|
|
|
|
return out;
|
|
}
|
|
|
|
/// The load messages method work as same as the `getMessages` method.
|
|
/// But it won't return the messages instead append them to the value that controller has.
|
|
/// At the same time, this method provide the `isLoading` state.
|
|
/// The `skip` parameter is no longer required since it will skip the messages count that already loaded.
|
|
Future<void> loadMessages({int take = 20}) async {
|
|
isLoading = true;
|
|
notifyListeners();
|
|
|
|
try {
|
|
final out = await getMessages(take, messages.length);
|
|
messages.addAll(out);
|
|
} catch (err) {
|
|
rethrow;
|
|
} finally {
|
|
isLoading = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_box?.close();
|
|
_wsSubscription?.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|