Initial commit

This commit is contained in:
2025-06-08 20:49:37 +05:00
commit 0f78bac9d8
26 changed files with 1436 additions and 0 deletions

82
src/App.vue Normal file
View File

@ -0,0 +1,82 @@
<script setup lang="ts">
import { RouterLink, RouterView } from 'vue-router'
</script>
<template>
<header>
<img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" />
<div class="wrapper">
<nav>
<RouterLink to="/">Home</RouterLink>
<RouterLink to="/login">Login</RouterLink>
</nav>
</div>
</header>
<RouterView />
</template>
<style scoped>
header {
line-height: 1.5;
max-height: 100vh;
}
.logo {
display: block;
margin: 0 auto 2rem;
}
nav {
width: 100%;
font-size: 12px;
text-align: center;
margin-top: 2rem;
}
nav a.router-link-exact-active {
color: var(--color-text);
}
nav a.router-link-exact-active:hover {
background-color: transparent;
}
nav a {
display: inline-block;
padding: 0 1rem;
border-left: 1px solid var(--color-border);
}
nav a:first-of-type {
border: 0;
}
@media (min-width: 1024px) {
header {
display: flex;
place-items: center;
padding-right: calc(var(--section-gap) / 2);
}
.logo {
margin: 0 2rem 0 0;
}
header .wrapper {
display: flex;
place-items: flex-start;
flex-wrap: wrap;
}
nav {
text-align: left;
margin-left: -1rem;
font-size: 1rem;
padding: 1rem 0;
margin-top: 1rem;
}
}
</style>

86
src/assets/base.css Normal file
View File

@ -0,0 +1,86 @@
/* color palette from <https://github.com/vuejs/theme> */
:root {
--vt-c-white: #ffffff;
--vt-c-white-soft: #f8f8f8;
--vt-c-white-mute: #f2f2f2;
--vt-c-black: #181818;
--vt-c-black-soft: #222222;
--vt-c-black-mute: #282828;
--vt-c-indigo: #2c3e50;
--vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
--vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
--vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
--vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
--vt-c-text-light-1: var(--vt-c-indigo);
--vt-c-text-light-2: rgba(60, 60, 60, 0.66);
--vt-c-text-dark-1: var(--vt-c-white);
--vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}
/* semantic color variables for this project */
:root {
--color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);
--color-border: var(--vt-c-divider-light-2);
--color-border-hover: var(--vt-c-divider-light-1);
--color-heading: var(--vt-c-text-light-1);
--color-text: var(--vt-c-text-light-1);
--section-gap: 160px;
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute);
--color-border: var(--vt-c-divider-dark-2);
--color-border-hover: var(--vt-c-divider-dark-1);
--color-heading: var(--vt-c-text-dark-1);
--color-text: var(--vt-c-text-dark-2);
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition:
color 0.5s,
background-color 0.5s;
line-height: 1.6;
font-family:
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

1
src/assets/logo.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

After

Width:  |  Height:  |  Size: 276 B

35
src/assets/main.css Normal file
View File

@ -0,0 +1,35 @@
@import './base.css';
#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
padding: 3px;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}
@media (min-width: 1024px) {
body {
display: flex;
place-items: center;
}
#app {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}

11
src/main.ts Normal file
View File

@ -0,0 +1,11 @@
import './assets/main.css'
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')

38
src/router/index.ts Normal file
View File

@ -0,0 +1,38 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import LoginService from "../services/login-service";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
},
{
path: '/login',
name: 'login',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/LoginView.vue'),
},
],
})
router.beforeEach((to, from, next) => {
console.log(to.path)
console.log(to.query.code)
if (to.path === '/code' && to.query.code != null) {
console.log("redirect?")
LoginService.getTokens(to.query.code).then(() => {
next({name: 'home'});
});
} else {
next()
}
});
export default router

View File

@ -0,0 +1,77 @@
import axios from "axios";
import type { AxiosResponse } from "axios";
const serverUrl: string = import.meta.env.VITE_OAUTH_URL || '';
axios.defaults.baseURL = serverUrl;
axios.defaults.withCredentials = true
const clientId: string = import.meta.env.VITE_OAUTH_CLIENT_ID || '';
const authHeaderValue: string = import.meta.env.VITE_OAUTH_AUTH_HEADER || '';
const redirectUri: string = import.meta.env.VITE_OAUTH_REDIRECT_URI || '';
const ACCESS_TOKEN_KEY: string = "access_token";
interface TokenResponse {
access_token: string;
token_type?: string;
expires_in?: number;
refresh_token?: string;
scope?: string;
}
interface TokenInfo {
// Define the structure of your token info response here
[key: string]: unknown;
}
export default {
// делаем первичный запрос на авторизацию через j-sso
login(): void {
const requestParams: URLSearchParams = new URLSearchParams({
response_type: "code",
client_id: clientId,
redirect_uri: redirectUri,
scope: 'openid profile'
});
console.log("SERVER URL: ")
console.log(serverUrl)
window.location.href = `${serverUrl}/oauth2/authorize?${requestParams}`;
},
// После успешного получения кода авторизации, делаем запрос на получение access и refresh токенов
getTokens(code: string): Promise<void> {
const payload: FormData = new FormData();
payload.append('grant_type', 'authorization_code');
payload.append('code', code);
payload.append('redirect_uri', redirectUri);
payload.append('client_id', clientId);
return axios.post<TokenResponse>('/oauth2/token', payload, {
headers: {
'Content-type': 'application/x-www-form-urlencoded', // Fixed content-type
'Authorization': authHeaderValue
}
}).then((response: AxiosResponse<TokenResponse>) => {
// получаем токены, кладем access token в sessionStorage
console.log("Result getting tokens: ", response.data);
window.sessionStorage.setItem(ACCESS_TOKEN_KEY, response.data.access_token);
});
},
// получение информации о токене
getTokenInfo(): Promise<AxiosResponse<TokenInfo>> {
const payload: FormData = new FormData();
// достаем из sessionStorage наш access token и помещаем его в параметр `token`
const token: string | null = window.sessionStorage.getItem(ACCESS_TOKEN_KEY);
if (token) {
payload.append('token', token);
}
return axios.post<TokenInfo>('/oauth2/token-info', payload, {
headers: {
'Authorization': authHeaderValue
}
});
}
}

57
src/views/HomeView.vue Normal file
View File

@ -0,0 +1,57 @@
<template>
<h1>HOME PAGE</h1>
<p aria-multiline="true" aria-rowcount="20">
{{ tokenInfoString }}
</p>
</template>
<script lang="ts">
import LoginService from "@/services/login-service";
export default {
name: "home-view",
data: () => {
return {
tokenInfo: {}
}
},
methods: {
getCurrentPrincipal() {
LoginService.getTokenInfo()
.then(result => {
console.log("Result getting token info: ", result);
if (!result.data.active) {
this.$router.replace({ name: "login" });
return;
}
this.tokenInfo = result.data;
})
.catch((err) => {
console.log("Error getting token info: ", err);
this.$router.replace({ name: "login" });
})
}
},
computed: {
tokenInfoString() {
if (!this.tokenInfo) {
return null;
}
return JSON.stringify(this.tokenInfo, null, 8);
}
},
mounted() {
this.getCurrentPrincipal();
}
}
</script>
<style scoped>
p {
white-space: pre-wrap;
text-align: left;
margin-left: 20px;
font-size: 1.5em;
}
</style>

23
src/views/LoginView.vue Normal file
View File

@ -0,0 +1,23 @@
<template>
<h1>
LOGIN PAGE
</h1>
<button @click="login">
LOGIN
</button>
</template>
<script lang="ts">
import LoginService from "@/services/login-service";
export default {
name: "login-view",
methods: {
login() {
return LoginService.login();
}
}
}
</script>
<style scoped></style>