2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type {
|
2020-02-12 21:30:58 +00:00
|
|
|
CheckNetworkStatusPayloadType,
|
|
|
|
NetworkActionType,
|
|
|
|
} from '../state/ducks/network';
|
|
|
|
import { getSocketStatus } from '../shims/socketStatus';
|
2021-09-17 18:27:53 +00:00
|
|
|
import * as log from '../logging/log';
|
2021-10-06 21:59:34 +00:00
|
|
|
import { SECOND } from '../util/durations';
|
2022-01-03 21:44:04 +00:00
|
|
|
import { SocketStatus } from '../types/SocketStatus';
|
2020-02-12 21:30:58 +00:00
|
|
|
|
|
|
|
type NetworkActions = {
|
|
|
|
checkNetworkStatus: (x: CheckNetworkStatusPayloadType) => NetworkActionType;
|
|
|
|
closeConnectingGracePeriod: () => NetworkActionType;
|
|
|
|
};
|
|
|
|
|
2020-09-03 14:59:24 +00:00
|
|
|
export function initializeNetworkObserver(
|
|
|
|
networkActions: NetworkActions
|
|
|
|
): void {
|
2021-10-06 21:59:34 +00:00
|
|
|
log.info('Initializing network observer');
|
2020-02-12 21:30:58 +00:00
|
|
|
|
|
|
|
const refresh = () => {
|
2022-01-03 21:44:04 +00:00
|
|
|
const socketStatus = getSocketStatus();
|
|
|
|
|
|
|
|
if (socketStatus === SocketStatus.CLOSED) {
|
|
|
|
// If we couldn't connect during startup - we should still switch SQL to
|
|
|
|
// the main process to avoid stalling UI.
|
|
|
|
window.Signal.Data.goBackToMainProcess();
|
|
|
|
}
|
|
|
|
|
2020-02-12 21:30:58 +00:00
|
|
|
networkActions.checkNetworkStatus({
|
|
|
|
isOnline: navigator.onLine,
|
2022-01-03 21:44:04 +00:00
|
|
|
socketStatus,
|
2020-02-12 21:30:58 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-09-16 20:18:42 +00:00
|
|
|
window.Whisper.events.on('socketStatusChange', refresh);
|
|
|
|
|
2020-02-12 21:30:58 +00:00
|
|
|
window.addEventListener('online', refresh);
|
|
|
|
window.addEventListener('offline', refresh);
|
|
|
|
window.setTimeout(() => {
|
|
|
|
networkActions.closeConnectingGracePeriod();
|
2021-10-06 21:59:34 +00:00
|
|
|
}, 5 * SECOND);
|
2020-02-12 21:30:58 +00:00
|
|
|
}
|