first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
export * as loadOptions from './loadOptions';
|
||||
export * as listSearch from './listSearch';
|
||||
@@ -0,0 +1,116 @@
|
||||
import type { IDataObject, ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
|
||||
|
||||
import { googleBigQueryApiRequest } from '../transport';
|
||||
|
||||
export async function searchProjects(
|
||||
this: ILoadOptionsFunctions,
|
||||
filter?: string,
|
||||
paginationToken?: string,
|
||||
): Promise<INodeListSearchResult> {
|
||||
const qs = {
|
||||
pageToken: (paginationToken as string) || undefined,
|
||||
};
|
||||
|
||||
const response = await googleBigQueryApiRequest.call(this, 'GET', '/v2/projects', undefined, qs);
|
||||
|
||||
let { projects } = response;
|
||||
|
||||
if (filter) {
|
||||
projects = projects.filter(
|
||||
(project: IDataObject) =>
|
||||
(project.friendlyName as string).includes(filter) ||
|
||||
(project.id as string).includes(filter),
|
||||
);
|
||||
}
|
||||
|
||||
return {
|
||||
results: projects.map((project: IDataObject) => ({
|
||||
name: project.friendlyName as string,
|
||||
value: project.id,
|
||||
url: `https://console.cloud.google.com/bigquery?project=${project.id as string}`,
|
||||
})),
|
||||
paginationToken: response.nextPageToken,
|
||||
};
|
||||
}
|
||||
|
||||
export async function searchDatasets(
|
||||
this: ILoadOptionsFunctions,
|
||||
filter?: string,
|
||||
paginationToken?: string,
|
||||
): Promise<INodeListSearchResult> {
|
||||
const projectId = this.getNodeParameter('projectId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
|
||||
const qs = {
|
||||
pageToken: (paginationToken as string) || undefined,
|
||||
};
|
||||
|
||||
const response = await googleBigQueryApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/v2/projects/${projectId}/datasets`,
|
||||
undefined,
|
||||
qs,
|
||||
);
|
||||
|
||||
let { datasets } = response;
|
||||
|
||||
if (filter) {
|
||||
datasets = datasets.filter((dataset: { datasetReference: IDataObject }) =>
|
||||
(dataset.datasetReference.datasetId as string).includes(filter),
|
||||
);
|
||||
}
|
||||
|
||||
return {
|
||||
results: datasets.map((dataset: { datasetReference: IDataObject }) => ({
|
||||
name: dataset.datasetReference.datasetId as string,
|
||||
value: dataset.datasetReference.datasetId,
|
||||
})),
|
||||
paginationToken: response.nextPageToken,
|
||||
};
|
||||
}
|
||||
|
||||
export async function searchTables(
|
||||
this: ILoadOptionsFunctions,
|
||||
filter?: string,
|
||||
paginationToken?: string,
|
||||
): Promise<INodeListSearchResult> {
|
||||
const projectId = this.getNodeParameter('projectId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
|
||||
const datasetId = this.getNodeParameter('datasetId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
|
||||
const qs = {
|
||||
pageToken: (paginationToken as string) || undefined,
|
||||
};
|
||||
|
||||
const response = await googleBigQueryApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/v2/projects/${projectId}/datasets/${datasetId}/tables`,
|
||||
undefined,
|
||||
qs,
|
||||
);
|
||||
|
||||
let { tables } = response;
|
||||
|
||||
if (filter) {
|
||||
tables = tables.filter((table: { tableReference: IDataObject }) =>
|
||||
(table.tableReference.tableId as string).includes(filter),
|
||||
);
|
||||
}
|
||||
|
||||
const returnData = {
|
||||
results: tables.map((table: { tableReference: IDataObject }) => ({
|
||||
name: table.tableReference.tableId as string,
|
||||
value: table.tableReference.tableId,
|
||||
})),
|
||||
paginationToken: response.nextPageToken,
|
||||
};
|
||||
|
||||
return returnData;
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
import type { IDataObject, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
|
||||
|
||||
import { googleBigQueryApiRequest } from '../transport';
|
||||
|
||||
export async function getDatasets(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const projectId = this.getNodeParameter('projectId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
const { datasets } = await googleBigQueryApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/v2/projects/${projectId}/datasets`,
|
||||
);
|
||||
for (const dataset of datasets) {
|
||||
returnData.push({
|
||||
name: dataset.datasetReference.datasetId as string,
|
||||
value: dataset.datasetReference.datasetId,
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
}
|
||||
|
||||
export async function getSchema(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const projectId = this.getNodeParameter('projectId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
const datasetId = this.getNodeParameter('datasetId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
const tableId = this.getNodeParameter('tableId', undefined, {
|
||||
extractValue: true,
|
||||
});
|
||||
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
|
||||
const { schema } = await googleBigQueryApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/v2/projects/${projectId}/datasets/${datasetId}/tables/${tableId}`,
|
||||
{},
|
||||
);
|
||||
|
||||
for (const field of schema.fields as IDataObject[]) {
|
||||
returnData.push({
|
||||
name: field.name as string,
|
||||
value: field.name as string,
|
||||
|
||||
description:
|
||||
`type: ${field.type as string}` + (field.mode ? ` mode: ${field.mode as string}` : ''),
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
}
|
||||
Reference in New Issue
Block a user