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

74 lines
2 KiB
TypeScript
Raw Normal View History

2019-10-16 16:49:09 -07:00
import {
IExecuteFunctions,
IHookFunctions,
2020-06-20 09:08:30 -07:00
ILoadOptionsFunctions,
2019-10-16 16:49:09 -07:00
} from 'n8n-core';
import {
IDataObject,
} from 'n8n-workflow';
2020-06-16 06:50:17 -07:00
import { OptionsWithUri } from 'request';
2019-10-16 16:49:09 -07:00
/**
* Make an API request to Gitlab
*
* @param {IHookFunctions} this
* @param {string} method
* @param {string} url
* @param {object} body
* @returns {Promise<any>}
*/
export async function gitlabApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: object, query?: object): Promise<any> { // tslint:disable-line:no-any
2020-06-16 06:50:17 -07:00
const options : OptionsWithUri = {
2019-10-16 16:49:09 -07:00
method,
2020-06-16 06:50:17 -07:00
headers: {},
2019-10-16 16:49:09 -07:00
body,
qs: query,
2020-06-16 06:50:17 -07:00
uri: '',
2020-10-22 06:46:03 -07:00
json: true,
2019-10-16 16:49:09 -07:00
};
2020-06-16 06:50:17 -07:00
if (query === undefined) {
delete options.qs;
}
const authenticationMethod = this.getNodeParameter('authentication', 0);
2019-10-16 16:49:09 -07:00
try {
2020-06-16 06:50:17 -07:00
if (authenticationMethod === 'accessToken') {
const credentials = this.getCredentials('gitlabApi');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
options.headers!['Private-Token'] = `${credentials.accessToken}`;
options.uri = `${(credentials.server as string).replace(/\/$/, '')}/api/v4${endpoint}`;
return await this.helpers.request(options);
} else {
const credentials = this.getCredentials('gitlabOAuth2Api');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
options.uri = `${(credentials.server as string).replace(/\/$/, '')}/api/v4${endpoint}`;
return await this.helpers.requestOAuth2!.call(this, 'gitlabOAuth2Api', options);
}
2019-10-16 16:49:09 -07:00
} catch (error) {
if (error.statusCode === 401) {
// Return a clear error
throw new Error('The GitLab credentials are not valid!');
2019-10-16 16:49:09 -07:00
}
if (error.response && error.response.body && error.response.body.message) {
// Try to return the error prettier
throw new Error(`Gitlab error response [${error.statusCode}]: ${error.response.body.message}`);
}
// If that data does not exist for some reason return the actual error
throw error;
}
}