mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
252 lines
7.9 KiB
Vue
252 lines
7.9 KiB
Vue
<template>
|
||
<div class="ceremony">
|
||
<h1 class="title is-size-1 is-size-2-mobile is-spaced">
|
||
Hello, <span>@{{ userHandle }}</span>
|
||
</h1>
|
||
<h2 class="subtitle">
|
||
What way do you want to contribute to the Tornado.cash Trusted Setup Ceremony?
|
||
</h2>
|
||
<fieldset :disabled="status.type === 'is-success'">
|
||
<div class="columns is-centered">
|
||
<div class="column is-one-third">
|
||
<button
|
||
:class="{ 'is-hovered': contributionType === 'anonymous' }"
|
||
@click="onAnonymousHandler"
|
||
class="box box-anonymous"
|
||
>
|
||
<div class="title is-5">Anonymously</div>
|
||
<Cloak />
|
||
</button>
|
||
</div>
|
||
<div class="column is-one-third">
|
||
<div :class="{ 'is-hovered': isLoggedIn }" class="box">
|
||
<div class="title is-5">Using a social account</div>
|
||
<Form />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
|
||
<div v-show="contributionHash" class="status">
|
||
<div class="label">Your contribution hash (Blake2b)</div>
|
||
<b-field position="is-centered" class="has-addons contribution-hash">
|
||
<b-input
|
||
@click.native="copyContributionHash"
|
||
:value="contributionHash"
|
||
icon="copy"
|
||
readonly
|
||
></b-input>
|
||
</b-field>
|
||
</div>
|
||
<div v-show="status.type !== ''" class="status">
|
||
<div :class="status.type" class="status-message">{{ status.msg }}</div>
|
||
<div
|
||
v-show="status.type === 'is-success' && contributionType !== 'anonymous'"
|
||
class="status-message is-success"
|
||
>
|
||
Now you can post attestation from your twitter account.
|
||
<div class="buttons is-centered">
|
||
<b-button @click="makeTweet" type="is-primary" tag="a" target="_blank" outlined>
|
||
Post attestation
|
||
</b-button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div v-show="authorizeLink" class="status">
|
||
You still can authorize your contribution by following this
|
||
<a :href="authorizeLink" class="has-text-primary">link</a>.
|
||
</div>
|
||
|
||
<div class="buttons is-centered">
|
||
<b-button
|
||
v-if="!isContributeBtnSnown"
|
||
@click="getUserRandom"
|
||
:disabled="isContributeBtnDisabled"
|
||
type="is-primary"
|
||
outlined
|
||
>
|
||
Make the contribution
|
||
</b-button>
|
||
</div>
|
||
<p class="p">
|
||
If you don’t trust binaries, we encorage you to follow this
|
||
<router-link to="/instructions">instruction</router-link> to contribute by compiling from
|
||
source code. It is very easy!
|
||
</p>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
/* eslint-disable no-console */
|
||
import { mapGetters, mapActions } from 'vuex'
|
||
import Cloak from '@/components/Cloak'
|
||
import Form from '@/components/Form'
|
||
const timeout = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
|
||
|
||
export default {
|
||
components: {
|
||
Cloak,
|
||
Form
|
||
},
|
||
data() {
|
||
return {
|
||
isContributeBtnSnown: false,
|
||
status: {
|
||
type: '',
|
||
msg: ''
|
||
},
|
||
contributionHash: null,
|
||
authorizeLink: null
|
||
}
|
||
},
|
||
computed: {
|
||
...mapGetters('user', ['isLoggedIn', 'hasErrorName']),
|
||
userName: {
|
||
get() {
|
||
return this.$store.state.user.name
|
||
},
|
||
set(value) {
|
||
this.$store.commit('user/SET_NAME', value)
|
||
}
|
||
},
|
||
userHandle: {
|
||
get() {
|
||
return this.$store.state.user.handle
|
||
},
|
||
set(value) {
|
||
this.$store.commit('user/SET_HANDLE', value)
|
||
}
|
||
},
|
||
userCompany: {
|
||
get() {
|
||
return this.$store.state.user.company
|
||
},
|
||
set(value) {
|
||
this.$store.commit('user/SET_COMPANY', value)
|
||
}
|
||
},
|
||
contributionType: {
|
||
get() {
|
||
return this.$store.state.user.contributionType
|
||
},
|
||
set(value) {
|
||
this.$store.commit('user/SET_CONTRIBUTION_TYPE', value)
|
||
}
|
||
},
|
||
isContributeBtnDisabled() {
|
||
return (
|
||
!this.contributionType ||
|
||
(!this.isLoggedIn && this.contributionType !== 'anonymous') ||
|
||
this.hasErrorName.invalid
|
||
)
|
||
}
|
||
},
|
||
async mounted() {
|
||
this.$root.$emit('enableLoading')
|
||
await this.getUserData()
|
||
setTimeout(() => {
|
||
this.$root.$emit('disableLoading')
|
||
}, 800)
|
||
},
|
||
methods: {
|
||
...mapActions('user', ['makeTweet', 'logOut', 'getUserData']),
|
||
getUserRandom() {
|
||
this.$buefy.dialog.prompt({
|
||
title: 'Contribution',
|
||
message: `Please provide a random input. The input, along with browser randomness, will be used as a source of entropy for your contribution.`,
|
||
inputAttrs: {
|
||
maxlength: 300
|
||
},
|
||
trapFocus: true,
|
||
onConfirm: (userInput) => {
|
||
this.makeContribution({ userInput })
|
||
}
|
||
})
|
||
},
|
||
async makeContribution({ userInput, retry = 0 } = {}) {
|
||
try {
|
||
const contribute = await this.$contribute()
|
||
this.isContributeBtnSnown = true
|
||
this.status.msg = ''
|
||
this.status.type = ''
|
||
this.$root.$emit('enableLoading', 'Downloading last contribution')
|
||
let data = await fetch('api/challenge')
|
||
data = new Uint8Array(await data.arrayBuffer())
|
||
|
||
this.$root.$emit('enableLoading', 'Generating random contribution')
|
||
await timeout(100) // allow UI to update before freezing in wasm
|
||
console.log('Source params', data)
|
||
|
||
const encoder = new TextEncoder(userInput)
|
||
const entropyFromUser = encoder.encode(userInput)
|
||
|
||
const entropy = new Uint8Array(userInput.length)
|
||
const entropyFromBrowser = window.crypto.getRandomValues(entropy)
|
||
// suffle the browser and user random
|
||
for (let i = 0; i < entropyFromBrowser.length; i++) {
|
||
entropy[i] = entropyFromBrowser[i] + entropyFromUser[i]
|
||
}
|
||
|
||
console.log('entropy', entropy)
|
||
const result = contribute(data, entropy)
|
||
console.log('Updated params', result)
|
||
|
||
this.$root.$emit('enableLoading', 'Uploading and verifying your contribution')
|
||
const formData = new FormData()
|
||
formData.append('response', new Blob([result], { type: 'application/octet-stream' }))
|
||
if (this.contributionType !== 'anonymous') {
|
||
formData.append('name', this.userName)
|
||
formData.append('company', this.userCompany)
|
||
}
|
||
const resp = await fetch('api/response', {
|
||
method: 'POST',
|
||
body: formData
|
||
})
|
||
if (resp.ok) {
|
||
const responseData = await resp.json()
|
||
this.$store.commit('user/SET_CONTRIBUTION_INDEX', responseData.contributionIndex)
|
||
this.status.msg = 'Your contribution is verified and recorded.'
|
||
this.status.type = 'is-success'
|
||
this.contributionHash = responseData.hash
|
||
if (this.contributionType === 'anonymous') {
|
||
this.authorizeLink = `${window.location.origin}/authorize-contribution?token=${responseData.token}`
|
||
}
|
||
} else if (resp.status === 422) {
|
||
if (retry < 3) {
|
||
console.log(`Looks like someone else uploaded contribution ahead of us, retrying`)
|
||
await this.makeContribution({ retry: retry++ })
|
||
} else {
|
||
this.status.msg = `Failed to upload your contribution after ${retry} attempts`
|
||
this.status.type = 'is-danger'
|
||
this.isContributeBtnSnown = false
|
||
}
|
||
} else {
|
||
this.status.msg = 'Error uploading your contribution'
|
||
this.status.type = 'is-danger'
|
||
this.isContributeBtnSnown = false
|
||
}
|
||
} catch (e) {
|
||
console.error(e)
|
||
this.status.msg = e.message
|
||
this.status.type = 'is-danger'
|
||
this.isContributeBtnSnown = false
|
||
} finally {
|
||
this.$root.$emit('disableLoading')
|
||
}
|
||
},
|
||
onAnonymousHandler() {
|
||
this.logOut()
|
||
this.contributionType = 'anonymous'
|
||
},
|
||
copyContributionHash() {
|
||
navigator.clipboard.writeText(this.contributionHash).then(() => {
|
||
this.$buefy.toast.open({
|
||
message: 'Copied!',
|
||
type: 'is-primary'
|
||
})
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|