pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 1 | import { Component } from 'react'; |
| 2 | import Styles from '../../styles/rsmv/rsmv.module.css' |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 3 | import HCaptcha from 'react-hcaptcha'; |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 4 | import Axios from 'axios'; |
| 5 | import Router from 'next/router'; |
| 6 | import React from 'react'; |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 7 | import Header from '../../Components/Header' |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 8 | |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 9 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../../Components/Panels'; |
| 10 | import { List, ListItem, Code } from '../../Components/Texttools'; |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 11 | class RSMV extends Component { |
| 12 | |
| 13 | constructor(props) { |
| 14 | super(props); |
| 15 | this.v = false; |
| 16 | this.state = { |
pineafan | 07dd861 | 2021-09-04 10:25:32 +0100 | [diff] [blame] | 17 | captchaComplete: false, |
| 18 | clicked: false |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 19 | } |
| 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) { |
pineafan | 9793cf7 | 2021-09-04 10:19:38 +0100 | [diff] [blame] | 25 | this.setState({ |
| 26 | captchaComplete: true |
| 27 | }) |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 28 | return cls.v = true; |
| 29 | } else { |
| 30 | return; |
| 31 | } |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 32 | } |
| 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) { |
pineafan | 07dd861 | 2021-09-04 10:25:32 +0100 | [diff] [blame] | 45 | if ( cls.state.clicked ) { |
| 46 | return |
| 47 | } |
| 48 | cls.setState({ |
| 49 | clicked: true |
| 50 | }) |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 51 | 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 Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 67 | <Header |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame] | 68 | 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 | } |
pineafan | 4f9cf4d | 2021-10-24 09:02:30 +0100 | [diff] [blame] | 75 | nameOverwrite="Verify" |
pineafan | 4627016 | 2022-02-13 12:06:17 +0000 | [diff] [blame^] | 76 | subtext={`${this.props.memberCount} members`} |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 77 | gradient={["F27878", "D96B6B"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 78 | wave="web/waves/header/rsm" |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 79 | buttons={[]} |
| 80 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 81 | <p id="start" /> |
| 82 | <AutoLayout> |
| 83 | <Panel> |
| 84 | <Text>Complete the check below to join {this.props.guild_name}</Text> |
pineafan | 4627016 | 2022-02-13 12:06:17 +0000 | [diff] [blame^] | 85 | <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> |
pineafan | 9793cf7 | 2021-09-04 10:19:38 +0100 | [diff] [blame] | 93 | <button type="button" className={Styles.button + " " + (this.state.captchaComplete ? Styles.buttonComplete : null)} onClick={(success) => this.submitForm(this)}>Proceed</button> |
pineafan | 4627016 | 2022-02-13 12:06:17 +0000 | [diff] [blame^] | 94 | <List colour="F27878"> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 95 | <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> |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 102 | </> |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | export default RSMV; |
| 107 | export async function getServerSideProps(ctx) { |
| 108 | if(!ctx.query.code) { |
| 109 | return { |
| 110 | redirect: { |
pineafan | bb7efa4 | 2021-09-04 10:05:06 +0100 | [diff] [blame] | 111 | destination: '/rsmv/failure', |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 112 | 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: { |
pineafan | bb7efa4 | 2021-09-04 10:05:06 +0100 | [diff] [blame] | 121 | destination: '/rsmv/failure', |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 122 | permanent: true |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | return { |
| 127 | props: { |
pineafan | 4f9cf4d | 2021-10-24 09:02:30 +0100 | [diff] [blame] | 128 | 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, |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 135 | headers: headers, |
| 136 | code: ctx.query.code |
| 137 | } |
| 138 | } |
| 139 | } |