blob: 12f4dea418df948af45d97ed4809c6d37f492766 [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react';
2import Styles from '../../styles/rsmv/rsmv.module.css'
Samuel Shuert835c71f2021-09-03 15:49:26 -05003import HCaptcha from 'react-hcaptcha';
pineafanc540da92021-09-03 20:33:36 +01004import Axios from 'axios';
5import Router from 'next/router';
6import React from 'react';
Samuel Shuert835c71f2021-09-03 15:49:26 -05007import Header from '../../Components/Header'
pineafanc540da92021-09-03 20:33:36 +01008
pineafane0283a82022-02-13 10:05:56 +00009import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../../Components/Panels';
10import { List, ListItem, Code } from '../../Components/Texttools';
pineafanc540da92021-09-03 20:33:36 +010011class RSMV extends Component {
12
13 constructor(props) {
14 super(props);
15 this.v = false;
16 this.state = {
pineafan07dd8612021-09-04 10:25:32 +010017 captchaComplete: false,
18 clicked: false
pineafanc540da92021-09-03 20:33:36 +010019 }
20 }
21
22 async handleVerificationSuccess(cls, token) {
23 const chk = await Axios.put('/api/rsmv/verifyTkn', { tkn: token.toString() })
24 if(chk.data.success == true) {
pineafan9793cf72021-09-04 10:19:38 +010025 this.setState({
26 captchaComplete: true
27 })
pineafanc540da92021-09-03 20:33:36 +010028 return cls.v = true;
29 } else {
30 return;
31 }
pineafanc540da92021-09-03 20:33:36 +010032 }
33
34 async componentDidMount() {
35 this.setState({
36 cores: window.navigator.hardwareConcurrency,
37 userAgent: window.navigator.userAgent,
38 platform: window.navigator.platform,
39 language: window.navigator.language,
40 memory: window.navigator.deviceMemory,
41 })
42 }
43
44 async submitForm(cls) {
pineafan07dd8612021-09-04 10:25:32 +010045 if ( cls.state.clicked ) {
46 return
47 }
48 cls.setState({
49 clicked: true
50 })
pineafanc540da92021-09-03 20:33:36 +010051 if (!cls.v) {
52 return Router.push('/rsmv/failure','/rsmv')
53 }
54 let code = await Axios.post('/api/rsmv/complete', {
55 uid:cls.props.uID,
56 rid:cls.props.rID,
57 gid:cls.props.gID,
58 code:cls.props.code
59 });
60 console.log(code.status)
61 if (code.status === 200 ) return Router.push('/rsmv/success','/rsmv')
62 else return Router.push('/rsmv/failure','/rsmv')
63 }
64
65 render() {
66 return <>
Samuel Shuert835c71f2021-09-03 15:49:26 -050067 <Header
pineafanf97734b2021-11-23 21:11:00 +000068 name={
69 <>
70 <img alt="Server icon" style={{borderRadius: "50%", height: "64px", width: "auto"}} src={this.props.guild_icon_url} />
71 <br />
72 {this.props.guild_name}
73 </>
74 }
pineafan4f9cf4d2021-10-24 09:02:30 +010075 nameOverwrite="Verify"
pineafan46270162022-02-13 12:06:17 +000076 subtext={`${this.props.memberCount} members`}
Samuel Shuert835c71f2021-09-03 15:49:26 -050077 gradient={["F27878", "D96B6B"]}
pineafana841c762021-11-14 21:21:04 +000078 wave="web/waves/header/rsm"
Samuel Shuert835c71f2021-09-03 15:49:26 -050079 buttons={[]}
80 />
pineafane0283a82022-02-13 10:05:56 +000081 <p id="start" />
82 <AutoLayout>
83 <Panel>
84 <Text>Complete the check below to join {this.props.guild_name}</Text>
pineafan46270162022-02-13 12:06:17 +000085 <div style={{height: "125px"}}>
86 <HCaptcha
87 id="Captchas mitigate problems"
88 sitekey="85074411-fa13-4d9b-b901-53095c6d1fc6"
89 onVerify={token => this.handleVerificationSuccess(this, token)}
90 theme={this.theme ? "light" : "dark"}
91 />
92 </div>
pineafan9793cf72021-09-04 10:19:38 +010093 <button type="button" className={Styles.button + " " + (this.state.captchaComplete ? Styles.buttonComplete : null)} onClick={(success) => this.submitForm(this)}>Proceed</button>
pineafan46270162022-02-13 12:06:17 +000094 <List colour="F27878">
pineafane0283a82022-02-13 10:05:56 +000095 <ListItem>This is an automatic check performed by RSM.</ListItem>
96 <ListItem>By clicking Proceed, you will be given the <code>{this.props.role_name}</code> role in <code>{this.props.guild_name}</code>.</ListItem>
97 <ListItem>For the full list of data stored by RSM, please check <a href="https://clicksminuteper.github.io/policies/rsm#verification">Here</a></ListItem>
98 </List>
99 <Text>You can add RSM to your server by inviting it <a href="https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands">here</a>.</Text>
100 </Panel>
101 </AutoLayout>
pineafanc540da92021-09-03 20:33:36 +0100102 </>
103 }
104}
105
106export default RSMV;
107export async function getServerSideProps(ctx) {
108 if(!ctx.query.code) {
109 return {
110 redirect: {
pineafanbb7efa42021-09-04 10:05:06 +0100111 destination: '/rsmv/failure',
pineafanc540da92021-09-03 20:33:36 +0100112 permanent: true
113 }
114 }
115 }
116 let code = await Axios.post('http://localhost:3000/api/rsmv/validate', {code:ctx.query.code});
117 let headers = ctx.req.headers;
118 if (code.status != 200 ) {
119 return {
120 redirect: {
pineafanbb7efa42021-09-04 10:05:06 +0100121 destination: '/rsmv/failure',
pineafanc540da92021-09-03 20:33:36 +0100122 permanent: true
123 }
124 }
125 }
126 return {
127 props: {
pineafan4f9cf4d2021-10-24 09:02:30 +0100128 uID: code.data.user,
129 rID: code.data.role,
130 role_name: code.data.role_name,
131 gID: code.data.guild,
132 guild_name: code.data.guild_name,
133 guild_icon_url: code.data.guild_icon_url,
134 memberCount: code.data.guild_size,
pineafanc540da92021-09-03 20:33:36 +0100135 headers: headers,
136 code: ctx.query.code
137 }
138 }
139}