mirror of
https://github.com/langgenius/dify.git
synced 2025-11-24 17:05:14 +00:00
Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: Stream <Stream_2@qq.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do> Co-authored-by: Harry <xh001x@hotmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: WTW0313 <twwu@dify.ai> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
111 lines
3.5 KiB
TypeScript
111 lines
3.5 KiB
TypeScript
'use client'
|
|
import type { FC, PropsWithChildren } from 'react'
|
|
import { useEffect, useState } from 'react'
|
|
import { useCallback } from 'react'
|
|
import { useWebAppStore } from '@/context/web-app-context'
|
|
import { useRouter, useSearchParams } from 'next/navigation'
|
|
import AppUnavailable from '@/app/components/base/app-unavailable'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { webAppLoginStatus, webAppLogout } from '@/service/webapp-auth'
|
|
import { fetchAccessToken } from '@/service/share'
|
|
import Loading from '@/app/components/base/loading'
|
|
import { setWebAppAccessToken, setWebAppPassport } from '@/service/webapp-auth'
|
|
|
|
const Splash: FC<PropsWithChildren> = ({ children }) => {
|
|
const { t } = useTranslation()
|
|
const shareCode = useWebAppStore(s => s.shareCode)
|
|
const webAppAccessMode = useWebAppStore(s => s.webAppAccessMode)
|
|
const embeddedUserId = useWebAppStore(s => s.embeddedUserId)
|
|
const searchParams = useSearchParams()
|
|
const router = useRouter()
|
|
const redirectUrl = searchParams.get('redirect_url')
|
|
const message = searchParams.get('message')
|
|
const code = searchParams.get('code')
|
|
const tokenFromUrl = searchParams.get('web_sso_token')
|
|
const getSigninUrl = useCallback(() => {
|
|
const params = new URLSearchParams(searchParams)
|
|
params.delete('message')
|
|
params.delete('code')
|
|
return `/webapp-signin?${params.toString()}`
|
|
}, [searchParams])
|
|
|
|
const backToHome = useCallback(async () => {
|
|
await webAppLogout(shareCode!)
|
|
const url = getSigninUrl()
|
|
router.replace(url)
|
|
}, [getSigninUrl, router, webAppLogout, shareCode])
|
|
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
useEffect(() => {
|
|
if (message) {
|
|
setIsLoading(false)
|
|
return
|
|
}
|
|
|
|
if(tokenFromUrl)
|
|
setWebAppAccessToken(tokenFromUrl)
|
|
|
|
const redirectOrFinish = () => {
|
|
if (redirectUrl)
|
|
router.replace(decodeURIComponent(redirectUrl))
|
|
else
|
|
setIsLoading(false)
|
|
}
|
|
|
|
const proceedToAuth = () => {
|
|
setIsLoading(false)
|
|
}
|
|
|
|
(async () => {
|
|
// if access mode is public, user login is always true, but the app login(passport) may be expired
|
|
const { userLoggedIn, appLoggedIn } = await webAppLoginStatus(shareCode!)
|
|
if (userLoggedIn && appLoggedIn) {
|
|
redirectOrFinish()
|
|
}
|
|
else if (!userLoggedIn && !appLoggedIn) {
|
|
proceedToAuth()
|
|
}
|
|
else if (!userLoggedIn && appLoggedIn) {
|
|
redirectOrFinish()
|
|
}
|
|
else if (userLoggedIn && !appLoggedIn) {
|
|
try {
|
|
const { access_token } = await fetchAccessToken({
|
|
appCode: shareCode!,
|
|
userId: embeddedUserId || undefined,
|
|
})
|
|
setWebAppPassport(shareCode!, access_token)
|
|
redirectOrFinish()
|
|
}
|
|
catch {
|
|
await webAppLogout(shareCode!)
|
|
proceedToAuth()
|
|
}
|
|
}
|
|
})()
|
|
}, [
|
|
shareCode,
|
|
redirectUrl,
|
|
router,
|
|
message,
|
|
webAppAccessMode,
|
|
tokenFromUrl,
|
|
embeddedUserId])
|
|
|
|
if (message) {
|
|
return <div className='flex h-full flex-col items-center justify-center gap-y-4'>
|
|
<AppUnavailable className='h-auto w-auto' code={code || t('share.common.appUnavailable')} unknownReason={message} />
|
|
<span className='system-sm-regular cursor-pointer text-text-tertiary' onClick={backToHome}>{code === '403' ? t('common.userProfile.logout') : t('share.login.backToHome')}</span>
|
|
</div>
|
|
}
|
|
|
|
if (isLoading) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<Loading />
|
|
</div>
|
|
}
|
|
return <>{children}</>
|
|
}
|
|
|
|
export default Splash
|