* ⚡ introduce versioned nodes * Export versioned nodes for separate process run * Add bse node for versioned nodes * fix node name for versioned nodes * extend node from nodeVersionedType * improve nodes base and flow to FE * revert lib es2019 to es2017 * include version in key to prevent duplicate key * handle type versions on FE * clean up * cleanup nodes base * add type versions in getNodeParameterOptions * cleanup * code review * code review + add default version to node type description * remove node default types from store * 💄 cleanups * Draft for migrated Mattermost node * First version of Mattermost node versioned according to node standards * Correcting deactivate operations name to match currently used one * ✨ Create utility types * ⚡ Simplify Mattermost types * ⚡ Rename exports for consistency * ⚡ Type channel properties * ⚡ Type message properties * ⚡ Type reaction properties * ⚡ Type user properties * ⚡ Add type import to router * 🐛 Add missing key * 🔨 Adjust typo in operation name * 🔨 Inline exports for channel properties * 🔨 Inline exports for message properties * 🔨 Inline exports for reaction properties * 🔨 Inline exports for user properties * 🔨 Inline exports for load options * 👕 Fix lint issue * 🔨 Inline export for description * 🔨 Rename descriptions for clarity * 🔨 Refactor imports/exports for methods * 🔨 Refactor latest version retrieval * 🔥 Remove unneeded else clause When the string literal union is exhausted, the resource key becomes never, so TS disallows wrong key usage. * ✨ Add overloads to getNodeParameter * ⚡ Improve overload * 🔥 Remove superfluous INodeVersions type * 🔨 Relocate pre-existing interface * 🔥 Remove JSDoc arg descriptions * ⚡ Minor reformatting in transport file * ⚡ Fix API call function type * Created first draft for Axios requests * Working version of mattermost node with Axios * Work in progress for replacing request library * Improvements to request translations * Fixed sending files via multipart / form-data * Fixing translation from request to axios and loading node parameter options * Improved typing for new http helper * Added ignore any for specific lines for linting * Fixed follow redirects changes on http request node and manual execution of previously existing workflow with older node versions * Adding default headers according to body on httpRequest helper * Spec error handling and fixed workflows with older node versions * Showcase how to export errors in a standard format * Merging master * Refactored mattermost node to keep files in a uniform structure. Also fix bugs with merges * Reverting changes to http request node * Changed nullish comparison and removed repeated code from nodes * Renamed queryString back to qs and simplified node output * Simplified some comparisons * Changed header names to be uc first * Added default user agent to requests and patch http method support * Fixed indentation, remove unnecessary file and console log * Fixed mattermost node name * Fixed lint issues * Further fix linting issues * Further fix lint issues * Fixed http request helper's return type Co-authored-by: ahsan-virani <ahsan.virani@gmail.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
99 lines
2.7 KiB
TypeScript
99 lines
2.7 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
apiRequest,
|
|
} from '../../../transport';
|
|
|
|
import {
|
|
IAttachment,
|
|
} from '../../Interfaces';
|
|
|
|
export async function post(this: IExecuteFunctions, index: number): Promise<INodeExecutionData[]> {
|
|
const body = {} as IDataObject;
|
|
const qs = {} as IDataObject;
|
|
const requestMethod = 'POST';
|
|
const endpoint = `posts`;
|
|
|
|
body.channel_id = this.getNodeParameter('channelId', index) as string;
|
|
body.message = this.getNodeParameter('message', index) as string;
|
|
|
|
const attachments = this.getNodeParameter('attachments', index, []) as unknown as IAttachment[];
|
|
// The node does save the fields data differently than the API
|
|
// expects so fix the data befre we send the request
|
|
for (const attachment of attachments) {
|
|
if (attachment.fields !== undefined) {
|
|
if (attachment.fields.item !== undefined) {
|
|
// Move the field-content up
|
|
// @ts-ignore
|
|
attachment.fields = attachment.fields.item;
|
|
} else {
|
|
// If it does not have any items set remove it
|
|
// @ts-ignore
|
|
delete attachment.fields;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const attachment of attachments) {
|
|
if (attachment.actions !== undefined) {
|
|
if (attachment.actions.item !== undefined) {
|
|
// Move the field-content up
|
|
// @ts-ignore
|
|
attachment.actions = attachment.actions.item;
|
|
} else {
|
|
// If it does not have any items set remove it
|
|
// @ts-ignore
|
|
delete attachment.actions;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const attachment of attachments) {
|
|
if (Array.isArray(attachment.actions)) {
|
|
for (const attaction of attachment.actions) {
|
|
|
|
if (attaction.type === 'button') {
|
|
delete attaction.type;
|
|
}
|
|
if (attaction.data_source === 'custom') {
|
|
delete attaction.data_source;
|
|
}
|
|
if (attaction.options) {
|
|
attaction.options = attaction.options.option;
|
|
}
|
|
|
|
if (attaction.integration.item !== undefined) {
|
|
attaction.integration = attaction.integration.item;
|
|
if (Array.isArray(attaction.integration.context.property)) {
|
|
const tmpcontex = {};
|
|
for (const attactionintegprop of attaction.integration.context.property) {
|
|
Object.assign(tmpcontex, { [attactionintegprop.name]: attactionintegprop.value });
|
|
}
|
|
delete attaction.integration.context;
|
|
attaction.integration.context = tmpcontex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
body.props = {
|
|
attachments,
|
|
};
|
|
|
|
// Add all the other options to the request
|
|
const otherOptions = this.getNodeParameter('otherOptions', index) as IDataObject;
|
|
Object.assign(body, otherOptions);
|
|
|
|
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
|
|
return this.helpers.returnJsonArray(responseData);
|
|
}
|