Initial commit: Beszel fork with Domain Locker integration

This commit is contained in:
Tomas Dvorak
2026-04-21 15:39:43 +02:00
commit 363d708e91
440 changed files with 160889 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
{
"name": "Beszel - Monitoring Dashboard",
"short_name": "Beszel",
"description": "All-in-one monitoring dashboard for devices, websites, and domains",
"start_url": "/",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#171717",
"orientation": "portrait-primary",
"scope": "/",
"icons": [
{
"src": "/favicon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "/favicon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "/favicon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "/favicon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "/favicon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "/favicon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/favicon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/favicon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"categories": ["utilities", "productivity"],
"screenshots": [
{
"src": "/screenshot-wide.png",
"sizes": "1280x720",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "/screenshot-narrow.png",
"sizes": "750x1334",
"type": "image/png",
"form_factor": "narrow"
}
]
}
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

+9
View File
@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56 70">
<defs>
<linearGradient id="gradient" x1="0%" y1="20%" x2="100%" y2="120%">
<stop offset="0%" style="stop-color:#747bff"/>
<stop offset="100%" style="stop-color:#24eb5c"/>
</linearGradient>
</defs>
<path fill="url(#gradient)" d="M35 70H0V0h35q4.4 0 8.2 1.7a21.4 21.4 0 0 1 6.6 4.5q2.9 2.8 4.5 6.6Q56 16.7 56 21a15.4 15.4 0 0 1-.3 3.2 17.6 17.6 0 0 1-.2.8 19.4 19.4 0 0 1-1.5 4 17 17 0 0 1-2.4 3.4 13.5 13.5 0 0 1-2.6 2.3 12.5 12.5 0 0 1-.4.3q1.7 1 3 2.5Q53 39.1 54 41a18.3 18.3 0 0 1 1.5 4 17.4 17.4 0 0 1 .5 3 15.3 15.3 0 0 1 0 1q0 4.4-1.7 8.2a21.4 21.4 0 0 1-4.5 6.6q-2.8 2.9-6.6 4.6Q39.4 70 35 70ZM14 14v14h21a7 7 0 0 0 2.3-.3 6.6 6.6 0 0 0 .4-.2Q39 27 40 26a6.9 6.9 0 0 0 1.5-2.2q.5-1.3.5-2.8a7 7 0 0 0-.4-2.3 6.6 6.6 0 0 0-.1-.4Q40.9 17 40 16a7 7 0 0 0-2.3-1.4 6.9 6.9 0 0 0-2.5-.6 7.9 7.9 0 0 0-.2 0H14Zm0 28v14h21a7 7 0 0 0 2.3-.4 6.6 6.6 0 0 0 .4-.1Q39 54.9 40 54a7 7 0 0 0 1.5-2.2 6.9 6.9 0 0 0 .5-2.6 7.9 7.9 0 0 0 0-.2 7 7 0 0 0-.4-2.3 6.6 6.6 0 0 0-.1-.4Q40.9 45 40 44a7 7 0 0 0-2.3-1.5 6.9 6.9 0 0 0-2.5-.6 7.9 7.9 0 0 0-.2 0H14Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+14
View File
@@ -0,0 +1,14 @@
{
"name": "Beszel",
"icons": [
{
"src": "icon.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "../",
"display": "standalone",
"background_color": "#202225",
"theme_color": "#202225"
}
+166
View File
@@ -0,0 +1,166 @@
// Beszel Service Worker
const CACHE_NAME = 'beszel-v1';
const STATIC_ASSETS = [
'/',
'/index.html',
'/manifest.json',
'/favicon.ico',
'/favicon.svg',
];
// Install event - cache static assets
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME)
.then((cache) => {
return cache.addAll(STATIC_ASSETS);
})
.then(() => self.skipWaiting())
);
});
// Activate event - clean up old caches
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames
.filter((name) => name !== CACHE_NAME)
.map((name) => caches.delete(name))
);
})
.then(() => self.clients.claim())
);
});
// Fetch event - serve from cache or network
self.addEventListener('fetch', (event) => {
const { request } = event;
const url = new URL(request.url);
// Skip non-GET requests
if (request.method !== 'GET') {
return;
}
// Skip API requests
if (url.pathname.startsWith('/api/')) {
return;
}
// Skip PocketBase API
if (url.pathname.startsWith('/_/')) {
return;
}
event.respondWith(
caches.match(request).then((cached) => {
if (cached) {
// Return cached version and update in background
fetch(request).then((response) => {
if (response.ok) {
caches.open(CACHE_NAME).then((cache) => {
cache.put(request, response);
});
}
});
return cached;
}
// Fetch from network
return fetch(request).then((response) => {
if (!response || response.status !== 200 || response.type !== 'basic') {
return response;
}
const responseToCache = response.clone();
caches.open(CACHE_NAME).then((cache) => {
cache.put(request, responseToCache);
});
return response;
});
}).catch(() => {
// Return offline page if available
return caches.match('/offline.html');
})
);
});
// Push notification event
self.addEventListener('push', (event) => {
if (!event.data) {
return;
}
const data = event.data.json();
const options = {
body: data.body || 'New notification',
icon: data.icon || '/favicon-192x192.png',
badge: data.badge || '/favicon-72x72.png',
tag: data.tag || 'default',
requireInteraction: data.requireInteraction || false,
data: data.data || {},
actions: data.actions || [
{ action: 'open', title: 'Open' },
{ action: 'close', title: 'Dismiss' }
]
};
event.waitUntil(
self.registration.showNotification(
data.title || 'Beszel Alert',
options
)
);
});
// Notification click event
self.addEventListener('notificationclick', (event) => {
event.notification.close();
const { action, data } = event.notification;
const urlToOpen = data?.url || '/';
event.waitUntil(
clients.matchAll({ type: 'window', includeUncontrolled: true })
.then((clientList) => {
// Check if there's already a window open
for (const client of clientList) {
if (client.url === urlToOpen && 'focus' in client) {
return client.focus();
}
}
// Open new window if not found
if (clients.openWindow) {
return clients.openWindow(urlToOpen);
}
})
);
});
// Background sync for offline support
self.addEventListener('sync', (event) => {
if (event.tag === 'background-sync') {
event.waitUntil(doBackgroundSync());
}
});
async function doBackgroundSync() {
// Retry any pending API requests stored in IndexedDB
// This is a placeholder - implement with actual pending request logic
console.log('Background sync executed');
}
// Periodic background sync (if supported)
self.addEventListener('periodicsync', (event) => {
if (event.tag === 'update-check') {
event.waitUntil(checkForUpdates());
}
});
async function checkForUpdates() {
// Check for new data and show notifications if needed
console.log('Periodic sync executed');
}