funkwhale/front/src/components/auth/Authorize.vue

231 lines
6.6 KiB
Vue

<script setup lang="ts">
import type { BackendError, Application } from '~/types'
import axios from 'axios'
import { useI18n } from 'vue-i18n'
import { whenever } from '@vueuse/core'
import { ref, computed } from 'vue'
import useSharedLabels from '~/composables/locale/useSharedLabels'
import useScopes from '~/composables/auth/useScopes'
import useFormData from '~/composables/useFormData'
import Button from '~/components/ui/Button.vue'
import Layout from '~/components/ui/Layout.vue'
interface Props {
clientId: string
redirectUri: string
scope: 'me' | 'all'
responseType: string
nonce: string
state: string
}
const props = defineProps<Props>()
const { t } = useI18n()
const sharedLabels = useSharedLabels()
const knownScopes = useScopes()
const supportedScopes = ['read', 'write']
for (const scope of knownScopes) {
supportedScopes.push(`read:${scope.id}`)
supportedScopes.push(`write:${scope.id}`)
}
const application = ref()
const errors = ref([] as string[])
const isLoading = ref(false)
const fetchApplication = async () => {
isLoading.value = true
try {
const response = await axios.get(`oauth/apps/${props.clientId}/`)
application.value = response.data as Application
} catch (error) {
errors.value = (error as BackendError).backendErrors
}
isLoading.value = false
}
const code = ref()
const submit = async () => {
isLoading.value = true
try {
const data = useFormData({
redirect_uri: props.redirectUri,
scope: props.scope,
allow: 'true',
client_id: props.clientId,
response_type: props.responseType,
state: props.state,
nonce: props.nonce
})
const response = await axios.post('oauth/authorize/', data, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'X-Requested-With': 'XMLHttpRequest'
}
})
if (props.redirectUri !== 'urn:ietf:wg:oauth:2.0:oob') {
window.location.href = response.data.redirect_uri
return
}
code.value = response.data.code
} catch (error) {
errors.value = (error as BackendError).backendErrors
}
isLoading.value = false
}
const labels = computed(() => ({
title: t('components.auth.Authorize.title')
}))
const requestedScopes = computed(() => props.scope.split(' '))
const unknownRequestedScopes = computed(() => requestedScopes.value.filter(scope => !supportedScopes.includes(scope)))
const topicScopes = computed(() => {
const requested = requestedScopes.value
const write = requested.includes('write')
const read = requested.includes('read')
return knownScopes.map(scope => {
const { id } = scope
return {
id,
icon: scope.icon,
label: sharedLabels.scopes[id].label,
description: sharedLabels.scopes[id].description,
read: read || requested.includes(`read:${id}`),
write: write || requested.includes(`write:${id}`)
}
}).filter(scope => scope.read || scope.write)
})
whenever(() => props.clientId, fetchApplication, { immediate: true })
</script>
<template>
<layout main
v-title="labels.title"
class="main"
>
<section class="ui vertical stripe segment">
<div class="ui small text container">
<h2>
<i class="bi bi-unlock-fill" />{{ t('components.auth.Authorize.header.authorize') }}
</h2>
<Alert red
v-if="errors.length > 0"
role="alert"
>
<h4
v-if="application"
>
{{ t('components.auth.Authorize.header.authorizeFailure') }}
</h4>
<h4
v-else
>
{{ t('components.auth.Authorize.header.fetchFailure') }}
</h4>
<ul class="list">
<li
v-for="(error, key) in errors"
:key="key"
>
{{ error }}
</li>
</ul>
</Alert>
<Loader
v-if="isLoading"
class="ui inverted active dimmer"
/>
<form
v-else-if="application && !code"
:class="['ui', {loading: isLoading}, 'form']"
@submit.prevent="submit"
>
<h3>
{{ t('components.auth.Authorize.header.access', {app_name: application.name}) }}
</h3>
<h4
v-for="(topic, key) in topicScopes"
:key="key"
class="ui header vertical-align"
>
<span
v-if="topic.write && !topic.read"
:class="['ui', 'basic', 'right floated', 'tiny', 'vertically-spaced component-label label']"
>
<i class="bi bi-pencil" />
{{ t('components.auth.Authorize.header.writeOnly') }}
</span>
<span
v-else-if="!topic.write && topic.read"
:class="['ui', 'basic', 'right floated', 'tiny', 'vertically-spaced component-label label']"
>
{{ t('components.auth.Authorize.header.readOnly') }}
</span>
<span
v-else-if="topic.write && topic.read"
:class="['ui', 'basic', 'right floated', 'tiny', 'vertically-spaced component-label label']"
>
<i class="bi bi-pencil" />
{{ t('components.auth.Authorize.header.allScopes') }}
</span>
<i :class="[topic.icon, 'bi']" />
<div class="content">
{{ topic.label }}
<div class="sub header">
{{ topic.description }}
</div>
</div>
</h4>
<div v-if="unknownRequestedScopes.length > 0">
<p><strong>{{ t('components.auth.Authorize.message.unknownPermissions') }}</strong></p>
<ul
v-for="(unknownscope, key) in unknownRequestedScopes"
:key="key"
>
<li>{{ unknownscope }}</li>
</ul>
</div>
<Button
icon="bi-unlock"
type="submit"
>
{{ t('components.auth.Authorize.button.authorize', { app: application.name }) }}
</Button>
<p
v-if="redirectUri === 'urn:ietf:wg:oauth:2.0:oob'"
>
{{ t('components.auth.Authorize.help.copyCode') }}
</p>
<p
v-else
>
<i18n-t keypath="components.auth.Authorize.help.redirect">
<strong>{{ redirectUri }}</strong>
</i18n-t>
</p>
</form>
<div v-else-if="code">
<p><strong>{{ t('components.auth.Authorize.help.pasteCode') }}</strong></p>
<copy-input :value="code" />
</div>
</div>
</section>
</layout>
</template>