iceshrimp-legacy/src/client/components/signin.vue

214 lines
6.4 KiB
Vue
Raw Normal View History

2018-02-10 08:22:14 +01:00
<template>
<form class="eppvobhk" :class="{ signing, totpLogin }" @submit.prevent="onSubmit">
2018-06-16 00:40:07 +02:00
<div class="avatar" :style="{ backgroundImage: user ? `url('${ user.avatarUrl }')` : null }" v-show="withAvatar"></div>
<div class="normal-signin" v-if="!totpLogin">
<mk-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required @input="onUsernameChange">
<span>{{ $t('username') }}</span>
<template #prefix>@</template>
<template #suffix>@{{ host }}</template>
</mk-input>
<mk-input v-model="password" type="password" :with-password-toggle="true" v-if="!user || user && !user.usePasswordLessLogin" required>
<span>{{ $t('password') }}</span>
<template #prefix><fa :icon="faLock"/></template>
</mk-input>
<mk-button type="submit" primary :disabled="signing" style="margin: 0 auto;">{{ signing ? $t('loggingIn') : $t('login') }}</mk-button>
2020-03-28 14:25:52 +01:00
<a class="_panel _button" style="margin: 8px auto;" v-if="meta && meta.enableTwitterIntegration" :href="`${apiUrl}/signin/twitter`"><fa :icon="faTwitter" style="margin-right: 4px;"/>{{ $t('signinWith', { x: 'Twitter' }) }}</a>
<a class="_panel _button" style="margin: 8px auto;" v-if="meta && meta.enableGithubIntegration" :href="`${apiUrl}/signin/github`"><fa :icon="faGithub" style="margin-right: 4px;"/>{{ $t('signinWith', { x: 'GitHub' }) }}</a>
<a class="_panel _button" style="margin: 8px auto;" v-if="meta && meta.enableDiscordIntegration" :href="`${apiUrl}/signin/discord`"><fa :icon="faDiscord" style="margin-right: 4px;"/>{{ $t('signinWith', { x: 'Discord' }) }}</a>
</div>
<div class="2fa-signin" v-if="totpLogin" :class="{ securityKeys: user && user.securityKeys }">
<div v-if="user && user.securityKeys" class="twofa-group tap-group">
<p>{{ $t('tapSecurityKey') }}</p>
<mk-button @click="queryKey" v-if="!queryingKey">
{{ $t('retry') }}
</mk-button>
</div>
<div class="or-hr" v-if="user && user.securityKeys">
<p class="or-msg">{{ $t('or') }}</p>
</div>
<div class="twofa-group totp-group">
<p style="margin-bottom:0;">{{ $t('twoStepAuthentication') }}</p>
<mk-input v-model="password" type="password" :with-password-toggle="true" v-if="user && user.usePasswordLessLogin" required>
<span>{{ $t('password') }}</span>
<template #prefix><fa :icon="faLock"/></template>
</mk-input>
2020-01-29 21:45:15 +01:00
<mk-input v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" spellcheck="false" required>
<span>{{ $t('token') }}</span>
<template #prefix><fa :icon="faGavel"/></template>
</mk-input>
<mk-button type="submit" :disabled="signing" primary style="margin: 0 auto;">{{ signing ? $t('loggingIn') : $t('login') }}</mk-button>
</div>
</div>
2018-02-10 08:22:14 +01:00
</form>
</template>
2018-02-11 04:08:43 +01:00
<script lang="ts">
2018-02-10 08:22:14 +01:00
import Vue from 'vue';
2018-11-11 04:35:30 +01:00
import { toUnicode } from 'punycode';
import { faLock, faGavel } from '@fortawesome/free-solid-svg-icons';
import { faTwitter, faDiscord, faGithub } from '@fortawesome/free-brands-svg-icons';
import MkButton from './ui/button.vue';
import MkInput from './ui/input.vue';
import { apiUrl, host } from '../config';
import { byteify, hexify } from '../scripts/2fa';
2018-02-10 08:22:14 +01:00
export default Vue.extend({
components: {
MkButton,
MkInput,
},
2018-12-18 16:40:29 +01:00
2018-06-16 00:40:07 +02:00
props: {
withAvatar: {
type: Boolean,
required: false,
default: true
},
autoSet: {
type: Boolean,
required: false,
default: false,
2018-06-16 00:40:07 +02:00
}
},
2018-12-18 16:40:29 +01:00
2018-02-10 08:22:14 +01:00
data() {
return {
signing: false,
2018-02-11 04:08:43 +01:00
user: null,
username: '',
password: '',
token: '',
apiUrl,
2018-11-16 18:13:01 +01:00
host: toUnicode(host),
totpLogin: false,
credential: null,
challengeData: null,
queryingKey: false,
faLock, faGavel, faTwitter, faDiscord, faGithub
2018-02-10 08:22:14 +01:00
};
},
2018-12-18 16:40:29 +01:00
computed: {
meta() {
return this.$store.state.instance.meta;
},
},
created() {
if (this.autoSet) {
this.$once('login', res => {
localStorage.setItem('i', res.i);
location.reload();
});
}
2018-11-16 18:13:01 +01:00
},
2018-12-18 16:40:29 +01:00
2018-02-10 08:22:14 +01:00
methods: {
onUsernameChange() {
2018-11-09 00:13:34 +01:00
this.$root.api('users/show', {
2018-02-10 08:22:14 +01:00
username: this.username
}).then(user => {
this.user = user;
2018-06-16 00:31:35 +02:00
}, () => {
this.user = null;
2018-02-10 08:22:14 +01:00
});
},
2018-12-18 16:40:29 +01:00
queryKey() {
this.queryingKey = true;
return navigator.credentials.get({
publicKey: {
challenge: byteify(this.challengeData.challenge, 'base64'),
allowCredentials: this.challengeData.securityKeys.map(key => ({
id: byteify(key.id, 'hex'),
type: 'public-key',
transports: ['usb', 'nfc', 'ble', 'internal']
})),
timeout: 60 * 1000
}
2019-07-05 00:48:12 +02:00
}).catch(() => {
this.queryingKey = false;
return Promise.reject(null);
}).then(credential => {
this.queryingKey = false;
this.signing = true;
return this.$root.api('signin', {
username: this.username,
password: this.password,
signature: hexify(credential.response.signature),
authenticatorData: hexify(credential.response.authenticatorData),
clientDataJSON: hexify(credential.response.clientDataJSON),
credentialId: credential.id,
challengeId: this.challengeData.challengeId
});
}).then(res => {
this.$emit('login', res);
}).catch(err => {
2019-07-05 00:48:12 +02:00
if (err === null) return;
this.$root.dialog({
type: 'error',
text: this.$t('signinFailed')
});
2018-02-10 08:22:14 +01:00
this.signing = false;
});
},
onSubmit() {
this.signing = true;
if (!this.totpLogin && this.user && this.user.twoFactorEnabled) {
if (window.PublicKeyCredential && this.user.securityKeys) {
2019-07-05 00:48:12 +02:00
this.$root.api('signin', {
username: this.username,
password: this.password
}).then(res => {
this.totpLogin = true;
this.signing = false;
this.challengeData = res;
return this.queryKey();
2019-07-05 00:48:12 +02:00
}).catch(() => {
this.$root.dialog({
type: 'error',
text: this.$t('signinFailed')
2019-07-05 00:48:12 +02:00
});
this.challengeData = null;
this.totpLogin = false;
this.signing = false;
});
} else {
this.totpLogin = true;
this.signing = false;
}
} else {
this.$root.api('signin', {
username: this.username,
password: this.password,
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
}).then(res => {
this.$emit('login', res);
}).catch(() => {
this.$root.dialog({
type: 'error',
text: this.$t('loginFailed')
});
this.signing = false;
});
}
2018-02-10 08:22:14 +01:00
}
}
});
</script>
<style lang="scss" scoped>
.eppvobhk {
> .avatar {
margin: 0 auto 0 auto;
width: 64px;
height: 64px;
background: #ddd;
background-position: center;
background-size: cover;
border-radius: 100%;
}
}
2018-02-10 08:22:14 +01:00
</style>