mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
rocketchat-node-setup
This commit is contained in:
parent
f60b8e33f7
commit
edc6651a9b
18
packages/nodes-base/credentials/RocketchatApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/RocketchatApi.credentials.ts
Normal file
|
@ -0,0 +1,18 @@
|
|||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class RocketchatApi implements ICredentialType {
|
||||
name = 'rocketchatApi';
|
||||
displayName = 'Rocket API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
51
packages/nodes-base/nodes/Rocketchat/GenericFunctions.ts
Normal file
51
packages/nodes-base/nodes/Rocketchat/GenericFunctions.ts
Normal file
|
@ -0,0 +1,51 @@
|
|||
import { OptionsWithUri } from 'request';
|
||||
|
||||
import {
|
||||
IExecuteFunctions,
|
||||
IHookFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
IExecuteSingleFunctions,
|
||||
BINARY_ENCODING
|
||||
} from 'n8n-core';
|
||||
|
||||
import * as _ from 'lodash';
|
||||
|
||||
export async function rocketchatApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, resource: string, method: string, body: any = {}, headers?: object): Promise<any> { // tslint:disable-line:no-any
|
||||
|
||||
const credentials = this.getCredentials('rocketchatApi');
|
||||
|
||||
if (credentials === undefined) {
|
||||
throw new Error('No credentials got returned!');
|
||||
}
|
||||
|
||||
const apiKey = `${credentials.apiKey}:X`;
|
||||
|
||||
const headerWithAuthentication = Object.assign({}, headers, { Authorization: `${Buffer.from(apiKey).toString(BINARY_ENCODING)}` });
|
||||
|
||||
const endpoint = '';
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
headers: headerWithAuthentication,
|
||||
method,
|
||||
body,
|
||||
uri: `https://${credentials.domain}.${endpoint}${resource}`,
|
||||
json: true
|
||||
};
|
||||
|
||||
if (_.isEmpty(options.body)) {
|
||||
delete options.body;
|
||||
}
|
||||
|
||||
try {
|
||||
return await this.helpers.request!(options);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
|
||||
const errorMessage = error.response.body.message || error.response.body.Message;
|
||||
|
||||
if (errorMessage !== undefined) {
|
||||
throw errorMessage;
|
||||
}
|
||||
throw error.response.body;
|
||||
}
|
||||
}
|
53
packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts
Normal file
53
packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts
Normal file
|
@ -0,0 +1,53 @@
|
|||
import {
|
||||
IExecuteSingleFunctions,
|
||||
} from 'n8n-core';
|
||||
import {
|
||||
IDataObject,
|
||||
INodeTypeDescription,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
ILoadOptionsFunctions,
|
||||
INodePropertyOptions,
|
||||
} from 'n8n-workflow';
|
||||
import {
|
||||
rocketchatApiRequest
|
||||
} from './GenericFunctions';
|
||||
|
||||
|
||||
export class Rocketchat implements INodeType {
|
||||
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Rocketchat',
|
||||
name: 'Rocketchat',
|
||||
icon: 'file:Rocketchat.png',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Consume Rocketchat API',
|
||||
defaults: {
|
||||
name: 'Rocketchat',
|
||||
color: '#c02428',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
credentials: [
|
||||
{
|
||||
name: 'rocketchatApi',
|
||||
required: true,
|
||||
}
|
||||
],
|
||||
properties: [
|
||||
|
||||
]
|
||||
};
|
||||
|
||||
methods = {
|
||||
|
||||
};
|
||||
|
||||
async executeSingle(this: IExecuteSingleFunctions): Promise<INodeExecutionData> {
|
||||
return {
|
||||
json: {}
|
||||
};
|
||||
}
|
||||
}
|
BIN
packages/nodes-base/nodes/Rocketchat/rocketchat.png
Normal file
BIN
packages/nodes-base/nodes/Rocketchat/rocketchat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
|
@ -57,7 +57,8 @@
|
|||
"dist/credentials/TwilioApi.credentials.js",
|
||||
"dist/credentials/TypeformApi.credentials.js",
|
||||
"dist/credentials/MandrillApi.credentials.js",
|
||||
"dist/credentials/TodoistApi.credentials.js"
|
||||
"dist/credentials/TodoistApi.credentials.js",
|
||||
"dist/credentials/RocketchatApi.credentials.js"
|
||||
],
|
||||
"nodes": [
|
||||
"dist/nodes/ActiveCampaign/ActiveCampaign.node.js",
|
||||
|
@ -124,7 +125,8 @@
|
|||
"dist/nodes/Webhook.node.js",
|
||||
"dist/nodes/Xml.node.js",
|
||||
"dist/nodes/Mandrill/Mandrill.node.js",
|
||||
"dist/nodes/Todoist/Todoist.node.js"
|
||||
"dist/nodes/Todoist/Todoist.node.js",
|
||||
"dist/nodes/Rocketchat/Rocketchat.node.js"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
Loading…
Reference in a new issue