mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
1d27a9e87e
* Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * 🚧 create basic setup NodeError * 🚧 add httpCodes * 🚧 add path priolist * 🚧 handle statusCode in error, adjust interfaces * 🚧 fixing type issues w/Ivan * 🚧 add error exploration * 👔 fix linter issues * 🔧 improve object check * 🚧 remove path passing from NodeApiError * 🚧 add multi error + refactor findProperty method * 👔 allow any * 🔧 handle multi error message callback * ⚡ change return type of callback * ⚡ add customCallback to MultiError * 🚧 refactor to use INode * 🔨 handle arrays, continue search after first null property found * 🚫 refactor method access * 🚧 setup NodeErrorView * ⚡ change timestamp to Date.now * 📚 Add documentation for methods and constants * 🚧 change message setting * 🚚 move NodeErrors to workflow * ✨ add new ErrorView for Nodes * 🎨 improve error notification * 🎨 refactor interfaces * ⚡ add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * 🎨 rename param * 🐛 fix handling normal errors * ⚡ add usage of NodeApiError * 🎨 fix throw new error instead of constructor * 🎨 remove unnecessary code/comments * 🎨 adjusted spacing + updated status messages * 🎨 fix tab indentation * ✨ Replace current errors with custom errors (#1576) * ⚡ Introduce NodeApiError in catch blocks * ⚡ Introduce NodeOperationError in nodes * ⚡ Add missing errors and remove incompatible * ⚡ Fix NodeOperationError in incompatible nodes * 🔧 Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * 🔨 Adjust Strava Trigger node error handling * 🔨 Adjust AWS nodes error handling * 🔨 Remove duplicate instantiation of NodeApiError * 🐛 fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * 🐛 Remove type annotation from catch variable * ✨ Add XML parsing to NodeApiError * ⚡ Simplify error handling in Rekognition node * ⚡ Pass in XML flag in generic functions * 🔥 Remove try/catch wrappers at call sites * 🔨 Refactor setting description from XML * 🔨 Refactor let to const in resource loaders * ⚡ Find property in parsed XML * ⚡ Change let to const * 🔥 Remove unneeded try/catch block * 👕 Fix linting issues * 🐛 Fix errors from merge conflict resolution * ⚡ Add custom errors to latest contributions * 👕 Fix linting issues * ⚡ Refactor MongoDB helpers for custom errors * 🐛 Correct custom error type * ⚡ Apply feedback to A nodes * ⚡ Apply feedback to missed A node * ⚡ Apply feedback to B-D nodes * ⚡ Apply feedback to E-F nodes * ⚡ Apply feedback to G nodes * ⚡ Apply feedback to H-L nodes * ⚡ Apply feedback to M nodes * ⚡ Apply feedback to P nodes * ⚡ Apply feedback to R nodes * ⚡ Apply feedback to S nodes * ⚡ Apply feedback to T nodes * ⚡ Apply feedback to V-Z nodes * ⚡ Add HTTP code to iterable node error * 🔨 Standardize e as error * 🔨 Standardize err as error * ⚡ Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
302 lines
7.4 KiB
TypeScript
302 lines
7.4 KiB
TypeScript
import {
|
|
IHookFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
IWebhookResponseData,
|
|
NodeApiError,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
gitlabApiRequest,
|
|
} from './GenericFunctions';
|
|
|
|
export class GitlabTrigger implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'GitLab Trigger',
|
|
name: 'gitlabTrigger',
|
|
icon: 'file:gitlab.svg',
|
|
group: ['trigger'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["owner"] + "/" + $parameter["repository"] + ": " + $parameter["events"].join(", ")}}',
|
|
description: 'Starts the workflow when a GitLab event occurs.',
|
|
defaults: {
|
|
name: 'Gitlab Trigger',
|
|
color: '#FC6D27',
|
|
},
|
|
inputs: [],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'gitlabApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: [
|
|
'accessToken',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'gitlabOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: [
|
|
'oAuth2',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
webhooks: [
|
|
{
|
|
name: 'default',
|
|
httpMethod: 'POST',
|
|
responseMode: 'onReceived',
|
|
path: 'webhook',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Access Token',
|
|
value: 'accessToken',
|
|
},
|
|
{
|
|
name: 'OAuth2',
|
|
value: 'oAuth2',
|
|
},
|
|
],
|
|
default: 'accessToken',
|
|
description: 'The resource to operate on.',
|
|
},
|
|
{
|
|
displayName: 'Repository Owner',
|
|
name: 'owner',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
placeholder: 'n8n-io',
|
|
description: 'Owner of the repsitory.',
|
|
},
|
|
{
|
|
displayName: 'Repository Name',
|
|
name: 'repository',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
placeholder: 'n8n',
|
|
description: 'The name of the repsitory.',
|
|
},
|
|
{
|
|
displayName: 'Events',
|
|
name: 'events',
|
|
type: 'multiOptions',
|
|
options: [
|
|
{
|
|
name: '*',
|
|
value: '*',
|
|
description: 'Any time any event is triggered (Wildcard Event).',
|
|
},
|
|
{
|
|
name: 'Comment',
|
|
value: 'note',
|
|
description: 'Triggered when a new comment is made on commits, merge requests, issues, and code snippets.',
|
|
},
|
|
{
|
|
name: 'Issue',
|
|
value: 'issues',
|
|
description: 'Triggered when a new issue is created or an existing issue was updated/closed/reopened.',
|
|
},
|
|
{
|
|
name: 'Job',
|
|
value: 'job',
|
|
description: 'Triggered on status change of a job.',
|
|
},
|
|
{
|
|
name: 'Merge Request',
|
|
value: 'merge_requests',
|
|
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.',
|
|
},
|
|
{
|
|
name: 'Pipeline',
|
|
value: 'pipeline',
|
|
description: 'Triggered on status change of Pipeline.',
|
|
},
|
|
{
|
|
name: 'Push',
|
|
value: 'push',
|
|
description: 'Triggered when you push to the repository except when pushing tags.',
|
|
},
|
|
{
|
|
name: 'Tag',
|
|
value: 'tag_push',
|
|
description: 'Triggered when you create (or delete) tags to the repository.',
|
|
},
|
|
{
|
|
name: 'Wiki Page',
|
|
value: 'wiki_page',
|
|
description: 'Triggered when a wiki page is created, updated or deleted.',
|
|
},
|
|
],
|
|
required: true,
|
|
default: [],
|
|
description: 'The events to listen to.',
|
|
},
|
|
],
|
|
};
|
|
|
|
// @ts-ignore (because of request)
|
|
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;
|
|
|
|
const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
|
|
|
|
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
|
|
|
|
try {
|
|
await gitlabApiRequest.call(this, 'GET', endpoint, {});
|
|
} catch (error) {
|
|
if (error.message.includes('[404]:')) {
|
|
// Webhook does not exist
|
|
delete webhookData.webhookId;
|
|
delete webhookData.webhookEvents;
|
|
|
|
return false;
|
|
}
|
|
|
|
// Some error occured
|
|
throw error;
|
|
}
|
|
|
|
// 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('*')) {
|
|
eventsArray = ['note', 'issues', 'job', 'merge_requests', 'pipeline', 'push', 'tag_push', 'wiki_page'];
|
|
}
|
|
|
|
const events: { [key: string]: boolean } = {};
|
|
for (const e of eventsArray) {
|
|
events[`${e}_events`] = true;
|
|
}
|
|
|
|
// 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.
|
|
if (events['push_events'] === undefined) {
|
|
events['push_events'] = false;
|
|
}
|
|
|
|
const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
|
|
|
|
const endpoint = `/projects/${path}/hooks`;
|
|
|
|
const body = {
|
|
url: webhookUrl,
|
|
...events,
|
|
enable_ssl_verification: false,
|
|
};
|
|
|
|
let responseData;
|
|
try {
|
|
responseData = await gitlabApiRequest.call(this, 'POST', endpoint, body);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
|
|
if (responseData.id === undefined) {
|
|
// Required data is missing so was not successful
|
|
throw new NodeApiError(this.getNode(), responseData, { message: 'GitLab webhook creation response did not contain the expected data.' });
|
|
}
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
webhookData.webhookId = responseData.id as string;
|
|
webhookData.webhookEvents = eventsArray as string[];
|
|
|
|
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;
|
|
|
|
const path = (`${owner}/${repository}`).replace(/\//g, '%2F');
|
|
|
|
const endpoint = `/projects/${path}/hooks/${webhookData.webhookId}`;
|
|
const body = {};
|
|
|
|
try {
|
|
await gitlabApiRequest.call(this, 'DELETE', endpoint, body);
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
|
|
// Remove from the static workflow data so that it is clear
|
|
// that no webhooks are registred anymore
|
|
delete webhookData.webhookId;
|
|
delete webhookData.webhookEvents;
|
|
}
|
|
|
|
return true;
|
|
},
|
|
},
|
|
};
|
|
|
|
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
const bodyData = this.getBodyData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
returnData.push(
|
|
{
|
|
body: bodyData,
|
|
headers: this.getHeaderData(),
|
|
query: this.getQueryData(),
|
|
},
|
|
);
|
|
|
|
return {
|
|
workflowData: [
|
|
this.helpers.returnJsonArray(returnData),
|
|
],
|
|
};
|
|
}
|
|
}
|