mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
629 lines
17 KiB
TypeScript
629 lines
17 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
ICredentialsDecrypted,
|
|
ICredentialTestFunctions,
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodeCredentialTestResult,
|
|
INodeExecutionData,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
IMessage,
|
|
IMessageUi,
|
|
} from './MessageInterface';
|
|
|
|
import {
|
|
OptionsWithUri
|
|
} from 'request';
|
|
|
|
import {
|
|
// attachmentFields,
|
|
// attachmentOperations,
|
|
// incomingWebhookFields,
|
|
// incomingWebhookOperations,
|
|
// mediaFields,
|
|
// mediaOperations,
|
|
memberFields,
|
|
memberOperations,
|
|
messageFields,
|
|
messageOperations,
|
|
spaceFields,
|
|
spaceOperations
|
|
} from './descriptions';
|
|
|
|
import {
|
|
googleApiRequest,
|
|
googleApiRequestAllItems,
|
|
validateJSON,
|
|
} from './GenericFunctions';
|
|
|
|
import moment from 'moment-timezone';
|
|
|
|
import jwt from 'jsonwebtoken';
|
|
export class GoogleChat implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Google Chat',
|
|
name: 'googleChat',
|
|
icon: 'file:googleChat.svg',
|
|
group: ['input'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Google Chat API',
|
|
defaults: {
|
|
name: 'Google Chat',
|
|
color: '#0aa55c',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'googleApi',
|
|
required: true,
|
|
testedBy: 'testGoogleTokenAuth',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
required: true,
|
|
noDataExpression: true,
|
|
type: 'options',
|
|
options: [
|
|
// {
|
|
// name: 'Attachment',
|
|
// value: 'attachment',
|
|
// },
|
|
// {
|
|
// name: 'Incoming Webhook',
|
|
// value: 'incomingWebhook',
|
|
// },
|
|
// {
|
|
// name: 'Media',
|
|
// value: 'media',
|
|
// },
|
|
{
|
|
name: 'Member',
|
|
value: 'member',
|
|
},
|
|
{
|
|
name: 'Message',
|
|
value: 'message',
|
|
},
|
|
{
|
|
name: 'Space',
|
|
value: 'space',
|
|
},
|
|
],
|
|
default: 'message',
|
|
},
|
|
// ...attachmentOperations,
|
|
// ...attachmentFields,
|
|
// ...incomingWebhookOperations,
|
|
// ...incomingWebhookFields,
|
|
// ...mediaOperations,
|
|
// ...mediaFields,
|
|
...memberOperations,
|
|
...memberFields,
|
|
...messageOperations,
|
|
...messageFields,
|
|
...spaceOperations,
|
|
...spaceFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
// Get all the spaces to display them to user so that he can
|
|
// select them easily
|
|
async getSpaces(
|
|
this: ILoadOptionsFunctions,
|
|
): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const spaces = await googleApiRequestAllItems.call(
|
|
this,
|
|
'spaces',
|
|
'GET',
|
|
`/v1/spaces`,
|
|
);
|
|
for (const space of spaces) {
|
|
returnData.push({
|
|
name: space.displayName,
|
|
value: space.name,
|
|
});
|
|
}
|
|
return returnData;
|
|
},
|
|
},
|
|
credentialTest: {
|
|
async testGoogleTokenAuth(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult> {
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/chat.bot',
|
|
];
|
|
|
|
const now = moment().unix();
|
|
|
|
const email = (credential.data!.email as string).trim();
|
|
const privateKey = (credential.data!.privateKey as string).replace(/\\n/g, '\n').trim();
|
|
|
|
try {
|
|
const signature = jwt.sign(
|
|
{
|
|
'iss': email,
|
|
'sub': credential.data!.delegatedEmail || email,
|
|
'scope': scopes.join(' '),
|
|
'aud': `https://oauth2.googleapis.com/token`,
|
|
'iat': now,
|
|
'exp': now,
|
|
},
|
|
privateKey,
|
|
{
|
|
algorithm: 'RS256',
|
|
header: {
|
|
'kid': privateKey,
|
|
'typ': 'JWT',
|
|
'alg': 'RS256',
|
|
},
|
|
},
|
|
);
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
method: 'POST',
|
|
form: {
|
|
grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',
|
|
assertion: signature,
|
|
},
|
|
uri: 'https://oauth2.googleapis.com/token',
|
|
json: true,
|
|
};
|
|
|
|
const response = await this.helpers.request(options);
|
|
|
|
if (!response.access_token) {
|
|
return {
|
|
status: 'Error',
|
|
message: JSON.stringify(response),
|
|
};
|
|
}
|
|
} catch (err) {
|
|
return {
|
|
status: 'Error',
|
|
message: `${err.message}`,
|
|
};
|
|
}
|
|
|
|
return {
|
|
status: 'OK',
|
|
message: 'Connection successful!',
|
|
};
|
|
},
|
|
},
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = items.length;
|
|
const qs: IDataObject = {};
|
|
let responseData;
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
for (let i = 0; i < length; i++) {
|
|
try {
|
|
if (resource === 'media') {
|
|
if (operation === 'download') {
|
|
// ----------------------------------------
|
|
// media: download
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/media/download
|
|
|
|
const resourceName = this.getNodeParameter('resourceName', i) as string;
|
|
|
|
const endpoint = `/v1/media/${resourceName}?alt=media`;
|
|
|
|
// Return the data as a buffer
|
|
const encoding = null;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
endpoint,
|
|
undefined,
|
|
undefined,
|
|
undefined,
|
|
undefined,
|
|
encoding,
|
|
);
|
|
|
|
const newItem: INodeExecutionData = {
|
|
json: items[i].json,
|
|
binary: {},
|
|
};
|
|
|
|
if (items[i].binary !== undefined) {
|
|
// Create a shallow copy of the binary data so that the old
|
|
// data references which do not get changed still stay behind
|
|
// but the incoming data does not get changed.
|
|
Object.assign(newItem.binary, items[i].binary);
|
|
}
|
|
|
|
items[i] = newItem;
|
|
|
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', i) as string;
|
|
|
|
items[i].binary![binaryPropertyName] = await this.helpers.prepareBinaryData(responseData, endpoint);
|
|
|
|
}
|
|
|
|
} else if (resource === 'space') {
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------------
|
|
// space: get
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces/get
|
|
|
|
const spaceId = this.getNodeParameter('spaceId', i) as string;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/${spaceId}`,
|
|
);
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------------
|
|
// space: getAll
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces/list
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0) as IDataObject;
|
|
if (returnAll) {
|
|
responseData = await googleApiRequestAllItems.call(
|
|
this,
|
|
'spaces',
|
|
'GET',
|
|
`/v1/spaces`,
|
|
);
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
qs.pageSize = limit;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/spaces`,
|
|
undefined,
|
|
qs,
|
|
);
|
|
responseData = responseData.spaces;
|
|
}
|
|
}
|
|
} else if (resource === 'member') {
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------------
|
|
// member: get
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.members/get
|
|
|
|
const memberId = this.getNodeParameter('memberId', i) as string;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/${memberId}`,
|
|
);
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------------
|
|
// member: getAll
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.members/list
|
|
|
|
const spaceId = this.getNodeParameter('spaceId', i) as string;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0) as IDataObject;
|
|
if (returnAll) {
|
|
responseData = await googleApiRequestAllItems.call(
|
|
this,
|
|
'memberships',
|
|
'GET',
|
|
`/v1/${spaceId}/members`,
|
|
undefined,
|
|
qs,
|
|
);
|
|
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
qs.pageSize = limit;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/${spaceId}/members`,
|
|
undefined,
|
|
qs,
|
|
);
|
|
responseData = responseData.memberships;
|
|
}
|
|
|
|
}
|
|
} else if (resource === 'message') {
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------------
|
|
// message: create
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.messages/create
|
|
|
|
const spaceId = this.getNodeParameter('spaceId', i) as string;
|
|
|
|
// get additional fields for threadKey and requestId
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
if (additionalFields.threadKey) {
|
|
qs.threadKey = additionalFields.threadKey;
|
|
}
|
|
if (additionalFields.requestId) {
|
|
qs.requestId = additionalFields.requestId;
|
|
}
|
|
|
|
let message: IMessage = {};
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
if (jsonParameters) {
|
|
const messageJson = this.getNodeParameter('messageJson', i);
|
|
|
|
if (messageJson instanceof Object) {
|
|
// if it is an object
|
|
message = messageJson as IMessage;
|
|
} else {
|
|
// if it is a string
|
|
if (validateJSON(messageJson as string) !== undefined) {
|
|
message = JSON.parse(messageJson as string) as IMessage;
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Message (JSON) must be a valid json');
|
|
}
|
|
}
|
|
|
|
} else {
|
|
const messageUi = this.getNodeParameter('messageUi', i) as IMessageUi;
|
|
if (messageUi.text && messageUi.text !== '') {
|
|
message.text = messageUi.text;
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Message Text must be provided.');
|
|
}
|
|
// // TODO: get cards from the UI
|
|
// if (messageUi?.cards?.metadataValues && messageUi?.cards?.metadataValues.length !== 0) {
|
|
// const cards = messageUi.cards.metadataValues as IDataObject[]; // TODO: map cards to messageUi.cards.metadataValues
|
|
// message.cards = cards;
|
|
// }
|
|
}
|
|
|
|
const body: IDataObject = {};
|
|
Object.assign(body, message);
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'POST',
|
|
`/v1/${spaceId}/messages`,
|
|
body,
|
|
qs,
|
|
);
|
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------------
|
|
// message: delete
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.messages/delete
|
|
|
|
const messageId = this.getNodeParameter('messageId', i) as string;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'DELETE',
|
|
`/v1/${messageId}`,
|
|
);
|
|
|
|
} else if (operation === 'get') {
|
|
|
|
// ----------------------------------------
|
|
// message: get
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.messages/get
|
|
|
|
const messageId = this.getNodeParameter('messageId', i) as string;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/${messageId}`,
|
|
);
|
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------------
|
|
// message: update
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.messages/update
|
|
|
|
const messageId = this.getNodeParameter('messageId', i) as string;
|
|
|
|
let message: IMessage = {};
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
if (jsonParameters) {
|
|
const updateFieldsJson = this.getNodeParameter('updateFieldsJson', i);
|
|
|
|
if (updateFieldsJson instanceof Object) {
|
|
// if it is an object
|
|
message = updateFieldsJson as IMessage;
|
|
} else {
|
|
// if it is a string
|
|
if (validateJSON(updateFieldsJson as string) !== undefined) {
|
|
message = JSON.parse(updateFieldsJson as string) as IMessage;
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Update Fields (JSON) must be a valid json');
|
|
}
|
|
}
|
|
|
|
} else {
|
|
const updateFieldsUi = this.getNodeParameter('updateFieldsUi', i) as IDataObject;
|
|
if (updateFieldsUi.text) {
|
|
message.text = updateFieldsUi.text as string;
|
|
}
|
|
// // TODO: get cards from the UI
|
|
// if (updateFieldsUi.cards) {
|
|
// message.cards = updateFieldsUi.cards as IDataObject[];
|
|
// }
|
|
}
|
|
|
|
const body: IDataObject = {};
|
|
Object.assign(body, message);
|
|
|
|
// get update mask
|
|
let updateMask = '';
|
|
if (message.text) {
|
|
updateMask += 'text,';
|
|
}
|
|
if (message.cards) {
|
|
updateMask += 'cards,';
|
|
}
|
|
updateMask = updateMask.slice(0, -1); // remove trailing comma
|
|
qs.updateMask = updateMask;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'PUT',
|
|
`/v1/${messageId}`,
|
|
body,
|
|
qs,
|
|
);
|
|
}
|
|
|
|
} else if (resource === 'attachment') {
|
|
|
|
if (operation === 'get') {
|
|
// ----------------------------------------
|
|
// attachment: get
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/reference/rest/v1/spaces.messages.attachments/get
|
|
|
|
const attachmentName = this.getNodeParameter('attachmentName', i) as string;
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/v1/${attachmentName}`,
|
|
);
|
|
}
|
|
} else if (resource === 'incomingWebhook') {
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------------
|
|
// incomingWebhook: create
|
|
// ----------------------------------------
|
|
|
|
// https://developers.google.com/chat/how-tos/webhooks
|
|
|
|
const uri = this.getNodeParameter('incomingWebhookUrl', i) as string;
|
|
|
|
// get additional fields for threadKey
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
if (additionalFields.threadKey) {
|
|
qs.threadKey = additionalFields.threadKey;
|
|
}
|
|
|
|
let message: IMessage = {};
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
if (jsonParameters) {
|
|
const messageJson = this.getNodeParameter('messageJson', i);
|
|
|
|
if (messageJson instanceof Object) {
|
|
// if it is an object
|
|
message = messageJson as IMessage;
|
|
} else {
|
|
// if it is a string
|
|
if (validateJSON(messageJson as string) !== undefined) {
|
|
message = JSON.parse(messageJson as string) as IMessage;
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Message (JSON) must be a valid json');
|
|
}
|
|
}
|
|
|
|
} else {
|
|
const messageUi = this.getNodeParameter('messageUi', i) as IMessageUi;
|
|
if (messageUi.text && messageUi.text !== '') {
|
|
message.text = messageUi.text;
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Message Text must be provided.');
|
|
}
|
|
}
|
|
|
|
const body: IDataObject = {};
|
|
Object.assign(body, message);
|
|
|
|
responseData = await googleApiRequest.call(
|
|
this,
|
|
'POST',
|
|
'',
|
|
body,
|
|
qs,
|
|
uri,
|
|
true,
|
|
);
|
|
}
|
|
|
|
}
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
} else if (responseData !== undefined) {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
// Return the actual reason as error
|
|
if (operation === 'download') {
|
|
items[i].json = { error: error.message };
|
|
} else {
|
|
returnData.push({ error: error.message });
|
|
}
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
if (operation === 'download') {
|
|
// For file downloads the files get attached to the existing items
|
|
return this.prepareOutputData(items);
|
|
} else {
|
|
// For all other ones does the output get replaced
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|
|
}
|