mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
218 lines
7.0 KiB
Dart
218 lines
7.0 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import 'init.dart';
|
|
import 'veilid_processor/veilid_processor.dart';
|
|
|
|
const int ticksPerContactInvitationCheck = 5;
|
|
const int ticksPerNewMessageCheck = 5;
|
|
|
|
class BackgroundTicker extends StatefulWidget {
|
|
const BackgroundTicker({required this.builder, super.key});
|
|
|
|
final Widget Function(BuildContext) builder;
|
|
|
|
@override
|
|
BackgroundTickerState createState() => BackgroundTickerState();
|
|
@override
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
super.debugFillProperties(properties);
|
|
properties.add(ObjectFlagProperty<Widget Function(BuildContext p1)>.has(
|
|
'builder', builder));
|
|
}
|
|
}
|
|
|
|
class BackgroundTickerState extends State<BackgroundTicker> {
|
|
Timer? _tickTimer;
|
|
bool _inTick = false;
|
|
bool _inDoContactInvitationCheck = false;
|
|
bool _inDoNewMessageCheck = false;
|
|
|
|
int _contactInvitationCheckTick = 0;
|
|
int _newMessageCheckTick = 0;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_tickTimer = Timer.periodic(const Duration(seconds: 1), (timer) {
|
|
if (!_inTick) {
|
|
unawaited(_onTick());
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
final tickTimer = _tickTimer;
|
|
if (tickTimer != null) {
|
|
tickTimer.cancel();
|
|
}
|
|
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
// ignore: prefer_expression_function_bodies
|
|
Widget build(BuildContext context) {
|
|
return widget.builder(context);
|
|
}
|
|
|
|
Future<void> _onTick() async {
|
|
// Don't tick until we are initialized
|
|
if (!eventualInitialized.isCompleted) {
|
|
return;
|
|
}
|
|
if (!ProcessorRepository
|
|
.instance.processorConnectionState.isPublicInternetReady) {
|
|
return;
|
|
}
|
|
|
|
_inTick = true;
|
|
try {
|
|
// Tick DHT record pool
|
|
if (!DHTRecordPool.instance.inTick) {
|
|
unawaited(DHTRecordPool.instance.tick());
|
|
}
|
|
|
|
// Check extant contact invitations once every N seconds
|
|
_contactInvitationCheckTick += 1;
|
|
if (_contactInvitationCheckTick >= ticksPerContactInvitationCheck) {
|
|
_contactInvitationCheckTick = 0;
|
|
if (!_inDoContactInvitationCheck) {
|
|
unawaited(_doContactInvitationCheck());
|
|
}
|
|
}
|
|
|
|
// Check new messages once every N seconds
|
|
_newMessageCheckTick += 1;
|
|
if (_newMessageCheckTick >= ticksPerNewMessageCheck) {
|
|
_newMessageCheckTick = 0;
|
|
if (!_inDoNewMessageCheck) {
|
|
unawaited(_doNewMessageCheck());
|
|
}
|
|
}
|
|
} finally {
|
|
_inTick = false;
|
|
}
|
|
}
|
|
|
|
Future<void> _doContactInvitationCheck() async {
|
|
if (_inDoContactInvitationCheck) {
|
|
return;
|
|
}
|
|
_inDoContactInvitationCheck = true;
|
|
|
|
if (!ProcessorRepository
|
|
.instance.processorConnectionState.isPublicInternetReady) {
|
|
return;
|
|
}
|
|
// final contactInvitationRecords =
|
|
// await ref.read(fetchContactInvitationRecordsProvider.future);
|
|
// if (contactInvitationRecords == null) {
|
|
// return;
|
|
// }
|
|
try {
|
|
// final activeAccountInfo =
|
|
// await ref.read(fetchActiveAccountProvider.future);
|
|
// if (activeAccountInfo == null) {
|
|
// return;
|
|
// }
|
|
|
|
// final allChecks = <Future<void>>[];
|
|
// for (final contactInvitationRecord in contactInvitationRecords) {
|
|
// allChecks.add(() async {
|
|
// final acceptReject = await checkAcceptRejectContact(
|
|
// activeAccountInfo: activeAccountInfo,
|
|
// contactInvitationRecord: contactInvitationRecord);
|
|
// if (acceptReject != null) {
|
|
// final acceptedContact = acceptReject.acceptedContact;
|
|
// if (acceptedContact != null) {
|
|
// // Accept
|
|
// await createContact(
|
|
// activeAccountInfo: activeAccountInfo,
|
|
// profile: acceptedContact.profile,
|
|
// remoteIdentity: acceptedContact.remoteIdentity,
|
|
// remoteConversationRecordKey:
|
|
// acceptedContact.remoteConversationRecordKey,
|
|
// localConversationRecordKey:
|
|
// acceptedContact.localConversationRecordKey,
|
|
// );
|
|
// ref
|
|
// ..invalidate(fetchContactInvitationRecordsProvider)
|
|
// ..invalidate(fetchContactListProvider);
|
|
// } else {
|
|
// // Reject
|
|
// ref.invalidate(fetchContactInvitationRecordsProvider);
|
|
// }
|
|
// }
|
|
// }());
|
|
// }
|
|
// await Future.wait(allChecks);
|
|
} finally {
|
|
_inDoContactInvitationCheck = true;
|
|
}
|
|
}
|
|
|
|
Future<void> _doNewMessageCheck() async {
|
|
if (_inDoNewMessageCheck) {
|
|
return;
|
|
}
|
|
_inDoNewMessageCheck = true;
|
|
|
|
try {
|
|
if (!ProcessorRepository
|
|
.instance.processorConnectionState.isPublicInternetReady) {
|
|
return;
|
|
}
|
|
// final activeChat = ref.read(activeChatStateProvider);
|
|
// if (activeChat == null) {
|
|
// return;
|
|
// }
|
|
// final activeAccountInfo =
|
|
// await ref.read(fetchActiveAccountProvider.future);
|
|
// if (activeAccountInfo == null) {
|
|
// return;
|
|
// }
|
|
|
|
// final contactList = ref.read(fetchContactListProvider).asData?.value ??
|
|
// const IListConst([]);
|
|
|
|
// final activeChatContactIdx = contactList.indexWhere(
|
|
// (c) =>
|
|
// proto.TypedKeyProto.fromProto(c.remoteConversationRecordKey) ==
|
|
// activeChat,
|
|
// );
|
|
// if (activeChatContactIdx == -1) {
|
|
// return;
|
|
// }
|
|
// final activeChatContact = contactList[activeChatContactIdx];
|
|
// final remoteIdentityPublicKey =
|
|
// proto.TypedKeyProto.fromProto(activeChatContact.identityPublicKey);
|
|
// final remoteConversationRecordKey = proto.TypedKeyProto.fromProto(
|
|
// activeChatContact.remoteConversationRecordKey);
|
|
// final localConversationRecordKey = proto.TypedKeyProto.fromProto(
|
|
// activeChatContact.localConversationRecordKey);
|
|
|
|
// final newMessages = await getRemoteConversationMessages(
|
|
// activeAccountInfo: activeAccountInfo,
|
|
// remoteIdentityPublicKey: remoteIdentityPublicKey,
|
|
// remoteConversationRecordKey: remoteConversationRecordKey);
|
|
// if (newMessages != null && newMessages.isNotEmpty) {
|
|
// final changed = await mergeLocalConversationMessages(
|
|
// activeAccountInfo: activeAccountInfo,
|
|
// localConversationRecordKey: localConversationRecordKey,
|
|
// remoteIdentityPublicKey: remoteIdentityPublicKey,
|
|
// newMessages: newMessages);
|
|
// if (changed) {
|
|
// ref.invalidate(activeConversationMessagesProvider);
|
|
// }
|
|
// }
|
|
} finally {
|
|
_inDoNewMessageCheck = false;
|
|
}
|
|
}
|
|
}
|