sodi
This commit is contained in:
parent
58117430fc
commit
c99554d272
3 changed files with 143 additions and 2 deletions
BIN
src/lib/protected/sodinazi.png
Normal file
BIN
src/lib/protected/sodinazi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 552 KiB |
|
@ -1604,6 +1604,146 @@ USE_SSL=false # majd ha lesz rá idő`
|
|||
});
|
||||
}
|
||||
|
||||
// Sodika case
|
||||
if (username === 'sodika' && password === 'kissendrefarkas') {
|
||||
return json({
|
||||
success: true,
|
||||
type: 'admin',
|
||||
content: {
|
||||
html: `
|
||||
<div class="logo-container">
|
||||
<img src="/logo.png" class="logo" alt="KRETÉN logo">
|
||||
</div>
|
||||
<div class="login-container admin-panel">
|
||||
<div class="login-header">
|
||||
<h2>Kiss Endre Farkas</h2>
|
||||
</div>
|
||||
<div class="login-form" style="padding: 0;">
|
||||
<div class="sodika-container">
|
||||
<img alt="Kiss Endre Farkas" class="sodika-image"
|
||||
onload="this.style.opacity = '1'"
|
||||
onerror="this.style.display = 'none'; document.querySelector('.sodika-error').style.display = 'block';"
|
||||
style="opacity: 0; transition: opacity 0.3s ease;">
|
||||
<div class="sodika-error" style="display: none; color: #e74c3c; padding: 1rem; text-align: center;">
|
||||
Nem sikerült betölteni a képet.
|
||||
</div>
|
||||
</div>
|
||||
<button class="sodika-button" onclick="window.location.href='https://pub-e0f5a388c46c49d0b01b8999c3b13da3.r2.dev/lesmAcLon-.mp4'">Ezt érdemes megnézni</button>
|
||||
<button class="sodika-button" onclick="window.location.href='https://sodipedia.sodika.org/wiki/Sz%C3%B3cikkek'">Sodika</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
css: `
|
||||
.login-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.logo-container {
|
||||
margin-bottom: 2rem;
|
||||
text-align: center;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
max-height: 120px;
|
||||
}
|
||||
|
||||
.admin-panel {
|
||||
background-color: white;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
overflow: hidden;
|
||||
margin: 0 1rem;
|
||||
}
|
||||
|
||||
.login-header {
|
||||
background-color: #30b0d5;
|
||||
color: white;
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login-header h2 {
|
||||
font-size: clamp(1rem, 4vw, 1.2rem);
|
||||
font-weight: normal;
|
||||
margin: 0;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.sodika-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.sodika-image {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sodika-button {
|
||||
background-color: #30b0d5;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
padding: 1rem;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.logo-container {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.admin-panel {
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
}
|
||||
`,
|
||||
js: `
|
||||
// Load image with authentication
|
||||
const img = document.querySelector('.sodika-image');
|
||||
fetch('/api/protected-image?image=sodinazi.png', {
|
||||
headers: {
|
||||
'x-auth': 'sodika-authenticated'
|
||||
}
|
||||
})
|
||||
.then(response => response.blob())
|
||||
.then(blob => {
|
||||
img.src = URL.createObjectURL(blob);
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error loading image:', error);
|
||||
img.style.display = 'none';
|
||||
document.querySelector('.sodika-error').style.display = 'block';
|
||||
});
|
||||
`
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (selectedSchool && selectedSchool.kretaLink) {
|
||||
const kretaUrl = new URL(selectedSchool.kretaLink);
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ export async function GET({ request, url }) {
|
|||
const authHeader = request.headers.get('x-auth');
|
||||
const imageName = url.searchParams.get('image');
|
||||
|
||||
if (!imageName || !['skelly.jpg', 'klima.png', 'p1.png', 'p2.png', 'milka.jpg', '9s.gif', 'menczer.jpg', 'tomcica.webp', 'petiszivem.jpg'].includes(imageName)) {
|
||||
if (!imageName || !['skelly.jpg', 'klima.png', 'p1.png', 'p2.png', 'milka.jpg', '9s.gif', 'menczer.jpg', 'tomcica.webp', 'petiszivem.jpg', 'sodinazi.png'].includes(imageName)) {
|
||||
throw redirect(307, '/');
|
||||
}
|
||||
|
||||
|
@ -20,7 +20,8 @@ export async function GET({ request, url }) {
|
|||
'9s.gif': '9suw9suw9-authenticated',
|
||||
'menczer.jpg': 'menczer-authenticated',
|
||||
'tomcica.webp': 'tomcat-authenticated',
|
||||
'petiszivem.jpg': 'arad-authenticated'
|
||||
'petiszivem.jpg': 'arad-authenticated',
|
||||
'sodinazi.png': 'sodika-authenticated'
|
||||
};
|
||||
|
||||
if (!authHeader || authHeader !== validAuth[imageName]) {
|
||||
|
|
Loading…
Add table
Reference in a new issue