n8n/packages/nodes-base/nodes/Mattermost/GenericFunctions.ts

92 lines
2.1 KiB
TypeScript
Raw Normal View History

2019-10-20 13:57:06 -07:00
import {
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
2020-04-22 10:08:53 -07:00
import {
OptionsWithUri,
} from 'request';
import {
IDataObject,
} from 'n8n-workflow';
2019-10-20 13:57:06 -07:00
2020-04-11 05:00:30 -07:00
export interface IAttachment {
fields: {
item?: object[];
};
2020-04-11 05:00:30 -07:00
actions: {
item?: object[];
};
}
2019-10-20 13:57:06 -07:00
/**
* Make an API request to Telegram
*
* @param {IHookFunctions} this
* @param {string} method
* @param {string} url
* @param {object} body
* @returns {Promise<any>}
*/
export async function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: object, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
const credentials = this.getCredentials('mattermostApi');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
query = query || {};
const options: OptionsWithUri = {
method,
body,
qs: query,
uri: `${credentials.baseUrl}/api/v4/${endpoint}`,
headers: {
Authorization: `Bearer ${credentials.accessToken}`,
'content-type': 'application/json; charset=utf-8'
},
json: true
};
try {
return await this.helpers.request!(options);
} catch (error) {
if (error.statusCode === 401) {
// Return a clear error
throw new Error('The Mattermost credentials are not valid!');
}
if (error.response && error.response.body && error.response.body.message) {
// Try to return the error prettier
const errorBody = error.response.body;
throw new Error(`Mattermost error response: ${errorBody.message}`);
}
// Expected error data did not get returned so throw the actual error
throw error;
}
}
2020-04-22 10:08:53 -07:00
export async function apiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const returnData: IDataObject[] = [];
let responseData;
query.page = 0;
query.per_page = 100;
do {
responseData = await apiRequest.call(this, method, endpoint, body, query);
query.page++;
returnData.push.apply(returnData, responseData);
} while (
responseData.length !== 0
);
return returnData;
}