mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
322 lines
7 KiB
TypeScript
322 lines
7 KiB
TypeScript
import {
|
|
OptionsWithUri,
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialTestFunctions,
|
|
IDataObject,
|
|
INodeProperties,
|
|
NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function supabaseApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, headers: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
const credentials = await this.getCredentials('supabaseApi') as { host: string, serviceRole: string };
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
apikey: credentials.serviceRole,
|
|
Authorization: 'Bearer ' + credentials.serviceRole,
|
|
Prefer: 'return=representation',
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: uri || `${credentials.host}/rest/v1${resource}`,
|
|
json: true,
|
|
};
|
|
try {
|
|
if (Object.keys(headers).length !== 0) {
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
}
|
|
if (Object.keys(body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
//@ts-ignore
|
|
return await this.helpers?.request(options);
|
|
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
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',
|
|
filterStringDisplayName = 'Filters (String)',
|
|
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',
|
|
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] as string]}`,
|
|
},
|
|
{
|
|
displayName: 'See <a href="https://postgrest.org/en/v9.0/api.html#horizontal-filtering-rows" 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',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
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> { // tslint:disable-line:no-any
|
|
|
|
const credentials = decryptedCredentials;
|
|
|
|
const { serviceRole } = credentials as {
|
|
serviceRole: string,
|
|
};
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
apikey: serviceRole,
|
|
Authorization: 'Bearer ' + serviceRole,
|
|
},
|
|
method: 'GET',
|
|
uri: `${credentials.host}/rest/v1/`,
|
|
json: true,
|
|
};
|
|
|
|
return this.helpers.request!(options);
|
|
}
|