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

77 lines
2.3 KiB
TypeScript
Raw Normal View History

2019-11-26 12:38:38 -08:00
import { OptionsWithUri } from 'request';
import {
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
2019-11-27 14:42:28 -08:00
IExecuteSingleFunctions,
BINARY_ENCODING
2019-11-26 12:38:38 -08:00
} from 'n8n-core';
import {
IDataObject,
} from 'n8n-workflow';
export async function jiraSoftwareCloudApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, endpoint: string, method: string, body: any = {}, query?: IDataObject, uri?: string): Promise<any> { // tslint:disable-line:no-any
const credentials = this.getCredentials('jiraSoftwareCloudApi');
2019-11-26 12:38:38 -08:00
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
2020-02-01 15:20:23 -08:00
const data = Buffer.from(`${credentials!.email}:${(credentials.jiraVersion === 'server') ? credentials.password : credentials.apiToken }`).toString(BINARY_ENCODING);
2020-01-31 07:21:14 -08:00
const headerWithAuthentication = Object.assign({},
{ Authorization: `Basic ${data}`, Accept: 'application/json', 'Content-Type': 'application/json' });
const options: OptionsWithUri = {
headers: headerWithAuthentication,
method,
qs: query,
uri: uri || `${credentials.domain}/rest/api/2${endpoint}`,
body,
json: true
};
2019-11-26 12:38:38 -08:00
2020-01-31 07:21:14 -08:00
try {
return await this.helpers.request!(options);
} catch (error) {
const errorMessage =
error.response.body.message || error.response.body.Message;
if (errorMessage !== undefined) {
throw errorMessage;
}
throw error.response.body;
}
}
2019-11-26 12:38:38 -08:00
export async function jiraSoftwareCloudApiRequestAllItems(this: IHookFunctions | IExecuteFunctions, propertyName: string, endpoint: string, method: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
2019-11-26 12:38:38 -08:00
const returnData: IDataObject[] = [];
let responseData;
2019-11-29 14:30:00 -08:00
query.maxResults = 100;
2019-11-26 12:38:38 -08:00
let uri: string | undefined;
do {
responseData = await jiraSoftwareCloudApiRequest.call(this, endpoint, method, body, query, uri);
2019-11-29 14:30:00 -08:00
uri = responseData.nextPage;
2019-11-26 12:38:38 -08:00
returnData.push.apply(returnData, responseData[propertyName]);
} while (
2019-11-29 14:30:00 -08:00
responseData.isLast !== false &&
responseData.nextPage !== undefined &&
responseData.nextPage !== null
2019-11-26 12:38:38 -08:00
);
return returnData;
}
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = '';
}
return result;
}