blob: 5057b2a8385d1567235c16d31cde17b726c52c63 [file] [log] [blame]
pineafanfd93e6e2022-05-06 20:30:09 +01001import HCaptcha from 'react-hcaptcha';
2import Axios from 'axios';
3import Router from 'next/router';
4import React from 'react';
5import Header from '../../../Components/Header'
6import { useReward } from 'react-rewards';
pineafan3b0852d2022-05-06 20:39:59 +01007import { Card, CardRow } from '../../../Components/Card';
pineafanfd93e6e2022-05-06 20:30:09 +01008
9import { AutoLayout, Panel, Title, Text, Divider } from '../../../Components/Panels';
10import { List, ListItem } from '../../../Components/Texttools';
11import { useColorMode } from 'theme-ui';
12
13function Verify(props) {
14 const [clicked, setClicked] = React.useState(false);
15 const [theme, setTheme] = useColorMode()
16
pineafanfd93e6e2022-05-06 20:30:09 +010017 const { reward: reward, isAnimating: isAnimating } = useReward('confetti', 'confetti', {
18 elementSize: 10,
19 elementCount: 150,
20 startVelocity: 35,
21 lifetime: 300,
22 decay: 0.94,
23 spread: 170,
24 position: "absolute",
25 colors: ["#68D49E"]
26 });
27
28 async function submitForm(tkn) {
29 if ( clicked ) {
pineafanaa9c4fd2022-06-10 19:58:10 +010030 Router.push('/nucleus/verify/alreadyVerified', '/nucleus/verify/success');
pineafanfd93e6e2022-05-06 20:30:09 +010031 }
32 setClicked(true);
33 reward();
34 let code = await Axios.post('/api/nucleus/verify/complete', {
35 code: props.code,
36 tkn: tkn
37 });
38 setTimeout(() => {
39 if (code.data.success === true ) return Router.push('/nucleus/verify/success','/nucleus/verify')
40 else return Router.push('/nucleus/verify/failure','/nucleus/verify')
41 }, 2500);
42 }
43
44 return <>
45 <Header
46 name={props.guild_name}
47 customImage={props.guild_icon_url}
48 roundImage={true}
49 subtext={`${props.memberCount} members`}
50 gradient={["F27878", "D96B6B"]}
51 wave="web/waves/header/nucleus"
52 buttons={[]}
53 />
54 <AutoLayout>
55 <Panel>
56 <Title>Verify</Title>
57 <Divider name="commands"/>
58 <Text>Complete the check below to join {props.guild_name}</Text>
59 <div style={{height: "125px"}}>
60 <HCaptcha
61 id="Captchas mitigate problems"
62 sitekey="85074411-fa13-4d9b-b901-53095c6d1fc6"
63 onVerify={tkn => submitForm(tkn)}
64 theme="dark"
65 />
66 </div>
67 <List colour="F27878">
68 <ListItem>This is an automatic check performed by Nucleus.</ListItem>
69 <ListItem>By clicking Proceed, you will be given the <code>{props.role_name}</code> role in <code>{props.guild_name}</code>.</ListItem>
pineafan3b0852d2022-05-06 20:39:59 +010070 <ListItem>For the full list of data stored by Nucleus, please check <a href="https://clicksminuteper.github.io/policies/nucleus#verification">here</a></ListItem>
pineafanfd93e6e2022-05-06 20:30:09 +010071 </List>
72 <div id="confetti" />
73 </Panel>
pineafanfd93e6e2022-05-06 20:30:09 +010074 </AutoLayout>
75 </>
76}
77
78export default Verify;
79export async function getServerSideProps(ctx) {
80 if(!ctx.query.code) {
81 return {
82 redirect: {
83 destination: '/nucleus/verify/about',
84 permanent: true
85 }
86 }
87 }
88 let code;
89 try {
90 await Axios.patch(`http://localhost:10000/verify/${ctx.query.code}`);
pineafan83152e22022-06-13 17:52:55 +010091 code = await Axios.get(`http://localhost:10000/verify/${ctx.query.code}`, {code: ctx.query.code});
pineafanfd93e6e2022-05-06 20:30:09 +010092 } catch (e) {
93 return {
94 redirect: {
95 destination: '/nucleus/verify/failure',
96 permanent: true
97 }
98 }
99 }
100 let headers = ctx.req.headers;
101 return {
102 props: {
103 uID: code.data.uID,
104 role_name: code.data.rName,
105 gID: code.data.gID,
106 guild_name: code.data.gName,
107 guild_icon_url: code.data.gIcon,
108 memberCount: code.data.mCount,
109 headers: headers,
110 code: ctx.query.code
111 }
112 }
113}