2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-08-04 06:48:05 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2020-08-04 06:48:05 -07:00
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-08-04 06:48:05 -07:00
|
|
|
|
2023-02-23 07:16:05 -08:00
|
|
|
import get from 'lodash.get';
|
2020-08-04 06:48:05 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function travisciApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('travisCiApi');
|
2020-08-04 06:48:05 -07:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Travis-API-Version': '3',
|
2022-08-17 08:50:24 -07:00
|
|
|
Accept: 'application/json',
|
2020-08-04 06:48:05 -07:00
|
|
|
'Content-Type': 'application.json',
|
2022-08-17 08:50:24 -07:00
|
|
|
Authorization: `token ${credentials.apiToken}`,
|
2020-08-04 06:48:05 -07:00
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://api.travis-ci.com${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-08-04 06:48:05 -07:00
|
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (Object.keys(options.body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
try {
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.request(options);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-08-04 06:48:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated TravisCI endpoint
|
|
|
|
* and return all results
|
|
|
|
*/
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function travisciApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-08-04 06:48:05 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await travisciApiRequest.call(this, method, resource, body, query);
|
|
|
|
const path = get(responseData, '@pagination.next.@href');
|
|
|
|
if (path !== undefined) {
|
2022-09-23 07:48:45 -07:00
|
|
|
const parsedPath = new URLSearchParams(path);
|
|
|
|
query = Object.fromEntries(parsedPath);
|
2020-08-04 06:48:05 -07:00
|
|
|
}
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData['@pagination'].is_last !== true);
|
2020-08-04 06:48:05 -07:00
|
|
|
return returnData;
|
|
|
|
}
|