mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-28 22:22:03 +08:00

Co-authored-by: John Wang <takatost@gmail.com> Co-authored-by: Jyong <718720800@qq.com> Co-authored-by: 金伟强 <iamjoel007@gmail.com>
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import type { Dispatch, SetStateAction } from 'react'
|
|
import { useCallback, useState } from 'react'
|
|
import debounce from 'lodash-es/debounce'
|
|
import type { DebouncedFunc } from 'lodash-es'
|
|
import { validateProviderKey } from '@/service/common'
|
|
|
|
export enum ValidatedStatus {
|
|
Success = 'success',
|
|
Error = 'error',
|
|
Exceed = 'exceed',
|
|
}
|
|
export type ValidatedStatusState = {
|
|
status?: ValidatedStatus
|
|
message?: string
|
|
}
|
|
// export type ValidatedStatusState = ValidatedStatus | undefined | ValidatedError
|
|
export type SetValidatedStatus = Dispatch<SetStateAction<ValidatedStatusState>>
|
|
export type ValidateFn = DebouncedFunc<(token: any, config: ValidateFnConfig) => void>
|
|
type ValidateTokenReturn = [
|
|
boolean,
|
|
ValidatedStatusState,
|
|
SetValidatedStatus,
|
|
ValidateFn,
|
|
]
|
|
export type ValidateFnConfig = {
|
|
beforeValidating: (token: any) => boolean
|
|
}
|
|
|
|
const useValidateToken = (providerName: string): ValidateTokenReturn => {
|
|
const [validating, setValidating] = useState(false)
|
|
const [validatedStatus, setValidatedStatus] = useState<ValidatedStatusState>({})
|
|
const validate = useCallback(debounce(async (token: string, config: ValidateFnConfig) => {
|
|
if (!config.beforeValidating(token))
|
|
return false
|
|
|
|
setValidating(true)
|
|
try {
|
|
const res = await validateProviderKey({ url: `/workspaces/current/providers/${providerName}/token-validate`, body: { token } })
|
|
setValidatedStatus(
|
|
res.result === 'success'
|
|
? { status: ValidatedStatus.Success }
|
|
: { status: ValidatedStatus.Error, message: res.error })
|
|
}
|
|
catch (e: any) {
|
|
setValidatedStatus({ status: ValidatedStatus.Error, message: e.message })
|
|
}
|
|
finally {
|
|
setValidating(false)
|
|
}
|
|
}, 500), [])
|
|
|
|
return [
|
|
validating,
|
|
validatedStatus,
|
|
setValidatedStatus,
|
|
validate,
|
|
]
|
|
}
|
|
|
|
export default useValidateToken
|