Compare commits

...

3 Commits

Author SHA1 Message Date
bdd1cae5ae fix(dashboard): fix temperature gauge positioning when low temp is 0
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m6s
2025-11-19 10:34:47 +00:00
Ona
3af86d80c7 fix(backend): add token expiration handling for beszel auth
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m18s
- Track token expiry time to prevent using expired tokens
- Set token lifetime to 50 minutes (safe margin before 1hr expiry)
- Add comprehensive logging for auth events and errors
- Improve error responses with status text
- Fixes system tiles stopping after ~1 hour of operation

Co-authored-by: Ona <no-reply@ona.com>
2025-11-17 22:48:48 +00:00
8093f563f9 fix(dashboard): make kuromi wider
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m5s
2025-11-01 01:29:06 +00:00
5 changed files with 39 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ beszel.get("/systems", async (c) => {
const token = c.get("beszelToken")
if (!beszelHost) {
console.error("[Beszel API] BESZEL_HOST environment variable not set")
return c.json({ error: "BESZEL_HOST environment variable not set" }, 500)
}
@@ -42,10 +43,17 @@ beszel.get("/systems", async (c) => {
})
if (!response.ok) {
const errorText = await response.text()
console.error(
`[Beszel API] Failed to fetch systems: ${response.status} ${response.statusText}`,
errorText ? `- ${errorText}` : "",
)
return new Response(
JSON.stringify({
error: "Failed to fetch Beszel data",
status: response.status,
statusText: response.statusText,
}),
{
status: response.status,
@@ -66,12 +74,15 @@ beszel.get("/systems", async (c) => {
},
}))
console.log(`[Beszel API] Successfully fetched ${systems.length} systems`)
return c.json({
lastUpdated: new Date().toISOString(),
systems,
totalSystems: systems.length,
})
} catch (error) {
console.error("[Beszel API] Internal server error:", error)
return c.json({ error: "Internal server error", message: String(error) }, 500)
}
})

View File

@@ -6,12 +6,26 @@ interface BeszelAuthResponse {
export function beszelAuth(): MiddlewareHandler {
let cachedToken: string | null = null
let tokenExpiry: number | null = null
// Token lifetime: 50 minutes (tokens typically expire after 1 hour, refresh before that)
const TOKEN_LIFETIME_MS = 50 * 60 * 1000
const authenticate = async (): Promise<string> => {
if (cachedToken) {
const now = Date.now()
// Return cached token if it exists and hasn't expired
if (cachedToken && tokenExpiry && now < tokenExpiry) {
return cachedToken
}
// Log re-authentication for debugging
if (cachedToken && tokenExpiry && now >= tokenExpiry) {
console.log("[Beszel Auth] Token expired, re-authenticating...")
} else {
console.log("[Beszel Auth] Initial authentication...")
}
const beszelHost = process.env.BESZEL_HOST
const beszelEmail = process.env.BESZEL_EMAIL
const beszelPassword = process.env.BESZEL_PASSWORD
@@ -34,11 +48,16 @@ export function beszelAuth(): MiddlewareHandler {
})
if (!response.ok) {
const errorText = await response.text()
console.error(`[Beszel Auth] Authentication failed: ${response.status} - ${errorText}`)
throw new Error(`Beszel authentication failed: ${response.status}`)
}
const data = (await response.json()) as BeszelAuthResponse
cachedToken = data.token
tokenExpiry = now + TOKEN_LIFETIME_MS
console.log(`[Beszel Auth] Authentication successful, token valid until ${new Date(tokenExpiry).toISOString()}`)
return cachedToken
}
@@ -49,6 +68,7 @@ export function beszelAuth(): MiddlewareHandler {
c.set("beszelToken", token)
await next()
} catch (error) {
console.error("[Beszel Auth] Middleware error:", error)
return c.json({ error: "Authentication failed", message: String(error) }, 500)
}
}

View File

@@ -251,7 +251,11 @@ function WeatherTile() {
const temperature = Math.round(currentWeather.temperature)
const lowTemp = Math.round(dailyForecastData?.forecastDaily?.days[0].temperatureMin ?? 0)
const highTemp = Math.round(dailyForecastData?.forecastDaily?.days[0].temperatureMax ?? 0)
const percentage = lowTemp && highTemp ? (temperature - lowTemp) / (highTemp - lowTemp) : 0
// Calculate percentage: handle case where lowTemp might be 0 (falsy) by checking for valid numbers
const tempRange = highTemp - lowTemp
const percentage = tempRange !== 0 && !Number.isNaN(tempRange)
? Math.max(0, Math.min(1, (temperature - lowTemp) / tempRange))
: 0
const highlightIndexStart = Math.floor((1 - percentage) * 23)
const WeatherIcon = getWeatherIcon(currentWeather.conditionCode)

View File

@@ -15,7 +15,7 @@ export function Kuromi() {
const currentFrame = kuromiFrames[frameIndex]
return (
<pre className="leading-none select-none font-mono text-black dark:text-neutral-100 scale-[5%]">
<pre className="leading-none tracking-[0.6em] select-none font-mono text-black dark:text-white scale-[5%]">
{currentFrame.map((line, index) => (
// biome-ignore lint/suspicious/noArrayIndexKey: frame lines don't have unique identifiers
<div key={index}>{line}</div>

View File

@@ -1,5 +1,6 @@
{
"lockfileVersion": 1,
"configVersion": 0,
"workspaces": {
"": {
"name": "monorepo",