mirror of
https://github.com/langgenius/dify.git
synced 2025-07-15 21:24:23 +00:00
95 lines
3.0 KiB
TypeScript
95 lines
3.0 KiB
TypeScript
import type { NodeDefault } from '../../types'
|
|
import type { DataSourceNodeType } from './types'
|
|
import { DataSourceClassification } from './types'
|
|
import { genNodeMetaData } from '@/app/components/workflow/utils'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
import {
|
|
COMMON_OUTPUT,
|
|
LOCAL_FILE_OUTPUT,
|
|
ONLINE_DOCUMENT_OUTPUT,
|
|
ONLINE_DRIVE_OUTPUT,
|
|
WEBSITE_CRAWL_OUTPUT,
|
|
} from './constants'
|
|
import { VarType as VarKindType } from '@/app/components/workflow/nodes/tool/types'
|
|
|
|
const i18nPrefix = 'workflow.errorMsg'
|
|
|
|
const metaData = genNodeMetaData({
|
|
sort: -1,
|
|
type: BlockEnum.DataSource,
|
|
})
|
|
const nodeDefault: NodeDefault<DataSourceNodeType> = {
|
|
metaData,
|
|
defaultValue: {
|
|
datasource_parameters: {},
|
|
datasource_configurations: {},
|
|
},
|
|
checkValid(payload, t, moreDataForCheckValid) {
|
|
const { dataSourceInputsSchema, notAuthed } = moreDataForCheckValid
|
|
let errorMessage = ''
|
|
if (notAuthed)
|
|
errorMessage = t(`${i18nPrefix}.authRequired`)
|
|
|
|
if (!errorMessage) {
|
|
dataSourceInputsSchema.filter((field: any) => {
|
|
return field.required
|
|
}).forEach((field: any) => {
|
|
const targetVar = payload.datasource_parameters[field.variable]
|
|
if (!targetVar) {
|
|
errorMessage = t(`${i18nPrefix}.fieldRequired`, { field: field.label })
|
|
return
|
|
}
|
|
const { type: variable_type, value } = targetVar
|
|
if (variable_type === VarKindType.variable) {
|
|
if (!errorMessage && (!value || value.length === 0))
|
|
errorMessage = t(`${i18nPrefix}.fieldRequired`, { field: field.label })
|
|
}
|
|
else {
|
|
if (!errorMessage && (value === undefined || value === null || value === ''))
|
|
errorMessage = t(`${i18nPrefix}.fieldRequired`, { field: field.label })
|
|
}
|
|
})
|
|
}
|
|
|
|
return {
|
|
isValid: !errorMessage,
|
|
errorMessage,
|
|
}
|
|
},
|
|
getOutputVars(payload, ragVars = []) {
|
|
const {
|
|
provider_type,
|
|
} = payload
|
|
const isLocalFile = provider_type === DataSourceClassification.localFile
|
|
const isWebsiteCrawl = provider_type === DataSourceClassification.websiteCrawl
|
|
const isOnlineDocument = provider_type === DataSourceClassification.onlineDocument
|
|
const isOnlineDrive = provider_type === DataSourceClassification.onlineDrive
|
|
return [
|
|
...COMMON_OUTPUT.map(item => ({ variable: item.name, type: item.type })),
|
|
...(
|
|
isLocalFile
|
|
? LOCAL_FILE_OUTPUT.map(item => ({ variable: item.name, type: item.type }))
|
|
: []
|
|
),
|
|
...(
|
|
isWebsiteCrawl
|
|
? WEBSITE_CRAWL_OUTPUT.map(item => ({ variable: item.name, type: item.type }))
|
|
: []
|
|
),
|
|
...(
|
|
isOnlineDocument
|
|
? ONLINE_DOCUMENT_OUTPUT.map(item => ({ variable: item.name, type: item.type }))
|
|
: []
|
|
),
|
|
...(
|
|
isOnlineDrive
|
|
? ONLINE_DRIVE_OUTPUT.map(item => ({ variable: item.name, type: item.type }))
|
|
: []
|
|
),
|
|
...ragVars,
|
|
]
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|