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,358 @@
|
||||
import type {
|
||||
ICredentialDataDecryptedObject,
|
||||
ICredentialTestFunctions,
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
INodeProperties,
|
||||
IPairedItemData,
|
||||
JsonObject,
|
||||
IHttpRequestMethods,
|
||||
IRequestOptions,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
export function getSchemaHeader(
|
||||
context: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
method: IHttpRequestMethods,
|
||||
contextType: 'execute' | 'loadOptions',
|
||||
) {
|
||||
let useCustomSchema = false;
|
||||
|
||||
if (contextType === 'loadOptions') {
|
||||
useCustomSchema = context.getNodeParameter('useCustomSchema', false) as boolean;
|
||||
} else {
|
||||
useCustomSchema = context.getNodeParameter('useCustomSchema', 0, false) as boolean;
|
||||
}
|
||||
|
||||
if (useCustomSchema) {
|
||||
let schema: string;
|
||||
const headers: IDataObject = {};
|
||||
|
||||
if (contextType === 'loadOptions') {
|
||||
schema = context.getNodeParameter('schema', 'public') as string;
|
||||
} else {
|
||||
schema = context.getNodeParameter('schema', 0, 'public') as string;
|
||||
}
|
||||
|
||||
if (['POST', 'PATCH', 'PUT', 'DELETE'].includes(method)) {
|
||||
headers['Content-Profile'] = schema;
|
||||
} else if (['GET', 'HEAD'].includes(method)) {
|
||||
headers['Accept-Profile'] = schema;
|
||||
}
|
||||
|
||||
return headers;
|
||||
}
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
export async function supabaseApiRequest(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
method: IHttpRequestMethods,
|
||||
resource: string,
|
||||
body: IDataObject | IDataObject[] = {},
|
||||
qs: IDataObject = {},
|
||||
uri?: string,
|
||||
headers: IDataObject = {},
|
||||
) {
|
||||
const credentials = await this.getCredentials<{
|
||||
host: string;
|
||||
serviceRole: string;
|
||||
}>('supabaseApi');
|
||||
|
||||
const options: IRequestOptions = {
|
||||
headers: {
|
||||
Prefer: 'return=representation',
|
||||
},
|
||||
method,
|
||||
qs,
|
||||
body,
|
||||
uri: uri ?? `${credentials.host}/rest/v1${resource}`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
try {
|
||||
options.headers = Object.assign({}, options.headers, headers);
|
||||
if (Object.keys(body).length === 0) {
|
||||
delete options.body;
|
||||
}
|
||||
return await this.helpers.requestWithAuthentication.call(this, 'supabaseApi', options);
|
||||
} catch (error) {
|
||||
if (error.description) {
|
||||
error.message = `${error.message}: ${error.description}`;
|
||||
}
|
||||
throw new NodeApiError(this.getNode(), error as JsonObject);
|
||||
}
|
||||
}
|
||||
|
||||
const mapOperations: { [key: string]: string } = {
|
||||
create: 'created',
|
||||
update: 'updated',
|
||||
getAll: 'retrieved',
|
||||
delete: 'deleted',
|
||||
};
|
||||
|
||||
export function getFilters(
|
||||
resources: string[],
|
||||
operations: string[],
|
||||
{
|
||||
includeNoneOption = true,
|
||||
filterTypeDisplayName = 'Filter',
|
||||
filterFixedCollectionDisplayName = 'Filters',
|
||||
|
||||
mustMatchOptions = [
|
||||
{
|
||||
name: 'Any Filter',
|
||||
value: 'anyFilter',
|
||||
},
|
||||
{
|
||||
name: 'All Filters',
|
||||
value: 'allFilters',
|
||||
},
|
||||
],
|
||||
},
|
||||
): INodeProperties[] {
|
||||
return [
|
||||
{
|
||||
displayName: filterTypeDisplayName,
|
||||
name: 'filterType',
|
||||
type: 'options',
|
||||
options: [
|
||||
...(includeNoneOption ? [{ name: 'None', value: 'none' }] : []),
|
||||
{
|
||||
name: 'Build Manually',
|
||||
value: 'manual',
|
||||
},
|
||||
{
|
||||
name: 'String',
|
||||
value: 'string',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: resources,
|
||||
operation: operations,
|
||||
},
|
||||
},
|
||||
default: 'manual',
|
||||
},
|
||||
{
|
||||
displayName: 'Must Match',
|
||||
name: 'matchType',
|
||||
type: 'options',
|
||||
options: mustMatchOptions,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: resources,
|
||||
operation: operations,
|
||||
filterType: ['manual'],
|
||||
},
|
||||
},
|
||||
default: 'anyFilter',
|
||||
},
|
||||
{
|
||||
displayName: filterFixedCollectionDisplayName,
|
||||
name: 'filters',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: resources,
|
||||
operation: operations,
|
||||
filterType: ['manual'],
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
placeholder: 'Add Condition',
|
||||
options: [
|
||||
{
|
||||
displayName: 'Conditions',
|
||||
name: 'conditions',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'keyName',
|
||||
type: 'options',
|
||||
description:
|
||||
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
||||
typeOptions: {
|
||||
loadOptionsDependsOn: ['tableId'],
|
||||
loadOptionsMethod: 'getTableColumns',
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Condition',
|
||||
name: 'condition',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Equals',
|
||||
value: 'eq',
|
||||
},
|
||||
{
|
||||
name: 'Full-Text',
|
||||
value: 'fullText',
|
||||
},
|
||||
{
|
||||
name: 'Greater Than',
|
||||
value: 'gt',
|
||||
},
|
||||
{
|
||||
name: 'Greater Than or Equal',
|
||||
value: 'gte',
|
||||
},
|
||||
{
|
||||
name: 'ILIKE operator',
|
||||
value: 'ilike',
|
||||
description: 'Use * in place of %',
|
||||
},
|
||||
{
|
||||
name: 'Is',
|
||||
value: 'is',
|
||||
description: 'Checking for exact equality (null,true,false,unknown)',
|
||||
},
|
||||
{
|
||||
name: 'Less Than',
|
||||
value: 'lt',
|
||||
},
|
||||
{
|
||||
name: 'Less Than or Equal',
|
||||
value: 'lte',
|
||||
},
|
||||
{
|
||||
name: 'LIKE operator',
|
||||
value: 'like',
|
||||
description: 'Use * in place of %',
|
||||
},
|
||||
{
|
||||
name: 'Not Equals',
|
||||
value: 'neq',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Search Function',
|
||||
name: 'searchFunction',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
show: {
|
||||
condition: ['fullText'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'to_tsquery',
|
||||
value: 'fts',
|
||||
},
|
||||
{
|
||||
name: 'plainto_tsquery',
|
||||
value: 'plfts',
|
||||
},
|
||||
{
|
||||
name: 'phraseto_tsquery',
|
||||
value: 'phfts',
|
||||
},
|
||||
{
|
||||
name: 'websearch_to_tsquery',
|
||||
value: 'wfts',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Field Value',
|
||||
name: 'keyValue',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
description: `Filter to decide which rows get ${mapOperations[operations[0]]}`,
|
||||
},
|
||||
{
|
||||
displayName:
|
||||
'See <a href="https://postgrest.org/en/stable/references/api/tables_views.html#horizontal-filtering" target="_blank">PostgREST guide</a> to creating filters',
|
||||
name: 'jsonNotice',
|
||||
type: 'notice',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: resources,
|
||||
operation: operations,
|
||||
filterType: ['string'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Filters (String)',
|
||||
name: 'filterString',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: resources,
|
||||
operation: operations,
|
||||
filterType: ['string'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'name=eq.jhon',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
export const buildQuery = (obj: IDataObject, value: IDataObject) => {
|
||||
if (value.condition === 'fullText') {
|
||||
return Object.assign(obj, {
|
||||
[`${value.keyName}`]: `${value.searchFunction}.${value.keyValue}`,
|
||||
});
|
||||
}
|
||||
return Object.assign(obj, { [`${value.keyName}`]: `${value.condition}.${value.keyValue}` });
|
||||
};
|
||||
|
||||
export const buildOrQuery = (key: IDataObject) => {
|
||||
if (key.condition === 'fullText') {
|
||||
return `${key.keyName}.${key.searchFunction}.${key.keyValue}`;
|
||||
}
|
||||
return `${key.keyName}.${key.condition}.${key.keyValue}`;
|
||||
};
|
||||
|
||||
export const buildGetQuery = (obj: IDataObject, value: IDataObject) => {
|
||||
return Object.assign(obj, { [`${value.keyName}`]: `eq.${value.keyValue}` });
|
||||
};
|
||||
|
||||
export async function validateCredentials(
|
||||
this: ICredentialTestFunctions,
|
||||
decryptedCredentials: ICredentialDataDecryptedObject,
|
||||
): Promise<any> {
|
||||
const credentials = decryptedCredentials;
|
||||
|
||||
const { serviceRole } = credentials as {
|
||||
serviceRole: string;
|
||||
};
|
||||
|
||||
const options: IRequestOptions = {
|
||||
headers: {
|
||||
apikey: serviceRole,
|
||||
Authorization: 'Bearer ' + serviceRole,
|
||||
},
|
||||
method: 'GET',
|
||||
uri: `${credentials.host}/rest/v1/`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
return await this.helpers.request(options);
|
||||
}
|
||||
|
||||
export function mapPairedItemsFrom<T>(iterable: Iterable<T> | ArrayLike<T>): IPairedItemData[] {
|
||||
return Array.from(iterable, (_, i) => i).map((index) => {
|
||||
return {
|
||||
item: index,
|
||||
};
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user