Ajustas login e filtros de video
This commit is contained in:
@@ -4,6 +4,7 @@ import { createWebHistory, createRouter } from "vue-router";
|
|||||||
|
|
||||||
import roles from "@/auth/roles";
|
import roles from "@/auth/roles";
|
||||||
import { extractRolesFromToken } from "@/utils/keycloak";
|
import { extractRolesFromToken } from "@/utils/keycloak";
|
||||||
|
import { hasToken, validateToken, redirectToLogin } from "@/utils/auth";
|
||||||
|
|
||||||
import Videos from "@/routes/videos";
|
import Videos from "@/routes/videos";
|
||||||
import NewVideo from "@/routes/videos/new";
|
import NewVideo from "@/routes/videos/new";
|
||||||
@@ -139,37 +140,49 @@ const hasPermission = (requiredPermissions = []) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
// router.beforeEach((to, from, next) => {
|
router.beforeEach(async (to, from, next) => {
|
||||||
// if (to.meta.title) {
|
if (to.meta.title) {
|
||||||
// document.title = to.meta.title;
|
document.title = to.meta.title;
|
||||||
// }
|
}
|
||||||
|
|
||||||
// console.log(to, from);
|
const requiresAuth = to.matched.some((record) => record.meta.requiresAuth);
|
||||||
|
const isGuestRoute = to.matched.some((record) => record.meta.guest);
|
||||||
|
|
||||||
// // if (to.matched.some((record) => record.meta.requiresAuth)) {
|
if (requiresAuth) {
|
||||||
// if (!isAuthenticated()) {
|
if (!hasToken()) {
|
||||||
// next({
|
next({ path: "/login" });
|
||||||
// path: "/login",
|
return;
|
||||||
// });
|
}
|
||||||
|
|
||||||
// return;
|
const isValid = await validateToken();
|
||||||
// }
|
|
||||||
|
|
||||||
// // const requiredPermissions = to.meta.permissions || [];
|
if (!isValid) {
|
||||||
|
redirectToLogin();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// // if (requiredPermissions.length > 0 && !hasPermission(requiredPermissions)) {
|
const requiredPermissions = to.meta.permissions || [];
|
||||||
// // next({ path: "/unauthorized" });
|
|
||||||
|
|
||||||
// // return;
|
if (requiredPermissions.length > 0 && !hasPermission(requiredPermissions)) {
|
||||||
// // }
|
next({ path: "/videos" });
|
||||||
// // }
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// // if (to.matched.some((record) => record.meta.guest) && isAuthenticated()) {
|
next();
|
||||||
// // next({ path: "/" });
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// // return;
|
if (isGuestRoute && hasToken()) {
|
||||||
// // }
|
const isValid = await validateToken();
|
||||||
|
|
||||||
// next();
|
if (isValid) {
|
||||||
// return;
|
next({ path: "/videos" });
|
||||||
// });
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
redirectToLogin();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
|||||||
@@ -68,6 +68,8 @@
|
|||||||
:options="situations"
|
:options="situations"
|
||||||
:loading="situationsLoading"
|
:loading="situationsLoading"
|
||||||
multiple
|
multiple
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,6 +234,9 @@ export default {
|
|||||||
page: pagination.page,
|
page: pagination.page,
|
||||||
...baseParams,
|
...baseParams,
|
||||||
},
|
},
|
||||||
|
paramsSerializer: {
|
||||||
|
indexes: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
this.rows = data.content;
|
this.rows = data.content;
|
||||||
|
|||||||
47
src/utils/auth.js
Normal file
47
src/utils/auth.js
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
import Cookies from "js-cookie";
|
||||||
|
import { API } from "../config/axios";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the user has a valid session token
|
||||||
|
* @returns {boolean} True if token cookie exists
|
||||||
|
*/
|
||||||
|
export function hasToken() {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
return !!token;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the current token by calling the backend /check-token endpoint
|
||||||
|
* @returns {Promise<boolean>} True if token is valid, false otherwise
|
||||||
|
*/
|
||||||
|
export async function validateToken() {
|
||||||
|
if (!hasToken()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await API.get("/auth/check-token");
|
||||||
|
return response.data?.valid === true;
|
||||||
|
} catch (error) {
|
||||||
|
// If the request fails (401, 403, network error, etc.), token is invalid
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears all authentication data from cookies
|
||||||
|
*/
|
||||||
|
export function clearAuthData() {
|
||||||
|
Cookies.remove("token");
|
||||||
|
Cookies.remove("refresh_token");
|
||||||
|
Cookies.remove("user_roles");
|
||||||
|
Cookies.remove("user_profile");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirects to login page and clears auth data
|
||||||
|
*/
|
||||||
|
export function redirectToLogin() {
|
||||||
|
clearAuthData();
|
||||||
|
window.location.href = "/login";
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user