* ⚡ enabled array-type * ⚡ await-thenable on * ⚡ ban-types on * ⚡ default-param-last on * ⚡ dot-notation on * ⚡ member-delimiter-style on * ⚡ no-duplicate-imports on * ⚡ no-empty-interface on * ⚡ no-floating-promises on * ⚡ no-for-in-array on * ⚡ no-invalid-void-type on * ⚡ no-loop-func on * ⚡ no-shadow on * ⚡ ban-ts-comment re enabled * ⚡ @typescript-eslint/lines-between-class-members on * address my own comment * @typescript-eslint/return-await on * @typescript-eslint/promise-function-async on * @typescript-eslint/no-unnecessary-boolean-literal-compare on * @typescript-eslint/no-unnecessary-type-assertion on * prefer-const on * @typescript-eslint/prefer-optional-chain on Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest, apiRequestAllItems } from '../../../transport';
|
|
|
|
export async function members(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const channelId = this.getNodeParameter('channelId', index) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', index);
|
|
const resolveData = this.getNodeParameter('resolveData', index);
|
|
const limit = this.getNodeParameter('limit', index, 0);
|
|
|
|
const body = {} as IDataObject;
|
|
const qs = {} as IDataObject;
|
|
const requestMethod = 'GET';
|
|
const endpoint = `channels/${channelId}/members`;
|
|
|
|
if (!returnAll) {
|
|
qs.per_page = this.getNodeParameter('limit', index);
|
|
}
|
|
|
|
let responseData;
|
|
|
|
if (returnAll) {
|
|
responseData = await apiRequestAllItems.call(this, requestMethod, endpoint, body, qs);
|
|
} else {
|
|
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
if (limit) {
|
|
responseData = responseData.slice(0, limit);
|
|
}
|
|
if (resolveData) {
|
|
const userIds: string[] = [];
|
|
for (const data of responseData) {
|
|
userIds.push(data.user_id);
|
|
}
|
|
if (userIds.length > 0) {
|
|
responseData = await apiRequest.call(this, 'POST', 'users/ids', userIds, qs);
|
|
}
|
|
}
|
|
}
|
|
|
|
return this.helpers.returnJsonArray(responseData);
|
|
}
|