Minor formatting improvements

This commit is contained in:
Jan Oberhauser 2021-04-16 00:27:49 +02:00
parent dfdb797b31
commit d87d497371
3 changed files with 9 additions and 9 deletions

View file

@ -19,7 +19,7 @@ import { OptionsWithUri } from 'request';
* @returns {Promise<any>} * @returns {Promise<any>}
*/ */
export async function gitlabApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: object, query?: object, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any export async function gitlabApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: object, query?: object, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const options : OptionsWithUri = { const options: OptionsWithUri = {
method, method,
headers: {}, headers: {},
body, body,
@ -87,9 +87,9 @@ export async function gitlabApiRequestAllItems(this: IHookFunctions | IExecuteFu
do { do {
responseData = await gitlabApiRequest.call(this, method, endpoint, body, query, { resolveWithFullResponse: true }); responseData = await gitlabApiRequest.call(this, method, endpoint, body, query, { resolveWithFullResponse: true });
query.page++; query.page++;
returnData.push.apply(returnData, responseData.body); returnData.push.apply(returnData, responseData.body);
} while ( } while (
responseData.headers.link && responseData.headers.link.includes('next') responseData.headers.link && responseData.headers.link.includes('next')
); );
return returnData; return returnData;
} }

View file

@ -1292,7 +1292,7 @@ export class Gitlab implements INodeType {
const id = this.getNodeParameter('projectId', i) as string; const id = this.getNodeParameter('projectId', i) as string;
qs = this.getNodeParameter('additionalFields', i, {}) as IDataObject; qs = this.getNodeParameter('additionalFields', i, {}) as IDataObject;
returnAll = this.getNodeParameter('returnAll', 0) as boolean; returnAll = this.getNodeParameter('returnAll', 0) as boolean;
if (returnAll === false) { if (returnAll === false) {
@ -1316,7 +1316,7 @@ export class Gitlab implements INodeType {
if(body.milestones){ if(body.milestones){
body.milestones = (body.milestones as string).split(','); body.milestones = (body.milestones as string).split(',');
} }
endpoint = `/projects/${id}/releases/${tagName}`; endpoint = `/projects/${id}/releases/${tagName}`;
} }
} else if (resource === 'repository') { } else if (resource === 'repository') {

View file

@ -170,7 +170,7 @@ export class GitlabTrigger implements INodeType {
const owner = this.getNodeParameter('owner') as string; const owner = this.getNodeParameter('owner') as string;
const repository = this.getNodeParameter('repository') as string; const repository = this.getNodeParameter('repository') as string;
const path = (`${owner}/${repository}`).replace(/\//g,'%2F'); const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`; const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
@ -207,7 +207,7 @@ export class GitlabTrigger implements INodeType {
eventsArray = ['note', 'issues', 'job', 'merge_requests', 'pipeline', 'push', 'tag_push', 'wiki_page']; eventsArray = ['note', 'issues', 'job', 'merge_requests', 'pipeline', 'push', 'tag_push', 'wiki_page'];
} }
const events: { [key: string]: boolean } = { }; const events: { [key: string]: boolean } = {};
for (const e of eventsArray) { for (const e of eventsArray) {
events[`${e}_events`] = true; events[`${e}_events`] = true;
} }
@ -218,7 +218,7 @@ export class GitlabTrigger implements INodeType {
events['push_events'] = false; events['push_events'] = false;
} }
const path = (`${owner}/${repository}`).replace(/\//g,'%2F'); const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
const endpoint = `/projects/${path}/hooks`; const endpoint = `/projects/${path}/hooks`;
@ -253,7 +253,7 @@ export class GitlabTrigger implements INodeType {
const owner = this.getNodeParameter('owner') as string; const owner = this.getNodeParameter('owner') as string;
const repository = this.getNodeParameter('repository') as string; const repository = this.getNodeParameter('repository') as string;
const path = (`${owner}/${repository}`).replace(/\//g,'%2F'); const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`; const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
const body = {}; const body = {};