2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IExecuteFunctions,
|
2021-09-29 17:10:39 -07:00
|
|
|
ICredentialsDecrypted,
|
|
|
|
ICredentialTestFunctions,
|
|
|
|
IDataObject,
|
|
|
|
ILoadOptionsFunctions,
|
2022-02-05 13:55:43 -08:00
|
|
|
INodeCredentialTestResult,
|
2021-09-29 17:10:39 -07:00
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
gristApiRequest,
|
|
|
|
parseAutoMappedInputs,
|
|
|
|
parseDefinedFields,
|
|
|
|
parseFilterProperties,
|
|
|
|
parseSortProperties,
|
|
|
|
throwOnZeroDefinedFields,
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { operationFields } from './OperationDescription';
|
2021-09-29 17:10:39 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2021-09-29 17:10:39 -07:00
|
|
|
FieldsToSend,
|
|
|
|
GristColumns,
|
|
|
|
GristCreateRowPayload,
|
|
|
|
GristCredentials,
|
|
|
|
GristGetAllOptions,
|
|
|
|
GristUpdateRowPayload,
|
|
|
|
SendingOptions,
|
|
|
|
} from './types';
|
|
|
|
|
|
|
|
export class Grist implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Grist',
|
|
|
|
name: 'grist',
|
|
|
|
icon: 'file:grist.svg',
|
|
|
|
subtitle: '={{$parameter["operation"]}}',
|
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Consume the Grist API',
|
|
|
|
defaults: {
|
|
|
|
name: 'Grist',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'gristApi',
|
|
|
|
required: true,
|
|
|
|
testedBy: 'gristApiTest',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: operationFields,
|
|
|
|
};
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
|
|
|
async getTableColumns(this: ILoadOptionsFunctions) {
|
|
|
|
const docId = this.getNodeParameter('docId', 0) as string;
|
|
|
|
const tableId = this.getNodeParameter('tableId', 0) as string;
|
|
|
|
const endpoint = `/docs/${docId}/tables/${tableId}/columns`;
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { columns } = (await gristApiRequest.call(this, 'GET', endpoint)) as GristColumns;
|
2021-09-29 17:10:39 -07:00
|
|
|
return columns.map(({ id }) => ({ name: id, value: id }));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
credentialTest: {
|
|
|
|
async gristApiTest(
|
|
|
|
this: ICredentialTestFunctions,
|
|
|
|
credential: ICredentialsDecrypted,
|
2022-02-05 13:55:43 -08:00
|
|
|
): Promise<INodeCredentialTestResult> {
|
2022-08-17 08:50:24 -07:00
|
|
|
const { apiKey, planType, customSubdomain, selfHostedUrl } =
|
|
|
|
credential.data as GristCredentials;
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
const endpoint = '/orgs';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const gristapiurl =
|
|
|
|
planType === 'free'
|
|
|
|
? `https://docs.getgrist.com/api${endpoint}`
|
|
|
|
: planType === 'paid'
|
2023-11-23 02:55:02 -08:00
|
|
|
? `https://${customSubdomain}.getgrist.com/api${endpoint}`
|
|
|
|
: `${selfHostedUrl}/api${endpoint}`;
|
2022-02-19 03:29:28 -08:00
|
|
|
|
2021-09-29 17:10:39 -07:00
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${apiKey}`,
|
|
|
|
},
|
|
|
|
method: 'GET',
|
2022-02-19 03:29:28 -08:00
|
|
|
uri: gristapiurl,
|
2021-09-29 17:10:39 -07:00
|
|
|
qs: { limit: 1 },
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.helpers.request(options);
|
|
|
|
return {
|
|
|
|
status: 'OK',
|
|
|
|
message: 'Authentication successful',
|
|
|
|
};
|
|
|
|
} catch (error) {
|
|
|
|
return {
|
|
|
|
status: 'Error',
|
|
|
|
message: error.message,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
let responseData;
|
2023-01-31 11:39:20 -08:00
|
|
|
const returnData: INodeExecutionData[] = [];
|
2021-09-29 17:10:39 -07:00
|
|
|
|
2022-12-02 03:53:59 -08:00
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
try {
|
|
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
|
|
// create
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
// https://support.getgrist.com/api/#tag/records/paths/~1docs~1{docId}~1tables~1{tableId}~1records/post
|
|
|
|
|
|
|
|
const body = { records: [] } as GristCreateRowPayload;
|
|
|
|
|
|
|
|
const dataToSend = this.getNodeParameter('dataToSend', 0) as SendingOptions;
|
|
|
|
|
|
|
|
if (dataToSend === 'autoMapInputs') {
|
|
|
|
const incomingKeys = Object.keys(items[i].json);
|
|
|
|
const rawInputsToIgnore = this.getNodeParameter('inputsToIgnore', i) as string;
|
2022-08-17 08:50:24 -07:00
|
|
|
const inputsToIgnore = rawInputsToIgnore.split(',').map((c) => c.trim());
|
2021-09-29 17:10:39 -07:00
|
|
|
const fields = parseAutoMappedInputs(incomingKeys, inputsToIgnore, items[i].json);
|
|
|
|
body.records.push({ fields });
|
|
|
|
} else if (dataToSend === 'defineInNode') {
|
|
|
|
const { properties } = this.getNodeParameter('fieldsToSend', i, []) as FieldsToSend;
|
|
|
|
throwOnZeroDefinedFields.call(this, properties);
|
|
|
|
body.records.push({ fields: parseDefinedFields(properties) });
|
|
|
|
}
|
|
|
|
|
|
|
|
const docId = this.getNodeParameter('docId', 0) as string;
|
|
|
|
const tableId = this.getNodeParameter('tableId', 0) as string;
|
|
|
|
const endpoint = `/docs/${docId}/tables/${tableId}/records`;
|
|
|
|
|
|
|
|
responseData = await gristApiRequest.call(this, 'POST', endpoint, body);
|
|
|
|
responseData = {
|
|
|
|
id: responseData.records[0].id,
|
|
|
|
...body.records[0].fields,
|
|
|
|
};
|
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
// https://support.getgrist.com/api/#tag/data/paths/~1docs~1{docId}~1tables~1{tableId}~1data~1delete/post
|
|
|
|
|
|
|
|
const docId = this.getNodeParameter('docId', 0) as string;
|
|
|
|
const tableId = this.getNodeParameter('tableId', 0) as string;
|
|
|
|
const endpoint = `/docs/${docId}/tables/${tableId}/data/delete`;
|
|
|
|
|
|
|
|
const rawRowIds = (this.getNodeParameter('rowId', i) as string).toString();
|
2022-08-17 08:50:24 -07:00
|
|
|
const body = rawRowIds
|
|
|
|
.split(',')
|
|
|
|
.map((c) => c.trim())
|
|
|
|
.map(Number);
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
await gristApiRequest.call(this, 'POST', endpoint, body);
|
|
|
|
responseData = { success: true };
|
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------
|
|
|
|
// update
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
// https://support.getgrist.com/api/#tag/records/paths/~1docs~1{docId}~1tables~1{tableId}~1records/patch
|
|
|
|
|
|
|
|
const body = { records: [] } as GristUpdateRowPayload;
|
|
|
|
|
|
|
|
const rowId = this.getNodeParameter('rowId', i) as string;
|
|
|
|
const dataToSend = this.getNodeParameter('dataToSend', 0) as SendingOptions;
|
|
|
|
|
|
|
|
if (dataToSend === 'autoMapInputs') {
|
|
|
|
const incomingKeys = Object.keys(items[i].json);
|
|
|
|
const rawInputsToIgnore = this.getNodeParameter('inputsToIgnore', i) as string;
|
2022-08-17 08:50:24 -07:00
|
|
|
const inputsToIgnore = rawInputsToIgnore.split(',').map((c) => c.trim());
|
2021-09-29 17:10:39 -07:00
|
|
|
const fields = parseAutoMappedInputs(incomingKeys, inputsToIgnore, items[i].json);
|
|
|
|
body.records.push({ id: Number(rowId), fields });
|
|
|
|
} else if (dataToSend === 'defineInNode') {
|
|
|
|
const { properties } = this.getNodeParameter('fieldsToSend', i, []) as FieldsToSend;
|
|
|
|
throwOnZeroDefinedFields.call(this, properties);
|
|
|
|
const fields = parseDefinedFields(properties);
|
|
|
|
body.records.push({ id: Number(rowId), fields });
|
|
|
|
}
|
|
|
|
|
|
|
|
const docId = this.getNodeParameter('docId', 0) as string;
|
|
|
|
const tableId = this.getNodeParameter('tableId', 0) as string;
|
|
|
|
const endpoint = `/docs/${docId}/tables/${tableId}/records`;
|
|
|
|
|
|
|
|
await gristApiRequest.call(this, 'PATCH', endpoint, body);
|
|
|
|
responseData = {
|
|
|
|
id: rowId,
|
|
|
|
...body.records[0].fields,
|
|
|
|
};
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
// https://support.getgrist.com/api/#tag/records
|
|
|
|
|
|
|
|
const docId = this.getNodeParameter('docId', 0) as string;
|
|
|
|
const tableId = this.getNodeParameter('tableId', 0) as string;
|
|
|
|
const endpoint = `/docs/${docId}/tables/${tableId}/records`;
|
|
|
|
|
|
|
|
const qs: IDataObject = {};
|
|
|
|
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
if (!returnAll) {
|
2022-11-18 06:26:22 -08:00
|
|
|
qs.limit = this.getNodeParameter('limit', i);
|
2021-09-29 17:10:39 -07:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { sort, filter } = this.getNodeParameter(
|
|
|
|
'additionalOptions',
|
|
|
|
i,
|
|
|
|
) as GristGetAllOptions;
|
2021-09-29 17:10:39 -07:00
|
|
|
|
|
|
|
if (sort?.sortProperties.length) {
|
|
|
|
qs.sort = parseSortProperties(sort.sortProperties);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filter?.filterProperties.length) {
|
|
|
|
const parsed = parseFilterProperties(filter.filterProperties);
|
|
|
|
qs.filter = JSON.stringify(parsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await gristApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
|
|
responseData = responseData.records.map((data: IDataObject) => {
|
|
|
|
return { id: data.id, ...(data.fields as object) };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
if (this.continueOnFail()) {
|
2023-01-31 11:39:20 -08:00
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
|
|
|
2021-09-29 17:10:39 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
2023-01-31 11:39:20 -08:00
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2023-01-31 11:39:20 -08:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
|
|
|
returnData.push(...executionData);
|
2021-09-29 17:10:39 -07:00
|
|
|
}
|
|
|
|
|
2023-09-05 03:59:02 -07:00
|
|
|
return [returnData];
|
2021-09-29 17:10:39 -07:00
|
|
|
}
|
|
|
|
}
|