feat(Microsoft SharePoint Node): New node (#13727)

This commit is contained in:
feelgood-interface
2025-05-16 09:55:10 +02:00
committed by GitHub
parent 64b3fa3d17
commit 954b66218f
57 changed files with 6284 additions and 12 deletions

View File

@@ -0,0 +1,95 @@
import type {
FieldType,
ILoadOptionsFunctions,
ResourceMapperField,
ResourceMapperFields,
} from 'n8n-workflow';
import type { IListColumnType } from '../helpers/interfaces';
import { microsoftSharePointApiRequest } from '../transport';
const unsupportedFields = ['geoLocation', 'location', 'term', 'url'];
const fieldTypeMapping: Partial<Record<FieldType, string[]>> = {
string: ['text', 'user', 'lookup'],
// unknownFutureValue: rating
number: ['number', 'currency', 'unknownFutureValue'],
boolean: ['boolean'],
dateTime: ['dateTime'],
object: ['thumbnail'],
options: ['choice'],
};
function mapType(column: IListColumnType): FieldType | undefined {
if (unsupportedFields.includes(column.type)) {
return undefined;
}
let mappedType: FieldType = 'string';
for (const t of Object.keys(fieldTypeMapping)) {
const postgresTypes = fieldTypeMapping[t as FieldType];
if (postgresTypes?.includes(column.type)) {
mappedType = t as FieldType;
}
}
return mappedType;
}
export async function getMappingColumns(
this: ILoadOptionsFunctions,
): Promise<ResourceMapperFields> {
const site = this.getNodeParameter('site', undefined, { extractValue: true }) as string;
const list = this.getNodeParameter('list', undefined, { extractValue: true }) as string;
const operation = this.getNodeParameter('operation') as string;
const response = await microsoftSharePointApiRequest.call(
this,
'GET',
`/sites/${site}/lists/${list}/contentTypes`,
{},
{ expand: 'columns' },
);
const columns: IListColumnType[] = response.value[0].columns;
const fields: ResourceMapperField[] = [];
for (const column of columns.filter((x) => !x.hidden && !x.readOnly)) {
const fieldType = mapType(column);
const field = {
id: column.name,
canBeUsedToMatch: column.enforceUniqueValues && column.required,
defaultMatch: false,
display: true,
displayName: column.displayName,
readOnly: column.readOnly || !fieldType,
required: column.required,
type: fieldType,
} as ResourceMapperField;
if (field.type === 'options') {
field.options = [];
if (Array.isArray(column.choice?.choices)) {
for (const choice of column.choice.choices) {
field.options.push({
name: choice,
value: choice,
});
}
}
}
fields.push(field);
}
if (operation === 'update') {
fields.push({
id: 'id',
canBeUsedToMatch: true,
defaultMatch: false,
display: true,
displayName: 'ID',
readOnly: true,
required: true,
type: 'string',
});
}
return { fields };
}