bitwarden-estensione-browser/src/commands/sync.command.ts

32 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-05-14 17:15:54 +02:00
import * as program from 'commander';
import { SyncService } from 'jslib/abstractions/sync.service';
2018-05-14 20:54:19 +02:00
import { Response } from '../models/response';
import { MessageResponse } from '../models/response/messageResponse';
import { StringResponse } from '../models/response/stringResponse';
2018-05-14 20:54:19 +02:00
2018-05-14 17:15:54 +02:00
export class SyncCommand {
2018-05-14 19:37:52 +02:00
constructor(private syncService: SyncService) { }
2018-05-14 17:15:54 +02:00
2018-05-14 20:54:19 +02:00
async run(cmd: program.Command): Promise<Response> {
if (cmd.last || false) {
return await this.getLastSync();
}
2018-05-14 17:15:54 +02:00
try {
2018-05-14 20:58:18 +02:00
const result = await this.syncService.fullSync(cmd.force || false);
const res = new MessageResponse('Syncing complete.', null);
return Response.success(res);
2018-05-14 17:15:54 +02:00
} catch (e) {
2018-05-15 17:08:55 +02:00
return Response.error(e);
2018-05-14 17:15:54 +02:00
}
}
private async getLastSync() {
const lastSyncDate = await this.syncService.getLastSync();
const res = new StringResponse(lastSyncDate == null ? null : lastSyncDate.toISOString());
return Response.success(res);
}
2018-05-14 17:15:54 +02:00
}