2023-01-27 03:22:44 -08:00
import type {
2023-03-09 09:13:15 -08:00
IExecuteFunctions ,
2020-11-24 14:30:43 -08:00
IDataObject ,
ILoadOptionsFunctions ,
INodeExecutionData ,
INodePropertyOptions ,
INodeType ,
INodeTypeDescription ,
} from 'n8n-workflow' ;
2022-08-17 08:50:24 -07:00
import { lingvaNexApiRequest } from './GenericFunctions' ;
2020-11-24 14:30:43 -08:00
export class LingvaNex implements INodeType {
description : INodeTypeDescription = {
displayName : 'LingvaNex' ,
name : 'lingvaNex' ,
2022-06-20 07:54:01 -07:00
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
2020-11-24 14:30:43 -08:00
icon : 'file:lingvanex.png' ,
group : [ 'output' ] ,
version : 1 ,
subtitle : '={{$parameter["operation"] + ": " + $parameter["resource"]}}' ,
description : 'Consume LingvaNex API' ,
defaults : {
name : 'LingvaNex' ,
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
credentials : [
{
name : 'lingvaNexApi' ,
required : true ,
} ,
] ,
properties : [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-11-24 14:30:43 -08:00
options : [
{
name : 'Translate' ,
value : 'translate' ,
description : 'Translate data' ,
2022-07-10 13:50:51 -07:00
action : 'Translate data' ,
2020-11-24 14:30:43 -08:00
} ,
] ,
default : 'translate' ,
} ,
// ----------------------------------
// All
// ----------------------------------
{
displayName : 'Text' ,
name : 'text' ,
type : 'string' ,
default : '' ,
description : 'The input text to translate' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'translate' ] ,
2020-11-24 14:30:43 -08:00
} ,
} ,
} ,
{
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
2020-11-24 14:30:43 -08:00
displayName : 'Translate To' ,
name : 'translateTo' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLanguages' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The language to use for translation of the input text, set to one of the language codes listed in <a href="https://cloud.google.com/translate/docs/languages">Language Support</a>. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-11-24 14:30:43 -08:00
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'translate' ] ,
2020-11-24 14:30:43 -08:00
} ,
} ,
} ,
{
displayName : 'Additional Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'translate' ] ,
2020-11-24 14:30:43 -08:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
2020-11-24 14:30:43 -08:00
displayName : 'From' ,
name : 'from' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLanguages' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The language code in the format “language code_code of the country”. If this parameter is not present, the auto-detect language mode is enabled. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-11-24 14:30:43 -08:00
} ,
{
displayName : 'Platform' ,
name : 'platform' ,
type : 'string' ,
default : 'api' ,
} ,
{
displayName : 'Translate Mode' ,
name : 'translateMode' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Describe the input text format. Possible value is "html" for translating and preserving html structure. If value is not specified or is other than "html" than plain text is translating.' ,
2020-11-24 14:30:43 -08:00
} ,
] ,
} ,
] ,
} ;
methods = {
loadOptions : {
2022-08-17 08:50:24 -07:00
async getLanguages ( this : ILoadOptionsFunctions ) : Promise < INodePropertyOptions [ ] > {
2020-11-24 14:30:43 -08:00
const returnData : INodePropertyOptions [ ] = [ ] ;
const data = await lingvaNexApiRequest . call (
this ,
'GET' ,
'/getLanguages' ,
{ } ,
2022-08-17 08:50:24 -07:00
{ platform : 'api' } ,
2020-11-24 14:30:43 -08:00
) ;
for ( const language of data . result ) {
returnData . push ( {
name : language.englishName ,
value : language.full_code ,
} ) ;
}
return returnData ;
} ,
} ,
} ;
async execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const items = this . getInputData ( ) ;
2022-04-22 09:29:51 -07:00
const length = items . length ;
2020-11-24 14:30:43 -08:00
2022-12-02 03:53:59 -08:00
const operation = this . getNodeParameter ( 'operation' , 0 ) ;
2020-11-24 14:30:43 -08:00
const responseData = [ ] ;
for ( let i = 0 ; i < length ; i ++ ) {
if ( operation === 'translate' ) {
const text = this . getNodeParameter ( 'text' , i ) as string ;
const translateTo = this . getNodeParameter ( 'translateTo' , i ) as string ;
2022-11-18 07:29:44 -08:00
const options = this . getNodeParameter ( 'options' , i ) ;
2020-11-24 14:30:43 -08:00
const body : IDataObject = {
data : text ,
to : translateTo ,
platform : 'api' ,
} ;
Object . assign ( body , options ) ;
2022-12-29 03:20:43 -08:00
const response = await lingvaNexApiRequest . call ( this , 'POST' , '/translate' , body ) ;
2020-11-24 14:30:43 -08:00
responseData . push ( response ) ;
}
}
return [ this . helpers . returnJsonArray ( responseData ) ] ;
}
}