n8n/packages/nodes-base/nodes/Peekalink/Peekalink.node.ts
Iván Ovejero 2b74b6238e
Deprecate step size and node color (#2586)
* 🔥 Deprecate numberStepSize

* 🔥 Deprecate color in non-FA nodes

*  Minor node name fixes

* 📦 Update package-lock.json

*  Restore Merge node color

* 👕 Fix lint
2021-12-23 13:30:35 +01:00

109 lines
2.4 KiB
TypeScript

import {
IExecuteFunctions,
} from 'n8n-core';
import {
IDataObject,
INodeExecutionData,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
import {
peekalinkApiRequest,
} from './GenericFunctions';
export class Peekalink implements INodeType {
description: INodeTypeDescription = {
displayName: 'Peekalink',
name: 'peekalink',
icon: 'file:peekalink.png',
group: ['output'],
version: 1,
subtitle: '={{$parameter["operation"]',
description: 'Consume the Peekalink API',
defaults: {
name: 'Peekalink',
},
inputs: ['main'],
outputs: ['main'],
credentials: [
{
name: 'peekalinkApi',
required: true,
},
],
properties: [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
options: [
{
name: 'Is available',
value: 'isAvailable',
description: 'Check whether preview for a given link is available',
},
{
name: 'Preview',
value: 'preview',
description: 'Return the preview for a link',
},
],
default: 'preview',
description: 'The operation to perform.',
},
{
displayName: 'URL',
name: 'url',
type: 'string',
default: '',
description: '',
required: true,
},
],
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const items = this.getInputData();
const returnData: IDataObject[] = [];
const length = items.length as unknown as number;
const qs: IDataObject = {};
let responseData;
const operation = this.getNodeParameter('operation', 0) as string;
for (let i = 0; i < length; i++) {
try {
if (operation === 'isAvailable') {
const url = this.getNodeParameter('url', i) as string;
const body: IDataObject = {
link: url,
};
responseData = await peekalinkApiRequest.call(this, 'POST', `/is-available/`, body);
}
if (operation === 'preview') {
const url = this.getNodeParameter('url', i) as string;
const body: IDataObject = {
link: url,
};
responseData = await peekalinkApiRequest.call(this, 'POST', `/`, body);
}
if (Array.isArray(responseData)) {
returnData.push.apply(returnData, responseData as IDataObject[]);
} else {
returnData.push(responseData as IDataObject);
}
} catch (error) {
if (this.continueOnFail()) {
returnData.push({ error: error.message });
continue;
}
throw error;
}
}
return [this.helpers.returnJsonArray(returnData)];
}
}