2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IHookFunctions,
|
|
|
|
IWebhookFunctions,
|
2019-10-16 16:49:09 -07:00
|
|
|
IDataObject,
|
|
|
|
INodeType,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeTypeDescription,
|
2019-10-16 16:49:09 -07:00
|
|
|
IWebhookResponseData,
|
2023-02-27 19:39:43 -08:00
|
|
|
JsonObject,
|
2019-10-16 16:49:09 -07:00
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2019-10-16 16:49:09 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { gitlabApiRequest } from './GenericFunctions';
|
2019-10-16 16:49:09 -07:00
|
|
|
|
2021-12-24 02:37:24 -08:00
|
|
|
const GITLAB_EVENTS = [
|
|
|
|
{
|
|
|
|
name: 'Comment',
|
|
|
|
value: 'note',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Triggered when a new comment is made on commits, merge requests, issues, and code snippets',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Confidential Issues',
|
|
|
|
value: 'confidential_issues',
|
2022-08-17 08:50:24 -07:00
|
|
|
description: "Triggered on confidential issues' events",
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Confidential Comments',
|
|
|
|
value: 'confidential_note',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered when a confidential comment is made',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Deployments',
|
|
|
|
value: 'deployment',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered when a deployment starts/succeeds/fails/is cancelled',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Issue',
|
|
|
|
value: 'issues',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Triggered when a new issue is created or an existing issue was updated/closed/reopened',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Job',
|
|
|
|
value: 'job',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered on status change of a job',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Merge Request',
|
|
|
|
value: 'merge_requests',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Pipeline',
|
|
|
|
value: 'pipeline',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered on status change of Pipeline',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Push',
|
|
|
|
value: 'push',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered when you push to the repository except when pushing tags',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Release',
|
|
|
|
value: 'releases',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Release events are triggered when a release is created or updated',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Tag',
|
|
|
|
value: 'tag_push',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered when you create (or delete) tags to the repository',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Wiki Page',
|
|
|
|
value: 'wiki_page',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Triggered when a wiki page is created, updated or deleted',
|
2021-12-24 02:37:24 -08:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2019-10-16 16:49:09 -07:00
|
|
|
export class GitlabTrigger implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
2020-07-24 03:56:41 -07:00
|
|
|
displayName: 'GitLab Trigger',
|
2019-10-16 16:49:09 -07:00
|
|
|
name: 'gitlabTrigger',
|
2021-03-25 09:10:02 -07:00
|
|
|
icon: 'file:gitlab.svg',
|
2019-10-16 16:49:09 -07:00
|
|
|
group: ['trigger'],
|
|
|
|
version: 1,
|
2022-08-17 08:50:24 -07:00
|
|
|
subtitle:
|
|
|
|
'={{$parameter["owner"] + "/" + $parameter["repository"] + ": " + $parameter["events"].join(", ")}}',
|
2021-07-03 05:40:16 -07:00
|
|
|
description: 'Starts the workflow when GitLab events occur',
|
2019-10-16 16:49:09 -07:00
|
|
|
defaults: {
|
feat(editor): Node creator actions (#4696)
* WIP: Node Actions List UI
* WIP: Recommended Actions and preseting of fields
* WIP: Resource category
* :art: Moved actions categorisation to the server
* :label: Add missing INodeAction type
* :sparkles: Improve SSR categorisation, fix adding of mixed actions
* :recycle: Refactor CategorizedItems to composition api, style fixes
* WIP: Adding multiple nodes
* :recycle: Refactor rest of the NodeCreator component to composition API, conver globalLinkActions to composable
* :sparkles: Allow actions dragging, fix search and refactor passing of actions to categorized items
* :lipstick: Fix node actions title
* Migrate to the pinia store, add posthog feature and various fixes
* :bug: Fix filtering of trigger actions when not merged
* fix: N8N-5439 — Do not use simple node item when at NodeHelperPanel root
* :bug: Design review fixes
* :bug: Fix disabling of merged actions
* Fix trigger root filtering
* :sparkles: Allow for custom node actions parser, introduce hubspot parser
* :bug: Fix initial node params validation, fix position of second added node
* :bug: Introduce operations category, removed canvas node names overrride, fix API actions display and prevent dragging of action nodes
* :sparkles: Prevent NDV auto-open feature flag
* :bug: Inject recommened action for trigger nodes without actions
* Refactored NodeCreatorNode to Storybook, change filtering of merged nodes for the trigger helper panel, minor fixes
* Improve rendering of app nodes and animation
* Cleanup, any only enable accordion transition on triggerhelperpanel
* Hide node creator scrollbars in Firefox
* Minor styles fixes
* Do not copy the array in rendering method
* Removed unused props
* Fix memory leak
* Fix categorisation of regular nodes with a single resource
* Implement telemetry calls for node actions
* Move categorization to FE
* Fix client side actions categorisation
* Skip custom action show
* Only load tooltip for NodeIcon if necessary
* Fix lodash startCase import
* Remove lodash.startcase
* Cleanup
* Fix node creator autofocus on "tab"
* Prevent posthog getFeatureFlag from crashing
* Debugging preview env search issues
* Remove logs
* Make sure the pre-filled params are update not overwritten
* Get rid of transition in itemiterator
* WIP: Rough version of NodeActions keyboard navigation, replace nodeCreator composable with Pinia store module
* Rewrite to add support for ActionItem to ItemIterator and make CategorizedItems accept items props
* Fix category item counter & cleanup
* Add APIHint to actions search no-result, clean up NodeCreatorNode
* Improve node actions no results message
* Remove logging, fix filtering of recommended placeholder category
* Remove unused NodeActions component and node merging feature falg
* Do not show regular nodes without actions
* Make sure to add manual trigger when adding http node via actions hint
* Fixed api hint footer line height
* Prevent pointer-events od NodeIcon img and remove "this" from template
* Address PR points
* Fix e2e specs
* Make sure canvas ia loaded
* Make sure canvas ia loaded before opening nodeCreator in e2e spec
* Fix flaky workflows tags e2e getter
* Imrpove node creator click outside UX, add manual node to regular nodes added from trigger panel
* Add manual trigger node if dragging regular from trigger panel
2022-12-09 01:56:36 -08:00
|
|
|
name: 'GitLab Trigger',
|
2019-10-16 16:49:09 -07:00
|
|
|
},
|
|
|
|
inputs: [],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'gitlabApi',
|
|
|
|
required: true,
|
2020-06-16 06:50:17 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
authentication: ['accessToken'],
|
2020-06-16 06:50:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'gitlabOAuth2Api',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
authentication: ['oAuth2'],
|
2020-06-16 06:50:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-10-16 16:49:09 -07:00
|
|
|
],
|
|
|
|
webhooks: [
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
httpMethod: 'POST',
|
|
|
|
responseMode: 'onReceived',
|
|
|
|
path: 'webhook',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
2020-06-16 06:50:17 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Access Token',
|
|
|
|
value: 'accessToken',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'OAuth2',
|
|
|
|
value: 'oAuth2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'accessToken',
|
|
|
|
},
|
2019-10-16 16:49:09 -07:00
|
|
|
{
|
|
|
|
displayName: 'Repository Owner',
|
|
|
|
name: 'owner',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
placeholder: 'n8n-io',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Owner of the repsitory',
|
2019-10-16 16:49:09 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Repository Name',
|
|
|
|
name: 'repository',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
placeholder: 'n8n',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The name of the repsitory',
|
2019-10-16 16:49:09 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Events',
|
|
|
|
name: 'events',
|
|
|
|
type: 'multiOptions',
|
|
|
|
options: [
|
2021-12-24 02:37:24 -08:00
|
|
|
...GITLAB_EVENTS,
|
2019-10-16 16:49:09 -07:00
|
|
|
{
|
|
|
|
name: '*',
|
|
|
|
value: '*',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Any time any event is triggered (Wildcard Event)',
|
2019-10-16 16:49:09 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
required: true,
|
|
|
|
default: [],
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The events to listen to',
|
2019-10-16 16:49:09 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
webhookMethods = {
|
|
|
|
default: {
|
|
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
if (webhookData.webhookId === undefined) {
|
|
|
|
// No webhook id is set so no webhook can exist
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Webhook got created before so check if it still exists
|
|
|
|
const owner = this.getNodeParameter('owner') as string;
|
|
|
|
const repository = this.getNodeParameter('repository') as string;
|
2020-06-20 09:08:30 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const path = `${owner}/${repository}`.replace(/\//g, '%2F');
|
2020-06-20 09:08:30 -07:00
|
|
|
|
|
|
|
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
|
2019-10-16 16:49:09 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
await gitlabApiRequest.call(this, 'GET', endpoint, {});
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2023-07-21 05:09:48 -07:00
|
|
|
if (error.cause.httpCode === '404' || error.description.includes('404')) {
|
2019-10-16 16:49:09 -07:00
|
|
|
// Webhook does not exist
|
|
|
|
delete webhookData.webhookId;
|
|
|
|
delete webhookData.webhookEvents;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some error occured
|
2021-04-16 09:33:36 -07:00
|
|
|
throw error;
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// If it did not error then the webhook exists
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Gitlab API - Add project hook:
|
|
|
|
* https://docs.gitlab.com/ee/api/projects.html#add-project-hook
|
|
|
|
*/
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
|
|
|
|
|
|
const owner = this.getNodeParameter('owner') as string;
|
|
|
|
const repository = this.getNodeParameter('repository') as string;
|
|
|
|
|
|
|
|
let eventsArray = this.getNodeParameter('events', []) as string[];
|
|
|
|
if (eventsArray.includes('*')) {
|
2022-08-17 08:50:24 -07:00
|
|
|
eventsArray = GITLAB_EVENTS.map((e) => e.value);
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
|
2021-04-15 15:27:49 -07:00
|
|
|
const events: { [key: string]: boolean } = {};
|
2019-10-16 16:49:09 -07:00
|
|
|
for (const e of eventsArray) {
|
2019-10-24 23:15:36 -07:00
|
|
|
events[`${e}_events`] = true;
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
|
2020-06-20 09:08:30 -07:00
|
|
|
// gitlab set the push_events to true when the field it's not sent.
|
|
|
|
// set it to false when it's not picked by the user.
|
2022-12-02 12:54:28 -08:00
|
|
|
if (events.push_events === undefined) {
|
|
|
|
events.push_events = false;
|
2020-06-20 09:08:30 -07:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const path = `${owner}/${repository}`.replace(/\//g, '%2F');
|
2020-06-20 09:08:30 -07:00
|
|
|
|
|
|
|
const endpoint = `/projects/${path}/hooks`;
|
2019-10-16 16:49:09 -07:00
|
|
|
|
|
|
|
const body = {
|
|
|
|
url: webhookUrl,
|
2020-06-20 09:08:30 -07:00
|
|
|
...events,
|
2019-10-16 16:49:09 -07:00
|
|
|
enable_ssl_verification: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
try {
|
|
|
|
responseData = await gitlabApiRequest.call(this, 'POST', endpoint, body);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (responseData.id === undefined) {
|
|
|
|
// Required data is missing so was not successful
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), responseData as JsonObject, {
|
2022-08-17 08:50:24 -07:00
|
|
|
message: 'GitLab webhook creation response did not contain the expected data.',
|
|
|
|
});
|
2019-10-16 16:49:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
webhookData.webhookId = responseData.id as string;
|
2022-12-02 12:54:28 -08:00
|
|
|
webhookData.webhookEvents = eventsArray;
|
2019-10-16 16:49:09 -07:00
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
if (webhookData.webhookId !== undefined) {
|
|
|
|
const owner = this.getNodeParameter('owner') as string;
|
|
|
|
const repository = this.getNodeParameter('repository') as string;
|
2020-06-20 09:08:30 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const path = `${owner}/${repository}`.replace(/\//g, '%2F');
|
2020-06-20 09:08:30 -07:00
|
|
|
|
|
|
|
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
|
2019-10-16 16:49:09 -07:00
|
|
|
const body = {};
|
|
|
|
|
|
|
|
try {
|
|
|
|
await gitlabApiRequest.call(this, 'DELETE', endpoint, body);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2019-10-16 16:49:09 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove from the static workflow data so that it is clear
|
2023-03-03 09:49:19 -08:00
|
|
|
// that no webhooks are registered anymore
|
2019-10-16 16:49:09 -07:00
|
|
|
delete webhookData.webhookId;
|
|
|
|
delete webhookData.webhookEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
|
|
const bodyData = this.getBodyData();
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
returnData.push({
|
|
|
|
body: bodyData,
|
|
|
|
headers: this.getHeaderData(),
|
|
|
|
query: this.getQueryData(),
|
|
|
|
});
|
2019-10-16 16:49:09 -07:00
|
|
|
|
|
|
|
return {
|
2022-08-17 08:50:24 -07:00
|
|
|
workflowData: [this.helpers.returnJsonArray(returnData)],
|
2019-10-16 16:49:09 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|