2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
|
|
|
import type {
|
2020-01-05 15:47:55 -08:00
|
|
|
IExecuteFunctions,
|
2020-01-06 10:33:22 -08:00
|
|
|
IExecuteSingleFunctions,
|
2020-01-05 15:47:55 -08:00
|
|
|
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-01-05 15:47:55 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function bitbucketApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -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('bitbucketApi');
|
2020-01-05 15:47:55 -08:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
method,
|
2020-01-06 10:33:22 -08:00
|
|
|
auth: {
|
|
|
|
user: credentials.username as string,
|
|
|
|
password: credentials.appPassword as string,
|
|
|
|
},
|
2020-01-05 15:47:55 -08:00
|
|
|
qs,
|
|
|
|
body,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://api.bitbucket.org/2.0${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-01-05 15:47:55 -08: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-01-05 15:47:55 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated flow endpoint
|
|
|
|
* and return all results
|
|
|
|
*/
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function bitbucketApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-01-05 15:47:55 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
let uri: string | undefined;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await bitbucketApiRequest.call(this, method, resource, body, query, uri);
|
2020-01-06 10:33:22 -08:00
|
|
|
uri = responseData.next;
|
2020-01-05 15:47:55 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData.next !== undefined);
|
2020-01-05 15:47:55 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|