2020-03-05 15:25:18 -08:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
2020-05-11 16:56:27 -07:00
|
|
|
} from 'request';
|
2020-03-05 15:25:18 -08:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
2020-05-11 16:56:27 -07:00
|
|
|
|
2020-03-05 15:25:18 -08:00
|
|
|
import {
|
2020-07-25 10:58:38 -07:00
|
|
|
IDataObject,
|
|
|
|
IOAuth2Options,
|
2022-04-19 03:36:01 -07:00
|
|
|
JsonObject,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeApiError,
|
|
|
|
NodeOperationError,
|
2020-05-11 16:56:27 -07:00
|
|
|
} from 'n8n-workflow';
|
2020-07-25 10:58:38 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import _ from 'lodash';
|
2020-03-05 15:25:18 -08:00
|
|
|
|
2020-03-08 15:22:33 -07:00
|
|
|
export async function slackApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: object = {}, query: object = {}, headers: {} | undefined = undefined, option: {} = {}): Promise<any> { // tslint:disable-line:no-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,
|
2020-03-08 15:22:33 -07:00
|
|
|
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
|
|
|
|
2022-04-19 03:36:01 -07:00
|
|
|
const oAuth2Options: IOAuth2Options = {
|
|
|
|
tokenType: 'Bearer',
|
|
|
|
property: 'authed_user.access_token',
|
|
|
|
};
|
2020-07-25 10:58:38 -07:00
|
|
|
|
2022-04-19 03:36:01 -07:00
|
|
|
try {
|
|
|
|
let response: any; // tslint:disable-line:no-any
|
|
|
|
const credentialType = authenticationMethod === 'accessToken' ? 'slackApi' : 'slackOAuth2Api';
|
|
|
|
response = await this.helpers.requestWithAuthentication.call(this, credentialType, options, { oauth2: oAuth2Options });
|
2020-10-01 23:50:37 -07:00
|
|
|
|
|
|
|
if (response.ok === false) {
|
2021-11-03 17:55:04 -07:00
|
|
|
if (response.error === 'paid_teams_only') {
|
|
|
|
throw new NodeOperationError(this.getNode(), `Your current Slack plan does not include the resource '${this.getNodeParameter('resource', 0) as string}'`, {
|
|
|
|
description: `Hint: Upgrate to the Slack plan that includes the funcionality you want to use.`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:33:36 -07:00
|
|
|
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) {
|
2022-04-19 03:36:01 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-03-05 15:25:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-13 01:47:52 -08:00
|
|
|
export async function slackApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-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;
|
2021-10-18 21:04:58 -07:00
|
|
|
//if the endpoint uses legacy pagination use count
|
|
|
|
//https://api.slack.com/docs/pagination#classic
|
|
|
|
if (endpoint.includes('files.list')) {
|
|
|
|
query.count = 100;
|
|
|
|
} else {
|
2021-10-19 20:52:53 -07:00
|
|
|
query.limit = 100;
|
2021-10-18 21:04:58 -07:00
|
|
|
}
|
2020-03-05 15:25:18 -08:00
|
|
|
do {
|
|
|
|
responseData = await slackApiRequest.call(this, method, endpoint, body, query);
|
2021-10-18 21:04:58 -07:00
|
|
|
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 (
|
2020-03-08 15:22:33 -07:00
|
|
|
(responseData.response_metadata !== undefined &&
|
2021-10-18 21:04:58 -07:00
|
|
|
responseData.response_metadata.next_cursor !== undefined &&
|
2020-12-13 01:47:52 -08:00
|
|
|
responseData.response_metadata.next_cursor !== '' &&
|
|
|
|
responseData.response_metadata.next_cursor !== null) ||
|
2020-03-08 15:22:33 -07:00
|
|
|
(responseData.paging !== undefined &&
|
2020-12-13 01:47:52 -08:00
|
|
|
responseData.paging.pages !== undefined &&
|
|
|
|
responseData.paging.page !== undefined &&
|
|
|
|
responseData.paging.page < responseData.paging.pages
|
2020-03-08 15:22:33 -07:00
|
|
|
)
|
2020-03-05 15:25:18 -08:00
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
2020-05-05 10:22:02 -07:00
|
|
|
|
|
|
|
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
|
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|