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 | |
| 9 | class RSMV extends Component { |
| 10 | |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | this.v = false; |
| 14 | this.state = { |
pineafan | 9793cf7 | 2021-09-04 10:19:38 +0100 | [diff] [blame^] | 15 | captchaComplete: false |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 16 | } |
| 17 | } |
| 18 | |
| 19 | async handleVerificationSuccess(cls, token) { |
| 20 | const chk = await Axios.put('/api/rsmv/verifyTkn', { tkn: token.toString() }) |
| 21 | if(chk.data.success == true) { |
pineafan | 9793cf7 | 2021-09-04 10:19:38 +0100 | [diff] [blame^] | 22 | this.setState({ |
| 23 | captchaComplete: true |
| 24 | }) |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 25 | return cls.v = true; |
| 26 | } else { |
| 27 | return; |
| 28 | } |
| 29 | |
| 30 | } |
| 31 | |
| 32 | async componentDidMount() { |
| 33 | this.setState({ |
| 34 | cores: window.navigator.hardwareConcurrency, |
| 35 | userAgent: window.navigator.userAgent, |
| 36 | platform: window.navigator.platform, |
| 37 | language: window.navigator.language, |
| 38 | memory: window.navigator.deviceMemory, |
| 39 | }) |
| 40 | } |
| 41 | |
| 42 | async submitForm(cls) { |
| 43 | if (!cls.v) { |
| 44 | return Router.push('/rsmv/failure','/rsmv') |
| 45 | } |
| 46 | let code = await Axios.post('/api/rsmv/complete', { |
| 47 | uid:cls.props.uID, |
| 48 | rid:cls.props.rID, |
| 49 | gid:cls.props.gID, |
| 50 | code:cls.props.code |
| 51 | }); |
| 52 | console.log(code.status) |
| 53 | if (code.status === 200 ) return Router.push('/rsmv/success','/rsmv') |
| 54 | else return Router.push('/rsmv/failure','/rsmv') |
| 55 | } |
| 56 | |
| 57 | render() { |
| 58 | return <> |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 59 | <Header |
pineafan | ab7f5ac | 2021-09-04 09:56:38 +0100 | [diff] [blame] | 60 | name={<><img alt="Server icon" style={{borderRadius: "50%", height: "128px", width: "auto"}} src={this.props.guild_icon_url} /><br />{this.props.guild_name}</>} |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 61 | subtext={` ${this.props.memberCount} members`} |
| 62 | gradient={["F27878", "D96B6B"]} |
| 63 | wave="RM" |
| 64 | buttons={[]} |
| 65 | /> |
| 66 | <div id="start"> |
| 67 | <div className={Styles.center}> |
| 68 | <p className={Styles.text}>Complete the check below to join {this.props.guild_name}</p> |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 69 | <HCaptcha |
| 70 | id="Captchas mitigate problems" |
| 71 | sitekey="85074411-fa13-4d9b-b901-53095c6d1fc6" |
| 72 | onVerify={token => this.handleVerificationSuccess(this, token)} |
| 73 | /> |
pineafan | 9793cf7 | 2021-09-04 10:19:38 +0100 | [diff] [blame^] | 74 | <button type="button" className={Styles.button + " " + (this.state.captchaComplete ? Styles.buttonComplete : null)} onClick={(success) => this.submitForm(this)}>Proceed</button> |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 75 | <p className={Styles.text}> |
| 76 | This is an automatic check performed by RSM. |
| 77 | By clicking Proceed, you will be given the <code>{this.props.role_name}</code> role in <code>{this.props.guild_name}</code>. |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 78 | </p> |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 79 | <br /> |
| 80 | <p>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>.</p> |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 81 | </div> |
| 82 | </div> |
| 83 | </> |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | export default RSMV; |
| 88 | export async function getServerSideProps(ctx) { |
| 89 | if(!ctx.query.code) { |
| 90 | return { |
| 91 | redirect: { |
pineafan | bb7efa4 | 2021-09-04 10:05:06 +0100 | [diff] [blame] | 92 | destination: '/rsmv/failure', |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 93 | permanent: true |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 | let code = await Axios.post('http://localhost:3000/api/rsmv/validate', {code:ctx.query.code}); |
| 98 | let headers = ctx.req.headers; |
| 99 | if (code.status != 200 ) { |
| 100 | return { |
| 101 | redirect: { |
pineafan | bb7efa4 | 2021-09-04 10:05:06 +0100 | [diff] [blame] | 102 | destination: '/rsmv/failure', |
pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 103 | permanent: true |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | return { |
| 108 | props: { |
| 109 | uID:code.data.user, |
| 110 | rID:code.data.role, |
| 111 | role_name:code.data.role_name, |
| 112 | gID:code.data.guild, |
| 113 | guild_name:code.data.guild_name, |
| 114 | guild_icon_url:code.data.guild_icon_url, |
| 115 | memberCount:code.data.guild_size, |
| 116 | headers: headers, |
| 117 | code: ctx.query.code |
| 118 | } |
| 119 | } |
| 120 | } |