This commit implements a comprehensive, reusable group verification system: Components: - GroupCheckButton: Base component for group verification - 7 specialized buttons: 3 real groups (authentik Admins, grupo-prueba, lvl0), 1 public access test, 2 system verification buttons - All buttons support both frontend and backend verification modes Backend: - New API endpoint /api/auth/check-group for server-side group validation - Reads Authentik headers and validates group membership Frontend: - Enhanced useAuthentik composable with hasGroup() and checkGroupBackend() methods - Toast notifications for all verification results - Smooth animations and color-coded visual feedback UI Improvements: - Organized layout with cards for different verification types - Grid layout for group buttons - Professional styling with hover effects and shadows - Clear visual distinction between frontend/backend checks
60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<template>
|
|
<UButton
|
|
color="purple"
|
|
size="lg"
|
|
variant="outline"
|
|
@click="handleClick"
|
|
class="verification-button"
|
|
>
|
|
<template #leading>
|
|
<UIcon name="i-heroicons-computer-desktop" />
|
|
</template>
|
|
Verificación Frontend
|
|
</UButton>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { user } = useAuthentik()
|
|
const toast = useToast()
|
|
|
|
const handleClick = () => {
|
|
if (!user.value) {
|
|
toast.add({
|
|
title: 'No Autenticado',
|
|
description: 'No hay usuario autenticado',
|
|
color: 'warning',
|
|
icon: 'i-heroicons-exclamation-triangle'
|
|
})
|
|
return
|
|
}
|
|
|
|
const groupCount = user.value.groups.length
|
|
const groupList = user.value.groups.join(', ') || 'Ninguno'
|
|
|
|
toast.add({
|
|
title: 'Verificación Frontend',
|
|
description: `Usuario: ${user.value.username}
|
|
Grupos (${groupCount}): ${groupList}`,
|
|
color: 'purple',
|
|
icon: 'i-heroicons-check-badge',
|
|
timeout: 5000
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.verification-button {
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: 0 4px 6px -1px rgba(147, 51, 234, 0.1), 0 2px 4px -1px rgba(147, 51, 234, 0.06);
|
|
}
|
|
|
|
.verification-button:hover {
|
|
transform: translateY(-2px) scale(1.02);
|
|
box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.2), 0 4px 6px -2px rgba(147, 51, 234, 0.1);
|
|
}
|
|
|
|
.verification-button:active {
|
|
transform: translateY(0) scale(0.98);
|
|
}
|
|
</style>
|