mirror of
https://github.com/langgenius/dify.git
synced 2026-02-15 15:34:26 +08:00
Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Signed-off-by: kenwoodjw <blackxin55+@gmail.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: Yunlu Wen <wylswz@163.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: GareArc <chen4851@purdue.edu> Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: Davide Delbianco <davide.delbianco@outlook.com> Co-authored-by: minglu7 <1347866672@qq.com> Co-authored-by: Ponder <ruan.lj@foxmail.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Guangdong Liu <liugddx@gmail.com> Co-authored-by: Eric Guo <eric.guocz@gmail.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: XlKsyt <caixuesen@outlook.com> Co-authored-by: Dhruv Gorasiya <80987415+DhruvGorasiya@users.noreply.github.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: GuanMu <ballmanjq@gmail.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tonlo <123lzs123@gmail.com> Co-authored-by: Yusuke Yamada <yamachu.dev@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Ademílson Tonato <ademilsonft@outlook.com> Co-authored-by: znn <jubinkumarsoni@gmail.com> Co-authored-by: yangzheli <43645580+yangzheli@users.noreply.github.com>
109 lines
3.4 KiB
TypeScript
109 lines
3.4 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 { AccessMode } from '@/models/access-control'
|
|
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 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 needCheckIsLogin = webAppAccessMode !== AccessMode.PUBLIC
|
|
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 () => {
|
|
const { userLoggedIn, appLoggedIn } = await webAppLoginStatus(needCheckIsLogin, 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! })
|
|
setWebAppPassport(shareCode!, access_token)
|
|
redirectOrFinish()
|
|
}
|
|
catch (error) {
|
|
await webAppLogout(shareCode!)
|
|
proceedToAuth()
|
|
}
|
|
}
|
|
})()
|
|
}, [
|
|
shareCode,
|
|
redirectUrl,
|
|
router,
|
|
message,
|
|
webAppAccessMode,
|
|
needCheckIsLogin,
|
|
tokenFromUrl])
|
|
|
|
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
|