Files
Paul Fitzpatrick d6d7d93df3 feat(Grist Node): Use a single Grist URL field in the credential (#34190)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-20 08:42:47 +00:00

127 lines
3.7 KiB
TypeScript

import type {
IDataObject,
IExecuteFunctions,
IHttpRequestMethods,
ILoadOptionsFunctions,
IRequestOptions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
import type {
GristCredentials,
GristDefinedFields,
GristFilterProperties,
GristSortProperties,
} from './types';
// A trailing slash or a trailing `/api` are both easy to paste in from a browser or the
// API docs. Request paths append `/api` themselves, so the base URL needs neither.
function normalizeBaseUrl(url: string): string {
return url.replace(/\/$/, '').replace(/\/api$/, '');
}
// Fallback for API-key credentials created before the single `url` field: self-hosted
// instances stored a full URL, teams stored a subdomain. Defaults to the SaaS API host,
// which serves every hosted account.
function gristLegacyBaseUrl(credentials: GristCredentials): string {
if (credentials.selfHostedUrl) {
return normalizeBaseUrl(credentials.selfHostedUrl);
}
if (credentials.customSubdomain) {
return `https://${credentials.customSubdomain}.getgrist.com`;
}
return 'https://api.getgrist.com';
}
// Resolve the Grist server base URL. Credentials store a single `url`; older ones fall
// back to their legacy fields.
export function gristBaseUrl(credentials: GristCredentials): string {
if (credentials.url) {
return normalizeBaseUrl(credentials.url);
}
return gristLegacyBaseUrl(credentials);
}
export async function gristApiRequest(
this: IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
endpoint: string,
body: IDataObject | number[] = {},
qs: IDataObject = {},
) {
const credentials = await this.getCredentials<GristCredentials>('gristApi');
const options: IRequestOptions = {
headers: {
Authorization: `Bearer ${credentials.apiKey}`,
},
method,
uri: `${gristBaseUrl(credentials)}/api${endpoint}`,
qs,
body,
json: true,
};
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(qs).length) {
delete options.qs;
}
try {
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}
export function parseSortProperties(sortProperties: GristSortProperties) {
return sortProperties.reduce((acc, cur, curIdx) => {
if (cur.direction === 'desc') acc += '-';
acc += cur.field;
if (curIdx !== sortProperties.length - 1) acc += ',';
return acc;
}, '');
}
export function isSafeInteger(val: number) {
//used MIN_SAFE_INTEGER and MAX_SAFE_INTEGER instead of MIN_VALUE and MAX_VALUE to avoid edge cases
return !isNaN(val) && val > Number.MIN_SAFE_INTEGER && val < Number.MAX_SAFE_INTEGER;
}
export function parseFilterProperties(filterProperties: GristFilterProperties) {
return filterProperties.reduce<{ [key: string]: Array<string | number> }>((acc, cur) => {
acc[cur.field] = acc[cur.field] ?? [];
const values = isSafeInteger(Number(cur.values)) ? Number(cur.values) : cur.values;
acc[cur.field].push(values);
return acc;
}, {});
}
export function parseDefinedFields(fieldsToSendProperties: GristDefinedFields) {
return fieldsToSendProperties.reduce<{ [key: string]: string }>((acc, cur) => {
acc[cur.fieldId] = cur.fieldValue;
return acc;
}, {});
}
export function parseAutoMappedInputs(incomingKeys: string[], inputsToIgnore: string[], item: any) {
return incomingKeys.reduce<{ [key: string]: any }>((acc, curKey) => {
if (inputsToIgnore.includes(curKey)) return acc;
acc = { ...acc, [curKey]: item[curKey] };
return acc;
}, {});
}
export function throwOnZeroDefinedFields(this: IExecuteFunctions, fields: GristDefinedFields) {
if (!fields?.length) {
throw new NodeOperationError(
this.getNode(),
"No defined data found. Please specify the data to send in 'Fields to Send'.",
);
}
}