n8n/packages/nodes-base/nodes/Slack/V1/GenericFunctions.ts

126 lines
3.3 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-03-05 15:25:18 -08:00
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
import type { IDataObject, IOAuth2Options, JsonObject } from 'n8n-workflow';
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
import _ from 'lodash';
2020-03-05 15:25:18 -08:00
export async function slackApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: object = {},
query: object = {},
headers: IDataObject | undefined = undefined,
option: IDataObject = {},
): Promise<any> {
2020-03-05 15:25:18 -08:00
const authenticationMethod = this.getNodeParameter('authentication', 0, 'accessToken') as string;
2020-03-08 15:22:33 -07:00
let options: OptionsWithUri = {
2020-03-05 15:25:18 -08:00
method,
headers: headers || {
2020-10-22 06:46:03 -07:00
'Content-Type': 'application/json; charset=utf-8',
2020-03-05 15:25:18 -08:00
},
body,
qs: query,
uri: `https://slack.com/api${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-03-05 15:25:18 -08:00
};
2020-03-08 15:22:33 -07:00
options = Object.assign({}, options, option);
2020-03-05 15:25:18 -08:00
if (Object.keys(body).length === 0) {
delete options.body;
}
if (Object.keys(query).length === 0) {
delete options.qs;
}
2020-10-01 23:50:37 -07:00
const oAuth2Options: IOAuth2Options = {
tokenType: 'Bearer',
property: 'authed_user.access_token',
};
try {
const credentialType = authenticationMethod === 'accessToken' ? 'slackApi' : 'slackOAuth2Api';
const response = await this.helpers.requestWithAuthentication.call(
this,
credentialType,
options,
{
oauth2: oAuth2Options,
},
);
2020-10-01 23:50:37 -07:00
if (response.ok === false) {
if (response.error === 'paid_teams_only') {
throw new NodeOperationError(
this.getNode(),
`Your current Slack plan does not include the resource '${this.getNodeParameter(
'resource',
0,
)}'`,
{
description:
'Hint: Upgrate to the Slack plan that includes the funcionality you want to use.',
},
);
}
throw new NodeOperationError(
this.getNode(),
'Slack error response: ' + JSON.stringify(response),
);
2020-10-01 23:50:37 -07:00
}
return response;
2020-03-05 15:25:18 -08:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-03-05 15:25:18 -08:00
}
}
export async function slackApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
body: any = {},
query: IDataObject = {},
): Promise<any> {
2020-03-05 15:25:18 -08:00
const returnData: IDataObject[] = [];
let responseData;
2020-03-08 15:22:33 -07:00
query.page = 1;
//if the endpoint uses legacy pagination use count
//https://api.slack.com/docs/pagination#classic
if (endpoint.includes('files.list')) {
query.count = 100;
} else {
query.limit = 100;
}
2020-03-05 15:25:18 -08:00
do {
responseData = await slackApiRequest.call(this, method, endpoint, body, query);
query.cursor = _.get(responseData, 'response_metadata.next_cursor');
2020-03-08 15:22:33 -07:00
query.page++;
2020-03-05 15:25:18 -08:00
returnData.push.apply(returnData, responseData[propertyName]);
} while (
(responseData.response_metadata?.next_cursor !== undefined &&
responseData.response_metadata.next_cursor !== '' &&
responseData.response_metadata.next_cursor !== null) ||
(responseData.paging?.pages !== undefined &&
responseData.paging.page !== undefined &&
responseData.paging.page < responseData.paging.pages)
2020-03-05 15:25:18 -08:00
);
return returnData;
}
export function validateJSON(json: string | undefined): any {
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = undefined;
}
return result;
}