mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
import type { ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
|
|
import { googleApiRequest } from './GenericFunctions';
|
|
|
|
interface GoogleDriveFilesItem {
|
|
id: string;
|
|
name: string;
|
|
mimeType: string;
|
|
webViewLink: string;
|
|
}
|
|
|
|
interface GoogleDriveDriveItem {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export async function fileSearch(
|
|
this: ILoadOptionsFunctions,
|
|
filter?: string,
|
|
paginationToken?: string,
|
|
): Promise<INodeListSearchResult> {
|
|
const query: string[] = [];
|
|
if (filter) {
|
|
query.push(`name contains '${filter.replace("'", "\\'")}'`);
|
|
}
|
|
query.push("mimeType != 'application/vnd.google-apps.folder'");
|
|
const res = await googleApiRequest.call(this, 'GET', '/drive/v3/files', undefined, {
|
|
q: query.join(' and '),
|
|
pageToken: paginationToken,
|
|
fields: 'nextPageToken,files(id,name,mimeType,webViewLink)',
|
|
orderBy: 'name_natural',
|
|
});
|
|
return {
|
|
results: res.files.map((i: GoogleDriveFilesItem) => ({
|
|
name: i.name,
|
|
value: i.id,
|
|
url: i.webViewLink,
|
|
})),
|
|
paginationToken: res.nextPageToken,
|
|
};
|
|
}
|
|
|
|
export async function folderSearch(
|
|
this: ILoadOptionsFunctions,
|
|
filter?: string,
|
|
paginationToken?: string,
|
|
): Promise<INodeListSearchResult> {
|
|
const query: string[] = [];
|
|
if (filter) {
|
|
query.push(`name contains '${filter.replace("'", "\\'")}'`);
|
|
}
|
|
query.push("mimeType = 'application/vnd.google-apps.folder'");
|
|
const res = await googleApiRequest.call(this, 'GET', '/drive/v3/files', undefined, {
|
|
q: query.join(' and '),
|
|
pageToken: paginationToken,
|
|
fields: 'nextPageToken,files(id,name,mimeType,webViewLink)',
|
|
orderBy: 'name_natural',
|
|
});
|
|
return {
|
|
results: res.files.map((i: GoogleDriveFilesItem) => ({
|
|
name: i.name,
|
|
value: i.id,
|
|
url: i.webViewLink,
|
|
})),
|
|
paginationToken: res.nextPageToken,
|
|
};
|
|
}
|
|
|
|
export async function driveSearch(
|
|
this: ILoadOptionsFunctions,
|
|
filter?: string,
|
|
paginationToken?: string,
|
|
): Promise<INodeListSearchResult> {
|
|
const res = await googleApiRequest.call(this, 'GET', '/drive/v3/drives', undefined, {
|
|
q: filter ? `name contains '${filter.replace("'", "\\'")}'` : undefined,
|
|
pageToken: paginationToken,
|
|
});
|
|
return {
|
|
results: res.drives.map((i: GoogleDriveDriveItem) => ({
|
|
name: i.name,
|
|
value: i.id,
|
|
})),
|
|
paginationToken: res.nextPageToken,
|
|
};
|
|
}
|