ToolJet/plugins/packages/gcs/lib/index.ts
Gandharv d367720c66
Add source options types for plugins (#1861)
* add source options types

* Remove query type

* fix source options

* add accesstoken - slack

* add types.ts file

* add idx files

* Add query options type for plugins (#1878)

* add query options type

* add missing import
2022-01-24 19:29:21 +05:30

64 lines
No EOL
2 KiB
TypeScript

import { Storage } from '@google-cloud/storage';
import { ConnectionTestResult, QueryError, QueryResult, QueryService} from '@tooljet-plugins/common'
import { listBuckets, signedUrlForGet, signedUrlForPut, listFiles, getFile, uploadFile } from './operations';
import { SourceOptions, QueryOptions } from './types'
export default class GcsQueryService implements QueryService {
async run(sourceOptions: SourceOptions, queryOptions: QueryOptions): Promise<QueryResult> {
const operation = queryOptions.operation;
const client = await this.getConnection(sourceOptions);
let result = {};
try {
switch (operation) {
case 'list_buckets':
result = await listBuckets(client, {});
break;
case 'list_files':
result = await listFiles(client, queryOptions);
break;
case 'get_file':
result = await getFile(client, queryOptions);
break;
case 'upload_file':
result = await uploadFile(client, queryOptions);
break;
case 'signed_url_for_get':
result = await signedUrlForGet(client, queryOptions);
break;
case 'signed_url_for_put':
result = await signedUrlForPut(client, queryOptions);
break;
}
} catch (error) {
throw new QueryError('Query could not be completed', error.message, {});
}
return {
status: 'ok',
data: result,
};
}
async testConnection(sourceOptions: SourceOptions): Promise<ConnectionTestResult> {
const client: Storage = await this.getConnection(sourceOptions);
await listBuckets(client, {});
return {
status: 'ok',
};
}
async getConnection(sourceOptions: SourceOptions): Promise<any> {
const privateKey = JSON.parse(sourceOptions['private_key']);
const storage = new Storage({
projectId: privateKey['project_id'],
credentials: {
client_email: privateKey['client_email'],
private_key: privateKey['private_key'],
},
});
return storage;
}
}