@mieweb/wikigdrive
Version:
Google Drive to MarkDown synchronization
38 lines (30 loc) • 1.26 kB
text/typescript
import winston from 'winston';
import {QueueTask} from './QueueTask.ts';
import {GoogleDriveService} from '../../google/GoogleDriveService.ts';
import {FileContentService} from '../../utils/FileContentService.ts';
import {BufferWritable} from '../../utils/BufferWritable.ts';
import {SimpleFile} from '../../model/GoogleFile.ts';
import {HasAccessToken} from '../../google/AuthClient.ts';
export class TaskFetchDocument extends QueueTask {
constructor(protected logger: winston.Logger,
private googleDriveService: GoogleDriveService,
private auth: HasAccessToken,
private fileService: FileContentService,
private file: SimpleFile,
private forceDownload: boolean) {
super(logger);
}
async run(): Promise<QueueTask[]> {
const odtPath = this.file.id + '.odt';
if (await this.fileService.exists(odtPath) && !this.forceDownload) {
return [];
}
const destOdt = new BufferWritable();
await this.googleDriveService.exportDocument(
this.auth,
{ id: this.file.id, mimeType: 'application/vnd.oasis.opendocument.text', name: this.file.name },
destOdt);
await this.fileService.writeBuffer(odtPath, destOdt.getBuffer());
return [];
}
}