dtamind-components
Version:
DTAmindai Components
210 lines (183 loc) • 8.54 kB
text/typescript
import { Tool } from '@langchain/core/tools'
import { ICommonObject, INode, INodeData, INodeOptionsValue, INodeParams } from '../../../src/Interface'
import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../src/utils'
import { SNSClient, ListTopicsCommand, PublishCommand } from '@aws-sdk/client-sns'
class AWSSNSTool extends Tool {
name = 'aws_sns_publish'
description = 'Publishes a message to an AWS SNS topic'
private snsClient: SNSClient
private topicArn: string
constructor(snsClient: SNSClient, topicArn: string) {
super()
this.snsClient = snsClient
this.topicArn = topicArn
}
async _call(message: string): Promise<string> {
try {
const command = new PublishCommand({
TopicArn: this.topicArn,
Message: message
})
const response = await this.snsClient.send(command)
return `Successfully published message to SNS topic. MessageId: ${response.MessageId}`
} catch (error) {
return `Failed to publish message to SNS: ${error}`
}
}
}
class AWSSNS_Tools implements INode {
label: string
name: string
version: number
type: string
icon: string
category: string
description: string
baseClasses: string[]
credential: INodeParams
inputs: INodeParams[]
constructor() {
this.label = 'AWS SNS'
this.name = 'awsSNS'
this.version = 1.0
this.type = 'AWSSNS'
this.icon = 'awssns.svg'
this.category = 'Tools'
this.description = 'Publish messages to AWS SNS topics'
this.baseClasses = [this.type, ...getBaseClasses(AWSSNSTool)]
this.credential = {
label: 'AWS Credentials',
name: 'credential',
type: 'credential',
credentialNames: ['awsApi']
}
this.inputs = [
{
label: 'AWS Region',
name: 'region',
type: 'options',
options: [
{ label: 'US East (N. Virginia) - us-east-1', name: 'us-east-1' },
{ label: 'US East (Ohio) - us-east-2', name: 'us-east-2' },
{ label: 'US West (N. California) - us-west-1', name: 'us-west-1' },
{ label: 'US West (Oregon) - us-west-2', name: 'us-west-2' },
{ label: 'Africa (Cape Town) - af-south-1', name: 'af-south-1' },
{ label: 'Asia Pacific (Hong Kong) - ap-east-1', name: 'ap-east-1' },
{ label: 'Asia Pacific (Mumbai) - ap-south-1', name: 'ap-south-1' },
{ label: 'Asia Pacific (Osaka) - ap-northeast-3', name: 'ap-northeast-3' },
{ label: 'Asia Pacific (Seoul) - ap-northeast-2', name: 'ap-northeast-2' },
{ label: 'Asia Pacific (Singapore) - ap-southeast-1', name: 'ap-southeast-1' },
{ label: 'Asia Pacific (Sydney) - ap-southeast-2', name: 'ap-southeast-2' },
{ label: 'Asia Pacific (Tokyo) - ap-northeast-1', name: 'ap-northeast-1' },
{ label: 'Canada (Central) - ca-central-1', name: 'ca-central-1' },
{ label: 'Europe (Frankfurt) - eu-central-1', name: 'eu-central-1' },
{ label: 'Europe (Ireland) - eu-west-1', name: 'eu-west-1' },
{ label: 'Europe (London) - eu-west-2', name: 'eu-west-2' },
{ label: 'Europe (Milan) - eu-south-1', name: 'eu-south-1' },
{ label: 'Europe (Paris) - eu-west-3', name: 'eu-west-3' },
{ label: 'Europe (Stockholm) - eu-north-1', name: 'eu-north-1' },
{ label: 'Middle East (Bahrain) - me-south-1', name: 'me-south-1' },
{ label: 'South America (São Paulo) - sa-east-1', name: 'sa-east-1' }
],
default: 'us-east-1',
description: 'AWS Region where your SNS topics are located'
},
{
label: 'SNS Topic',
name: 'topicArn',
type: 'asyncOptions',
loadMethod: 'listTopics',
description: 'Select the SNS topic to publish to',
refresh: true
}
]
}
//@ts-ignore
loadMethods = {
listTopics: async (nodeData: INodeData, options?: ICommonObject): Promise<INodeOptionsValue[]> => {
try {
const credentialData = await getCredentialData(nodeData.credential ?? '', options ?? {})
const accessKeyId = getCredentialParam('awsKey', credentialData, nodeData)
const secretAccessKey = getCredentialParam('awsSecret', credentialData, nodeData)
const sessionToken = getCredentialParam('awsSession', credentialData, nodeData)
const region = (nodeData.inputs?.region as string) || 'us-east-1'
if (!accessKeyId || !secretAccessKey) {
return [
{
label: 'AWS Credentials Required',
name: 'placeholder',
description: 'Enter AWS Access Key ID and Secret Access Key'
}
]
}
const credentials: any = {
accessKeyId: accessKeyId,
secretAccessKey: secretAccessKey
}
if (sessionToken) {
credentials.sessionToken = sessionToken
}
const snsClient = new SNSClient({
region: region,
credentials: credentials
})
const command = new ListTopicsCommand({})
const response = await snsClient.send(command)
if (!response.Topics || response.Topics.length === 0) {
return [
{
label: 'No topics found',
name: 'placeholder',
description: 'No SNS topics found in this region'
}
]
}
return response.Topics.map((topic) => {
const topicArn = topic.TopicArn || ''
const topicName = topicArn.split(':').pop() || topicArn
return {
label: topicName,
name: topicArn,
description: topicArn
}
})
} catch (error) {
console.error('Error loading SNS topics:', error)
return [
{
label: 'Error Loading Topics',
name: 'error',
description: `Failed to load topics: ${error}`
}
]
}
}
}
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
const credentialData = await getCredentialData(nodeData.credential ?? '', options)
const accessKeyId = getCredentialParam('awsKey', credentialData, nodeData)
const secretAccessKey = getCredentialParam('awsSecret', credentialData, nodeData)
const sessionToken = getCredentialParam('awsSession', credentialData, nodeData)
const region = (nodeData.inputs?.region as string) || 'us-east-1'
const topicArn = nodeData.inputs?.topicArn as string
if (!accessKeyId || !secretAccessKey) {
throw new Error('AWS Access Key ID and Secret Access Key are required')
}
if (!topicArn) {
throw new Error('SNS Topic ARN is required')
}
const credentials: any = {
accessKeyId: accessKeyId,
secretAccessKey: secretAccessKey
}
if (sessionToken) {
credentials.sessionToken = sessionToken
}
const snsClient = new SNSClient({
region: region,
credentials: credentials
})
return new AWSSNSTool(snsClient, topicArn)
}
}
module.exports = { nodeClass: AWSSNS_Tools }