mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
* merge develop * Add eslint dependencies, configs and scripts to plugins project * run lint with Github action * ignore tests and dist folders * fun eslint with --fix and manual fixes, renamed __tests_ to __tests__ * add plugins packages folder to lint-staged config * fix lint issue
64 lines
2 KiB
TypeScript
64 lines
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;
|
|
}
|
|
}
|