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 {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError, NodeOperationError,
|
2019-10-16 16:49:09 -07:00
|
|
|
} 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>}
|
|
|
|
*/
|
2021-04-15 15:27:12 -07:00
|
|
|
export async function gitlabApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: object, query?: object, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
2021-04-15 15:27:49 -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
|
|
|
};
|
|
|
|
|
2021-04-15 15:27:12 -07:00
|
|
|
if (Object.keys(option).length !== 0) {
|
|
|
|
Object.assign(options, option);
|
|
|
|
}
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
2020-06-16 06:50:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
2020-06-16 06:50:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
}
|
2021-04-15 15:27:12 -07:00
|
|
|
|
|
|
|
export async function gitlabApiRequestAllItems(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.per_page = 100;
|
|
|
|
query.page = 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await gitlabApiRequest.call(this, method, endpoint, body, query, { resolveWithFullResponse: true });
|
|
|
|
query.page++;
|
2021-04-15 15:27:49 -07:00
|
|
|
returnData.push.apply(returnData, responseData.body);
|
2021-04-15 15:27:12 -07:00
|
|
|
} while (
|
|
|
|
responseData.headers.link && responseData.headers.link.includes('next')
|
|
|
|
);
|
|
|
|
return returnData;
|
2021-04-15 15:27:49 -07:00
|
|
|
}
|