mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
204 lines
5.9 KiB
TypeScript
204 lines
5.9 KiB
TypeScript
import { NextPage } from 'next'
|
|
import dynamic from 'next/dynamic'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
|
|
import { Bot, CsrfContext, ResponseProps, Theme, User } from '@types'
|
|
import { get } from '@utils/Query'
|
|
import { checkBotFlag, makeBotURL, parseCookie } from '@utils/Tools'
|
|
|
|
import { ParsedUrlQuery } from 'querystring'
|
|
|
|
import Captcha from '@components/Captcha'
|
|
import SetNotification, { getFCMToken } from '@components/FCM'
|
|
import { KoreanbotsEndPoints } from '@utils/Constants'
|
|
import { getToken } from '@utils/Csrf'
|
|
import Day from '@utils/Day'
|
|
import Fetch from '@utils/Fetch'
|
|
import { getJosaPicker } from 'josa'
|
|
import { NextSeo } from 'next-seo'
|
|
import NotFound from 'pages/404'
|
|
import { useEffect, useRef, useState } from 'react'
|
|
|
|
const Container = dynamic(() => import('@components/Container'))
|
|
const DiscordAvatar = dynamic(() => import('@components/DiscordAvatar'))
|
|
const Button = dynamic(() => import('@components/Button'))
|
|
const Tag = dynamic(() => import('@components/Tag'))
|
|
const Segment = dynamic(() => import('@components/Segment'))
|
|
const Advertisement = dynamic(() => import('@components/Advertisement'))
|
|
const Login = dynamic(() => import('@components/Login'))
|
|
const Message = dynamic(() => import('@components/Message'))
|
|
|
|
const VoteBot: NextPage<VoteBotProps> = ({ data, user, theme, csrfToken }) => {
|
|
const [votingStatus, setVotingStatus] = useState(0)
|
|
const [result, setResult] =
|
|
useState<ResponseProps<{ retryAfter?: number; notificationSet: boolean }>>(null)
|
|
const fcmTokenRef = useRef<string | null>('')
|
|
|
|
useEffect(() => {
|
|
if ('Notification' in window && Notification.permission === 'granted') {
|
|
getFCMToken().then((token) => {
|
|
fcmTokenRef.current = token
|
|
})
|
|
}
|
|
}, [])
|
|
|
|
const router = useRouter()
|
|
if (!data?.id) return <NotFound />
|
|
if (!user)
|
|
return (
|
|
<Login>
|
|
<NextSeo
|
|
title={data.name}
|
|
description={`한국 디스코드 리스트에서 ${data.name}에 투표하세요.`}
|
|
openGraph={{
|
|
images: [
|
|
{
|
|
url: KoreanbotsEndPoints.CDN.avatar(data.id, { format: 'png', size: 256 }),
|
|
width: 256,
|
|
height: 256,
|
|
alt: 'Bot Avatar',
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
</Login>
|
|
)
|
|
|
|
if (
|
|
(checkBotFlag(data.flags, 'trusted') || checkBotFlag(data.flags, 'partnered')) &&
|
|
data.vanity &&
|
|
data.vanity !== router.query.id
|
|
)
|
|
router.push(`/bots/${data.vanity}/vote?csrfToken=${csrfToken}`)
|
|
return (
|
|
<Container paddingTop className='py-10'>
|
|
<NextSeo
|
|
title={data.name}
|
|
description={`한국 디스코드 리스트에서 ${data.name}에 투표하세요.`}
|
|
openGraph={{
|
|
images: [
|
|
{
|
|
url: KoreanbotsEndPoints.CDN.avatar(data.id, { format: 'png', size: 256 }),
|
|
width: 256,
|
|
height: 256,
|
|
alt: 'Bot Avatar',
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
{data.state === 'blocked' ? (
|
|
<div className='pb-40'>
|
|
<Message type='error'>
|
|
<h2 className='text-lg font-extrabold'>해당 봇은 관리자에 의해 삭제되었습니다.</h2>
|
|
</Message>
|
|
</div>
|
|
) : (
|
|
<>
|
|
<Advertisement />
|
|
<Link href={makeBotURL(data)} className='text-blue-500 hover:opacity-80'>
|
|
<i className='fas fa-arrow-left mb-3 mt-3' /> <strong>{data.name}</strong>
|
|
{getJosaPicker('로')(data.name)} 돌아가기
|
|
</Link>
|
|
<Segment className='mb-16 py-8'>
|
|
<div className='text-center'>
|
|
<DiscordAvatar
|
|
userID={data.id}
|
|
hash={data.avatar}
|
|
className='mx-auto mb-4 h-52 w-52 rounded-full bg-white'
|
|
/>
|
|
<Tag
|
|
text={
|
|
<span>
|
|
<i className='fas fa-heart text-red-600' /> {data.votes}
|
|
</span>
|
|
}
|
|
dark
|
|
/>
|
|
<h1 className='mt-3 text-3xl font-bold'>{data.name}</h1>
|
|
<h4 className='text-md mt-1'>12시간마다 다시 투표하실 수 있습니다.</h4>
|
|
<div className='mt-2 inline-block'>
|
|
{votingStatus === 0 ? (
|
|
<Button onClick={() => setVotingStatus(1)}>
|
|
<>
|
|
<i className='far fa-heart text-red-600' /> 하트 추가
|
|
</>
|
|
</Button>
|
|
) : votingStatus === 1 ? (
|
|
<Captcha
|
|
dark={theme === 'dark'}
|
|
onVerify={async (key) => {
|
|
const res = await Fetch<{ retryAfter: number; notificationSet: boolean }>(
|
|
`/bots/${data.id}/vote`,
|
|
{
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
_csrf: csrfToken,
|
|
_captcha: key,
|
|
firebaseToken: fcmTokenRef.current,
|
|
}),
|
|
}
|
|
)
|
|
setResult(res)
|
|
setVotingStatus(2)
|
|
}}
|
|
/>
|
|
) : result.code === 200 ? (
|
|
<>
|
|
<h2 className='text-2xl font-bold'>해당 봇에 투표했습니다!</h2>
|
|
<SetNotification id={data.id} notificationSet={result.data.notificationSet} />
|
|
</>
|
|
) : result.code === 429 ? (
|
|
<>
|
|
<h2 className='text-2xl font-bold'>이미 해당 봇에 투표하였습니다.</h2>
|
|
<h4 className='text-md mt-1'>
|
|
{Day(+new Date() + result.data?.retryAfter).fromNow()} 다시 투표하실 수
|
|
있습니다.
|
|
</h4>
|
|
<SetNotification id={data.id} notificationSet={result.data.notificationSet} />
|
|
</>
|
|
) : (
|
|
<p>{result.message}</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Segment>
|
|
<Advertisement />
|
|
</>
|
|
)}
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
export const getServerSideProps = async (ctx: Context) => {
|
|
const parsed = parseCookie(ctx.req)
|
|
const data = await get.bot.load(ctx.query.id)
|
|
const user = await get.Authorization(parsed?.token)
|
|
|
|
return {
|
|
props: {
|
|
csrfToken: getToken(ctx.req, ctx.res),
|
|
data,
|
|
user: await get.user.load(user || ''),
|
|
},
|
|
}
|
|
}
|
|
|
|
interface VoteBotProps {
|
|
csrfToken: string
|
|
vote: boolean
|
|
data: Bot
|
|
user: User
|
|
theme: Theme
|
|
}
|
|
|
|
interface Context extends CsrfContext {
|
|
query: URLQuery
|
|
}
|
|
|
|
interface URLQuery extends ParsedUrlQuery {
|
|
id: string
|
|
}
|
|
|
|
export default VoteBot
|