1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-27 23:31:41 +02:00

[PM-6426] Implementing nextSync timeout using TaskScheduler

This commit is contained in:
Cesar Gonzalez 2024-04-01 09:43:17 -05:00
parent 66ebdc04c8
commit b165849cd9
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF
2 changed files with 19 additions and 9 deletions

View File

@ -91,6 +91,7 @@ import {
BiometricStateService,
DefaultBiometricStateService,
} from "@bitwarden/common/platform/biometrics/biometric-state.service";
import { ScheduledTaskNames } from "@bitwarden/common/platform/enums/scheduled-task-name.enum";
import { StateFactory } from "@bitwarden/common/platform/factories/state-factory";
import { GlobalState } from "@bitwarden/common/platform/models/domain/global-state";
import { AppIdService } from "@bitwarden/common/platform/services/app-id.service";
@ -210,6 +211,7 @@ import BrowserLocalStorageService from "../platform/services/browser-local-stora
import BrowserMessagingPrivateModeBackgroundService from "../platform/services/browser-messaging-private-mode-background.service";
import BrowserMessagingService from "../platform/services/browser-messaging.service";
import { BrowserStateService } from "../platform/services/browser-state.service";
import { BrowserTaskSchedulerService } from "../platform/services/browser-task-scheduler.service";
import I18nService from "../platform/services/i18n.service";
import { LocalBackedSessionStorageService } from "../platform/services/local-backed-session-storage.service";
import { BackgroundPlatformUtilsService } from "../platform/services/platform-utils/background-platform-utils.service";
@ -309,6 +311,7 @@ export default class MainBackground {
activeUserStateProvider: ActiveUserStateProvider;
derivedStateProvider: DerivedStateProvider;
stateProvider: StateProvider;
taskSchedulerService: BrowserTaskSchedulerService;
fido2Service: Fido2ServiceAbstraction;
individualVaultExportService: IndividualVaultExportServiceAbstraction;
organizationVaultExportService: OrganizationVaultExportServiceAbstraction;
@ -426,6 +429,10 @@ export default class MainBackground {
this.globalStateProvider,
this.derivedStateProvider,
);
this.taskSchedulerService = new BrowserTaskSchedulerService(
this.logService,
this.stateProvider,
);
this.environmentService = new BrowserEnvironmentService(
this.logService,
this.stateProvider,
@ -1274,17 +1281,19 @@ export default class MainBackground {
if (override || lastSyncAgo >= syncInternal) {
await this.syncService.fullSync(override);
this.scheduleNextSync();
} else {
this.scheduleNextSync();
}
await this.scheduleNextSync();
}
private scheduleNextSync() {
if (this.syncTimeout) {
clearTimeout(this.syncTimeout);
}
this.syncTimeout = setTimeout(async () => await this.fullSync(), 5 * 60 * 1000); // check every 5 minutes
private async scheduleNextSync() {
await this.taskSchedulerService.clearScheduledTask({
taskName: ScheduledTaskNames.scheduleNextSyncTimeout,
});
await this.taskSchedulerService.setTimeout(
() => this.fullSync(),
5 * 60 * 1000, // check every 5 minutes
ScheduledTaskNames.scheduleNextSyncTimeout,
);
}
}

View File

@ -66,6 +66,7 @@
"clipboardRead",
"clipboardWrite",
"idle",
"alarms",
"webRequest",
"webRequestBlocking"
],