import { OptionsWithUri } from 'request'; import { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions, IExecuteSingleFunctions, } from 'n8n-core'; import { IDataObject } from 'n8n-workflow'; export async function bitbucketApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise { // tslint:disable-line:no-any const credentials = this.getCredentials('bitbucketApi'); if (credentials === undefined) { throw new Error('No credentials got returned!'); } const userpass = `${credentials.username}:${credentials.appPassword}` console.log() let options: OptionsWithUri = { method, qs, body, uri: uri ||`https://${userpass}@api.bitbucket.org/2.0${resource}`, json: true }; options = Object.assign({}, options, option); if (Object.keys(options.body).length === 0) { delete options.body; } try { return await this.helpers.request!(options); } catch (error) { console.log(error) let errorMessage = error.message; if (error.response.body) { errorMessage = error.response.body.message || error.response.body.Message || error.message; } throw new Error(errorMessage); } } /** * Make an API request to paginated flow endpoint * and return all results */ export async function bitbucketApiRequestAllItems(this: IHookFunctions | IExecuteFunctions| ILoadOptionsFunctions, propertyName: string, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise { // tslint:disable-line:no-any const returnData: IDataObject[] = []; let responseData; let uri: string | undefined; do { responseData = await bitbucketApiRequest.call(this, method, resource, body, query, uri); uri = responseData.next returnData.push.apply(returnData, responseData[propertyName]); } while ( responseData.next !== undefined ); return returnData; }