2020-01-16 15:51:01 -08:00
|
|
|
import {
|
|
|
|
IHookFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeType,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeTypeDescription,
|
2020-01-16 15:51:01 -08:00
|
|
|
IWebhookResponseData,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
gumroadApiRequest,
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
|
|
|
export class GumroadTrigger implements INodeType {
|
2022-04-22 09:29:51 -07:00
|
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-missing-subtitle
|
2020-01-16 15:51:01 -08:00
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Gumroad Trigger',
|
2020-05-12 06:08:19 -07:00
|
|
|
name: 'gumroadTrigger',
|
2020-01-16 15:51:01 -08:00
|
|
|
icon: 'file:gumroad.png',
|
|
|
|
group: ['trigger'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Handle Gumroad events via webhooks',
|
|
|
|
defaults: {
|
|
|
|
name: 'Gumroad Trigger',
|
|
|
|
},
|
|
|
|
inputs: [],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'gumroadApi',
|
|
|
|
required: true,
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
2020-01-16 15:51:01 -08:00
|
|
|
],
|
|
|
|
webhooks: [
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
httpMethod: 'POST',
|
|
|
|
responseMode: 'onReceived',
|
|
|
|
path: 'webhook',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-01-16 15:51:01 -08:00
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Sale',
|
|
|
|
value: 'sale',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'When subscribed to this resource, you will be notified of the user\'s sales',
|
2020-01-16 15:51:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Refund',
|
|
|
|
value: 'refund',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'When subscribed to this resource, you will be notified of refunds to the user\'s sales',
|
2020-01-16 15:51:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Dispute',
|
|
|
|
value: 'dispute',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'When subscribed to this resource, you will be notified of the disputes raised against user\'s sales',
|
2020-01-16 15:51:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Dispute Won',
|
|
|
|
value: 'dispute_won',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'When subscribed to this resource, you will be notified of the sale disputes won',
|
2020-01-16 15:51:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Cancellation',
|
|
|
|
value: 'cancellation',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'When subscribed to this resource, you will be notified of cancellations of the user\'s subscribers',
|
2020-01-16 15:51:01 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
description: 'The resource is gonna fire the event',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
// @ts-ignore
|
|
|
|
webhookMethods = {
|
|
|
|
default: {
|
|
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
if (webhookData.webhookId === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-16 15:52:58 -08:00
|
|
|
const endpoint = '/resource_subscriptions';
|
2020-01-16 15:51:01 -08:00
|
|
|
const { resource_subscriptions } = await gumroadApiRequest.call(this, 'GET', endpoint);
|
|
|
|
if (Array.isArray(resource_subscriptions)) {
|
|
|
|
for (const resource of resource_subscriptions) {
|
|
|
|
if (resource.id === webhookData.webhookId) {
|
2020-01-16 15:52:58 -08:00
|
|
|
return true;
|
2020-01-16 15:51:01 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
const resource = this.getNodeParameter('resource') as string;
|
|
|
|
const endpoint = '/resource_subscriptions';
|
|
|
|
const body: IDataObject = {
|
|
|
|
post_url: webhookUrl,
|
|
|
|
resource_name: resource,
|
|
|
|
};
|
|
|
|
const { resource_subscription } = await gumroadApiRequest.call(this, 'PUT', endpoint, body);
|
|
|
|
webhookData.webhookId = resource_subscription.id;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
|
|
let responseData;
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
const endpoint = `/resource_subscriptions/${webhookData.webhookId}`;
|
|
|
|
try {
|
|
|
|
responseData = await gumroadApiRequest.call(this, 'DELETE', endpoint);
|
|
|
|
} catch(error) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!responseData.success) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
delete webhookData.webhookId;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
|
|
const req = this.getRequestObject();
|
|
|
|
return {
|
|
|
|
workflowData: [
|
|
|
|
this.helpers.returnJsonArray(req.body),
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|