import { SyncService } from "jslib-common/abstractions/sync.service"; import { Response } from "jslib-node/cli/models/response"; import { MessageResponse } from "jslib-node/cli/models/response/messageResponse"; import { StringResponse } from "jslib-node/cli/models/response/stringResponse"; import { CliUtils } from "src/utils"; export class SyncCommand { constructor(private syncService: SyncService) {} async run(cmdOptions: Record): Promise { const normalizedOptions = new Options(cmdOptions); if (normalizedOptions.last) { return await this.getLastSync(); } try { await this.syncService.fullSync(normalizedOptions.force, true); const res = new MessageResponse("Syncing complete.", null); return Response.success(res); } catch (e) { return Response.error("Syncing failed: " + e.toString()); } } private async getLastSync() { const lastSyncDate = await this.syncService.getLastSync(); const res = new StringResponse(lastSyncDate == null ? null : lastSyncDate.toISOString()); return Response.success(res); } } class Options { last: boolean; force: boolean; constructor(passedOptions: Record) { this.last = CliUtils.convertBooleanOption(passedOptions?.last); this.force = CliUtils.convertBooleanOption(passedOptions?.force); } }