Added first mock design and CAS tests
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
.env
|
||||||
+127
@@ -0,0 +1,127 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
|
||||||
|
|
||||||
|
:root {
|
||||||
|
color-scheme: light dark;
|
||||||
|
|
||||||
|
--dark-background-color: rgb(30, 30, 42);
|
||||||
|
--dark-background-color-ui: rgb(50, 50, 62);
|
||||||
|
--dark-foreground: rgb(241, 241, 255);
|
||||||
|
|
||||||
|
--light-background-color: rgb(225, 225, 237);
|
||||||
|
--light-background-color-ui: rgb(241, 241, 255);
|
||||||
|
--light-foreground: rgb(30, 30, 42);
|
||||||
|
|
||||||
|
--wave-color-1: #282830;
|
||||||
|
--wave-color-2: #383840;
|
||||||
|
--wave-color-3: #585860;
|
||||||
|
--wave-color-4: #969698;
|
||||||
|
|
||||||
|
--loader-size: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
color: light-dark(var(--light-foreground), var(--dark-foreground));
|
||||||
|
background-color: light-dark(var(--light-background-color), var(--dark-background-color));
|
||||||
|
height: 100dvh;
|
||||||
|
width: 100dvw;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: grid;
|
||||||
|
font-family: Jost, sans-serif;
|
||||||
|
font-feature-settings: "ss01" 1;
|
||||||
|
font-weight: 500;
|
||||||
|
place-content: center;
|
||||||
|
padding: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-family: Jost, sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 750px) {
|
||||||
|
section#main {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** loader */
|
||||||
|
|
||||||
|
.loader {
|
||||||
|
margin: 2em 0;
|
||||||
|
width: calc(4 * var(--loader-size));
|
||||||
|
height: calc(4 * var(--loader-size));
|
||||||
|
position: relative;
|
||||||
|
--c:no-repeat linear-gradient(light-dark(var(--light-foreground), var(--dark-foreground)) 0 0);
|
||||||
|
background:
|
||||||
|
var(--c) center/100% var(--loader-size),
|
||||||
|
var(--c) center/var(--loader-size) 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader:before {
|
||||||
|
content:'';
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background:
|
||||||
|
var(--c) 0 0,
|
||||||
|
var(--c) 100% 0,
|
||||||
|
var(--c) 0 100%,
|
||||||
|
var(--c) 100% 100%;
|
||||||
|
background-size: calc(1.55 * var(--loader-size)) calc(1.55 * var(--loader-size));
|
||||||
|
animation: l16 1.5s infinite cubic-bezier(0.3,1,0,1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes l16 {
|
||||||
|
33% {inset:calc(-1 * var(--loader-size));transform: rotate(0deg)}
|
||||||
|
66% {inset:calc(-1 * var(--loader-size));transform: rotate(90deg)}
|
||||||
|
100% {inset:0 ;transform: rotate(90deg)}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** waves */
|
||||||
|
|
||||||
|
section#background {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.parallax > use {
|
||||||
|
animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.parallax > use:nth-child(1) {
|
||||||
|
animation-delay: -2s;
|
||||||
|
animation-duration: 7s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.parallax > use:nth-child(2) {
|
||||||
|
animation-delay: -3s;
|
||||||
|
animation-duration: 10s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.parallax > use:nth-child(3) {
|
||||||
|
animation-delay: -4s;
|
||||||
|
animation-duration: 13s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.parallax > use:nth-child(4) {
|
||||||
|
animation-delay: -5s;
|
||||||
|
animation-duration: 20s;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes move-forever {
|
||||||
|
0% {
|
||||||
|
transform: translate3d(-90px,0,0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate3d(85px,0,0);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Mock</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="base.css">
|
||||||
|
<link rel="stylesheet" href="main.css">
|
||||||
|
<meta name="theme-color" content="#57575a">
|
||||||
|
<meta name="msapplication-TileColor" content="#57575a">
|
||||||
|
<meta name="msapplication-navbutton-color" content="#57575a">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="#57575a">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- <section id="background">
|
||||||
|
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
|
||||||
|
<defs>
|
||||||
|
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
|
||||||
|
</defs>
|
||||||
|
<g class="parallax">
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="5" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="3" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="0" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
</section> -->
|
||||||
|
|
||||||
|
<section id="main">
|
||||||
|
<h1>PolyMPR</h1>
|
||||||
|
<p>Random text go brrr</p>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
section#main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
background-color: light-dark(var(--light-background-color-ui), var(--dark-background-color-ui));
|
||||||
|
padding: 2em;
|
||||||
|
font-size: 2em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Mock</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="base.css">
|
||||||
|
<link rel="stylesheet" href="loading-page.css">
|
||||||
|
<meta name="theme-color" content="#57575a">
|
||||||
|
<meta name="msapplication-TileColor" content="#57575a">
|
||||||
|
<meta name="msapplication-navbutton-color" content="#57575a">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="#57575a">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- <section id="background">
|
||||||
|
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
|
||||||
|
<defs>
|
||||||
|
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
|
||||||
|
</defs>
|
||||||
|
<g class="parallax">
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="5" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="3" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="0" fill="#fff1" />
|
||||||
|
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
</section> -->
|
||||||
|
|
||||||
|
<section id="main">
|
||||||
|
<h1>PolyMPR</h1>
|
||||||
|
<p>Logging in with amU credentials...</p>
|
||||||
|
<div class="loader"></div>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
section#main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: start;
|
||||||
|
|
||||||
|
background-color: light-dark(var(--light-background-color-ui), var(--dark-background-color-ui));
|
||||||
|
padding: 2em;
|
||||||
|
font-size: 2em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
z-index: 999;
|
||||||
|
|
||||||
|
width: 90dvw;
|
||||||
|
height: 90dvh;
|
||||||
|
}
|
||||||
+27
@@ -0,0 +1,27 @@
|
|||||||
|
async function main() {
|
||||||
|
const initResponse = await fetch("https://ident.univ-amu.fr/cas/login");
|
||||||
|
const initHTML = await initResponse.text();
|
||||||
|
const execution = initHTML.match(/(?<=name="execution" value=").*?(?=")/)[0];
|
||||||
|
|
||||||
|
const data = new URLSearchParams();
|
||||||
|
data.append("username", process.env.CAS_USERNAME);
|
||||||
|
data.append("password", process.env.CAS_PASSWORD);
|
||||||
|
data.append("_eventId", "submit");
|
||||||
|
data.append("execution", execution);
|
||||||
|
|
||||||
|
const response = await fetch("https://ident.univ-amu.fr/cas/login", {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
|
},
|
||||||
|
body: data.toString()
|
||||||
|
});
|
||||||
|
console.log(response.status)
|
||||||
|
console.log(response.headers);
|
||||||
|
|
||||||
|
const content = await response.text();
|
||||||
|
console.log(content);
|
||||||
|
}
|
||||||
|
|
||||||
|
main()
|
||||||
|
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
const token = process.env.CAS_TOKEN;
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
const response = await fetch("https://ident.univ-amu.fr/login?service=http://localhost", {
|
||||||
|
"Cookie": `TGC=${token}`
|
||||||
|
});
|
||||||
|
console.log(response.headers);
|
||||||
|
|
||||||
|
|
||||||
|
const responseText = await response.text();
|
||||||
|
|
||||||
|
console.log(responseText);
|
||||||
|
}
|
||||||
|
|
||||||
|
main();
|
||||||
Reference in New Issue
Block a user