mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 21:19:43 -08:00
88dea330b9
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
197 lines
5.2 KiB
TypeScript
197 lines
5.2 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IBinaryData,
|
|
IBinaryKeyData,
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
humanticAiApiRequest,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
profileFields,
|
|
profileOperations,
|
|
} from './ProfileDescription';
|
|
|
|
export class HumanticAi implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Humantic AI',
|
|
name: 'humanticAi',
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
|
icon: 'file:humanticai.png',
|
|
group: ['output'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Humantic AI API',
|
|
defaults: {
|
|
name: 'Humantic AI',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'humanticAiApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Profile',
|
|
value: 'profile',
|
|
},
|
|
],
|
|
default: 'profile',
|
|
},
|
|
// PROFILE
|
|
...profileOperations,
|
|
...profileFields,
|
|
],
|
|
};
|
|
|
|
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++) {
|
|
if (resource === 'profile') {
|
|
if (operation === 'create') {
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
const sendResume = this.getNodeParameter('sendResume', i) as boolean;
|
|
qs.userid = userId;
|
|
|
|
if (sendResume) {
|
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', i) as string;
|
|
|
|
if (items[i].binary === undefined) {
|
|
throw new NodeOperationError(this.getNode(), 'No binary data exists on item!');
|
|
}
|
|
|
|
const item = items[i].binary as IBinaryKeyData;
|
|
|
|
const binaryData = item[binaryPropertyName] as IBinaryData;
|
|
const binaryDataBuffer = await this.helpers.getBinaryDataBuffer(i, binaryPropertyName);
|
|
|
|
if (binaryData === undefined) {
|
|
throw new NodeOperationError(this.getNode(), `No binary data property "${binaryPropertyName}" does not exists on item!`);
|
|
}
|
|
|
|
responseData = await humanticAiApiRequest.call(
|
|
this,
|
|
'POST',
|
|
`/user-profile/create`,
|
|
{},
|
|
qs,
|
|
{
|
|
formData: {
|
|
resume: {
|
|
value: binaryDataBuffer,
|
|
options: {
|
|
filename: binaryData.fileName,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
);
|
|
} else {
|
|
responseData = await humanticAiApiRequest.call(this, 'GET', `/user-profile/create`, {}, qs);
|
|
}
|
|
|
|
if (responseData.data !== undefined) {
|
|
responseData = responseData.data;
|
|
} else {
|
|
delete responseData.usage_stats;
|
|
}
|
|
}
|
|
if (operation === 'get') {
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
|
|
qs.userid = userId;
|
|
|
|
if (options.persona) {
|
|
qs.persona = (options.persona as string[]).join(',');
|
|
}
|
|
|
|
responseData = await humanticAiApiRequest.call(this, 'GET', `/user-profile`, {}, qs);
|
|
responseData = responseData.results;
|
|
}
|
|
if (operation === 'update') {
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
const sendResume = this.getNodeParameter('sendResume', i) as string;
|
|
qs.userid = userId;
|
|
|
|
if (sendResume) {
|
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', i) as string;
|
|
|
|
if (items[i].binary === undefined) {
|
|
throw new NodeOperationError(this.getNode(), 'No binary data exists on item!');
|
|
}
|
|
|
|
const item = items[i].binary as IBinaryKeyData;
|
|
|
|
const binaryData = item[binaryPropertyName] as IBinaryData;
|
|
const binaryDataBuffer = await this.helpers.getBinaryDataBuffer(i, binaryPropertyName);
|
|
|
|
if (binaryData === undefined) {
|
|
throw new NodeOperationError(this.getNode(), `No binary data property "${binaryPropertyName}" does not exists on item!`);
|
|
}
|
|
|
|
responseData = await humanticAiApiRequest.call(
|
|
this,
|
|
'POST',
|
|
`/user-profile/create`,
|
|
{},
|
|
qs,
|
|
{
|
|
formData: {
|
|
resume: {
|
|
value: binaryDataBuffer,
|
|
options: {
|
|
filename: binaryData.fileName,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
);
|
|
responseData = responseData.data;
|
|
} else {
|
|
const text = this.getNodeParameter('text', i) as string;
|
|
const body: IDataObject = {
|
|
text,
|
|
};
|
|
|
|
qs.userid = userId;
|
|
|
|
responseData = await humanticAiApiRequest.call(this, 'POST', `/user-profile/create`, body, qs);
|
|
responseData = responseData.data;
|
|
}
|
|
}
|
|
}
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
} else {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
}
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|