mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type { IOnCompleted, IOnData, IOnError, IOnMessageEnd } from './base'
 | 
						|
import {
 | 
						|
  del as consoleDel, get as consoleGet, patch as consolePatch, post as consolePost,
 | 
						|
  delPublic as del, getPublic as get, patchPublic as patch, postPublic as post, ssePost,
 | 
						|
} from './base'
 | 
						|
import type { Feedbacktype } from '@/app/components/app/chat/type'
 | 
						|
 | 
						|
function getAction(action: 'get' | 'post' | 'del' | 'patch', isInstalledApp: boolean) {
 | 
						|
  switch (action) {
 | 
						|
    case 'get':
 | 
						|
      return isInstalledApp ? consoleGet : get
 | 
						|
    case 'post':
 | 
						|
      return isInstalledApp ? consolePost : post
 | 
						|
    case 'patch':
 | 
						|
      return isInstalledApp ? consolePatch : patch
 | 
						|
    case 'del':
 | 
						|
      return isInstalledApp ? consoleDel : del
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
function getUrl(url: string, isInstalledApp: boolean, installedAppId: string) {
 | 
						|
  return isInstalledApp ? `installed-apps/${installedAppId}/${url.startsWith('/') ? url.slice(1) : url}` : url
 | 
						|
}
 | 
						|
 | 
						|
export const sendChatMessage = async (body: Record<string, any>, { onData, onCompleted, onError, getAbortController, onMessageEnd }: {
 | 
						|
  onData: IOnData
 | 
						|
  onCompleted: IOnCompleted
 | 
						|
  onError: IOnError
 | 
						|
  onMessageEnd?: IOnMessageEnd
 | 
						|
  getAbortController?: (abortController: AbortController) => void
 | 
						|
}, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return ssePost(getUrl('chat-messages', isInstalledApp, installedAppId), {
 | 
						|
    body: {
 | 
						|
      ...body,
 | 
						|
      response_mode: 'streaming',
 | 
						|
    },
 | 
						|
  }, { onData, onCompleted, isPublicAPI: !isInstalledApp, onError, getAbortController, onMessageEnd })
 | 
						|
}
 | 
						|
 | 
						|
export const stopChatMessageResponding = async (appId: string, taskId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return getAction('post', isInstalledApp)(getUrl(`chat-messages/${taskId}/stop`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const sendCompletionMessage = async (body: Record<string, any>, { onData, onCompleted, onError }: {
 | 
						|
  onData: IOnData
 | 
						|
  onCompleted: IOnCompleted
 | 
						|
  onError: IOnError
 | 
						|
}, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return ssePost(getUrl('completion-messages', isInstalledApp, installedAppId), {
 | 
						|
    body: {
 | 
						|
      ...body,
 | 
						|
      response_mode: 'streaming',
 | 
						|
    },
 | 
						|
  }, { onData, onCompleted, isPublicAPI: !isInstalledApp, onError })
 | 
						|
}
 | 
						|
 | 
						|
export const fetchAppInfo = async () => {
 | 
						|
  return get('/site')
 | 
						|
}
 | 
						|
 | 
						|
export const fetchConversations = async (isInstalledApp: boolean, installedAppId = '', last_id?: string, pinned?: boolean, limit?: number) => {
 | 
						|
  return getAction('get', isInstalledApp)(getUrl('conversations', isInstalledApp, installedAppId), { params: { ...{ limit: limit || 20 }, ...(last_id ? { last_id } : {}), ...(pinned !== undefined ? { pinned } : {}) } })
 | 
						|
}
 | 
						|
 | 
						|
export const pinConversation = async (isInstalledApp: boolean, installedAppId = '', id: string) => {
 | 
						|
  return getAction('patch', isInstalledApp)(getUrl(`conversations/${id}/pin`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const unpinConversation = async (isInstalledApp: boolean, installedAppId = '', id: string) => {
 | 
						|
  return getAction('patch', isInstalledApp)(getUrl(`conversations/${id}/unpin`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const delConversation = async (isInstalledApp: boolean, installedAppId = '', id: string) => {
 | 
						|
  return getAction('del', isInstalledApp)(getUrl(`conversations/${id}`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const renameConversation = async (isInstalledApp: boolean, installedAppId = '', id: string, name: string) => {
 | 
						|
  return getAction('post', isInstalledApp)(getUrl(`conversations/${id}/name`, isInstalledApp, installedAppId), { body: { name } })
 | 
						|
}
 | 
						|
 | 
						|
export const fetchChatList = async (conversationId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return getAction('get', isInstalledApp)(getUrl('messages', isInstalledApp, installedAppId), { params: { conversation_id: conversationId, limit: 20, last_id: '' } })
 | 
						|
}
 | 
						|
 | 
						|
// Abandoned API interface
 | 
						|
// export const fetchAppVariables = async () => {
 | 
						|
//   return get(`variables`)
 | 
						|
// }
 | 
						|
 | 
						|
// init value. wait for server update
 | 
						|
export const fetchAppParams = async (isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('get', isInstalledApp))(getUrl('parameters', isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const updateFeedback = async ({ url, body }: { url: string; body: Feedbacktype }, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('post', isInstalledApp))(getUrl(url, isInstalledApp, installedAppId), { body })
 | 
						|
}
 | 
						|
 | 
						|
export const fetchMoreLikeThis = async (messageId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('get', isInstalledApp))(getUrl(`/messages/${messageId}/more-like-this`, isInstalledApp, installedAppId), {
 | 
						|
    params: {
 | 
						|
      response_mode: 'blocking',
 | 
						|
    },
 | 
						|
  })
 | 
						|
}
 | 
						|
 | 
						|
export const saveMessage = (messageId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('post', isInstalledApp))(getUrl('/saved-messages', isInstalledApp, installedAppId), { body: { message_id: messageId } })
 | 
						|
}
 | 
						|
 | 
						|
export const fetchSavedMessage = async (isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('get', isInstalledApp))(getUrl('/saved-messages', isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const removeMessage = (messageId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('del', isInstalledApp))(getUrl(`/saved-messages/${messageId}`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const fetchSuggestedQuestions = (messageId: string, isInstalledApp: boolean, installedAppId = '') => {
 | 
						|
  return (getAction('get', isInstalledApp))(getUrl(`/messages/${messageId}/suggested-questions`, isInstalledApp, installedAppId))
 | 
						|
}
 | 
						|
 | 
						|
export const audioToText = (url: string, isPublicAPI: boolean, body: FormData) => {
 | 
						|
  return (getAction('post', !isPublicAPI))(url, { body }, { bodyStringify: false, deleteContentType: true }) as Promise<{ text: string }>
 | 
						|
}
 | 
						|
 | 
						|
export const fetchAccessToken = async (appCode: string) => {
 | 
						|
  const headers = new Headers()
 | 
						|
  headers.append('X-App-Code', appCode)
 | 
						|
  return get('/passport', { headers }) as Promise<{ access_token: string }>
 | 
						|
}
 |