veilidchat/lib/contacts/cubits/contact_list_cubit.dart

108 lines
3.7 KiB
Dart
Raw Normal View History

2024-01-30 17:03:14 -05:00
import 'dart:async';
import 'dart:convert';
import 'package:veilid_support/veilid_support.dart';
import '../../account_manager/account_manager.dart';
import '../../proto/proto.dart' as proto;
import '../../tools/tools.dart';
import 'conversation_cubit.dart';
2024-01-30 17:03:14 -05:00
//////////////////////////////////////////////////
// Mutable state for per-account contacts
class ContactListCubit extends DHTShortArrayCubit<proto.Contact> {
ContactListCubit({
required ActiveAccountInfo activeAccountInfo,
required proto.Account account,
}) : _activeAccountInfo = activeAccountInfo,
super(
2024-01-30 17:03:14 -05:00
open: () => _open(activeAccountInfo, account),
decodeElement: proto.Contact.fromBuffer);
static Future<DHTShortArray> _open(
ActiveAccountInfo activeAccountInfo, proto.Account account) async {
final accountRecordKey =
activeAccountInfo.userLogin.accountRecordInfo.accountRecord.recordKey;
2024-02-12 09:10:07 -05:00
final contactListRecordKey = account.contactList.toVeilid();
2024-01-30 17:03:14 -05:00
final dhtRecord = await DHTShortArray.openOwned(contactListRecordKey,
debugName: 'ContactListCubit::_open::ContactList',
2024-01-30 17:03:14 -05:00
parent: accountRecordKey);
return dhtRecord;
}
Future<void> createContact({
required proto.Profile remoteProfile,
required IdentityMaster remoteIdentity,
required TypedKey remoteConversationRecordKey,
required TypedKey localConversationRecordKey,
}) async {
// Create Contact
final contact = proto.Contact()
..editedProfile = remoteProfile
..remoteProfile = remoteProfile
..identityMasterJson = jsonEncode(remoteIdentity.toJson())
..identityPublicKey = TypedKey(
kind: remoteIdentity.identityRecordKey.kind,
value: remoteIdentity.identityPublicKey)
.toProto()
..remoteConversationRecordKey = remoteConversationRecordKey.toProto()
..localConversationRecordKey = localConversationRecordKey.toProto()
..showAvailability = false;
// Add Contact to account's list
// if this fails, don't keep retrying, user can try again later
2024-04-01 09:04:54 -04:00
await operateWrite((writer) async {
2024-05-28 22:01:50 -04:00
if (!await writer.tryAdd(contact.writeToBuffer())) {
2024-02-27 12:45:58 -05:00
throw Exception('Failed to add contact record');
}
});
2024-01-30 17:03:14 -05:00
}
Future<void> deleteContact({required proto.Contact contact}) async {
final remoteIdentityPublicKey = contact.identityPublicKey.toVeilid();
final localConversationRecordKey =
contact.localConversationRecordKey.toVeilid();
final remoteConversationRecordKey =
2024-02-12 09:10:07 -05:00
contact.remoteConversationRecordKey.toVeilid();
2024-01-30 17:03:14 -05:00
// Remove Contact from account's list
2024-05-13 10:03:25 -04:00
final deletedItem = await operateWrite((writer) async {
2024-04-01 09:04:54 -04:00
for (var i = 0; i < writer.length; i++) {
2024-05-28 22:01:50 -04:00
final item = await writer.getProtobuf(proto.Contact.fromBuffer, i);
2024-02-27 12:45:58 -05:00
if (item == null) {
throw Exception('Failed to get contact');
}
2024-05-27 18:04:00 -04:00
if (item.localConversationRecordKey ==
contact.localConversationRecordKey) {
2024-05-28 22:01:50 -04:00
await writer.remove(i);
2024-05-13 10:03:25 -04:00
return item;
2024-02-27 12:45:58 -05:00
}
2024-01-30 17:03:14 -05:00
}
2024-03-28 22:46:26 -04:00
return null;
});
2024-05-13 10:03:25 -04:00
if (deletedItem != null) {
2024-02-27 12:45:58 -05:00
try {
// Make a conversation cubit to manipulate the conversation
final conversationCubit = ConversationCubit(
activeAccountInfo: _activeAccountInfo,
remoteIdentityPublicKey: remoteIdentityPublicKey,
localConversationRecordKey: localConversationRecordKey,
remoteConversationRecordKey: remoteConversationRecordKey,
);
// Delete the local and remote conversation records
await conversationCubit.delete();
2024-02-27 12:45:58 -05:00
} on Exception catch (e) {
log.debug('error deleting conversation records: $e', e);
2024-01-30 17:03:14 -05:00
}
2024-03-28 22:46:26 -04:00
}
2024-01-30 17:03:14 -05:00
}
final ActiveAccountInfo _activeAccountInfo;
2024-01-30 17:03:14 -05:00
}