Capital/pages/auth/authorize.vue

155 lines
4.3 KiB
Vue
Raw Normal View History

2024-08-12 08:41:21 +00:00
<template>
<v-container class="h-screen flex flex-col gap-3 items-center justify-center">
<v-card class="w-full max-w-[720px] overflow-auto" :loading="loading">
<v-card-text class="card-grid pa-9">
<div>
<v-avatar color="accent" icon="mdi-connection" size="large" class="card-rounded mb-2" />
<h1 class="text-2xl">{{ t("authorizeTitle") }}</h1>
<p>{{ t("authorizeCaption") }}</p>
2024-08-12 08:41:21 +00:00
</div>
<v-window :touch="false" :model-value="panel" class="pa-2 mx-[-0.5rem]">
<v-window-item value="confirm">
<div class="flex flex-col gap-2">
<v-expand-transition>
<v-alert v-show="error" variant="tonal" type="error" class="text-xs mb-3">
<p>{{ t("errorOccurred", [error]) }}</p>
2024-08-12 08:41:21 +00:00
<br />
<p class="font-bold">
{{ t("authorizeErrorHint") }}
2024-08-12 08:41:21 +00:00
</p>
</v-alert>
</v-expand-transition>
<div v-if="!error">
<h1 class="font-bold text-xl">{{ metadata?.name ?? "Loading" }}</h1>
<p>{{ metadata?.description ?? "Hold on a second please!" }}</p>
<div class="mt-3">
<div class="mt-5 flex justify-between">
<v-btn prepend-icon="mdi-close" variant="text" color="error" :disabled="loading" @click="decline">
{{ t("decline") }}
2024-08-12 08:41:21 +00:00
</v-btn>
<v-btn append-icon="mdi-check" variant="tonal" color="success" :disabled="loading" @click="approve">
{{ t("approve") }}
2024-08-12 08:41:21 +00:00
</v-btn>
</div>
<div class="mt-5 text-xs text-center opacity-75">
<p>{{ t("authorizeRedirectHint") }}</p>
2024-08-12 08:41:21 +00:00
<p class="text-mono">{{ route.query["redirect_uri"] }}</p>
</div>
</div>
</div>
</div>
</v-window-item>
<v-window-item value="callback">
<div>
<v-icon icon="mdi-fire" size="32" color="grey-darken-3" class="mb-3" />
<h1 class="font-bold text-xl">{{ t("authorizeCompleted") }}</h1>
<p>{{ t("authorizeCompletedCaption", [metadata?.name]) }}</p>
2024-08-12 08:41:21 +00:00
<p class="mt-3">{{ t("authorizeCompletedRedirect") }}</p>
2024-08-12 08:41:21 +00:00
<p class="mt-3">{{ t("authorizeCompletedRedirectHint") }}</p>
2024-08-12 08:41:21 +00:00
<p class="text-xs text-mono">{{ route.query["redirect_uri"] }}</p>
</div>
</v-window-item>
</v-window>
</v-card-text>
</v-card>
<copyright service="passport" />
</v-container>
</template>
<script setup lang="ts">
2024-08-12 17:08:32 +00:00
import { solarFetch } from "~/utils/request"
2024-08-12 15:51:42 +00:00
definePageMeta({
middleware: ["auth"],
})
2024-08-12 08:41:21 +00:00
const { t } = useI18n()
2024-08-12 08:41:21 +00:00
const route = useRoute()
const error = ref<string | null>(null)
const loading = ref(true)
2024-08-12 08:41:21 +00:00
const metadata = ref<any>(null)
const panel = ref("confirm")
async function tryAuthorize() {
loading.value = true
2024-08-12 17:08:32 +00:00
const res = await solarFetch(`/cgi/auth/auth/o/authorize${window.location.search}`)
2024-08-12 08:41:21 +00:00
if (res.status !== 200) {
error.value = await res.text()
} else {
const data = await res.json()
if (data["ticket"]) {
panel.value = "callback"
callback(data["ticket"])
} else {
metadata.value = data["client"]
loading.value = false
}
}
}
onMounted(() => tryAuthorize())
2024-08-12 08:41:21 +00:00
function decline() {
if (window.history.length > 0) {
window.history.back()
} else {
window.close()
}
}
async function approve() {
loading.value = true
2024-08-12 17:08:32 +00:00
const res = await solarFetch(`/cgi/auth/auth/o/authorize${window.location.search}`, {
2024-08-12 08:41:21 +00:00
method: "POST",
})
if (res.status !== 200) {
error.value = await res.text()
loading.value = false
} else {
const data = await res.json()
panel.value = "callback"
setTimeout(() => callback(data["ticket"]), 1850)
}
}
function callback(ticket: any) {
const url = `${route.query["redirect_uri"]}?code=${ticket["grant_token"]}&state=${route.query["state"]}`
window.open(url, "_self")
}
</script>
<style scoped>
.card-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
@media (max-width: 768px) {
.card-grid {
grid-template-columns: 1fr;
}
}
.card-rounded {
border-radius: 8px;
}
</style>