From 2785f4cb0611637c7db0c797df3b174e8448276e Mon Sep 17 00:00:00 2001 From: 1e99 Date: Sat, 22 Mar 2025 14:19:09 +0100 Subject: [PATCH] show how long a session has existed for --- index.tmpl | 2 ++ sessions/sessions.go | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/index.tmpl b/index.tmpl index f2c3eeb..3797976 100644 --- a/index.tmpl +++ b/index.tmpl @@ -57,6 +57,7 @@ ID Description Created at + Exists for Actions @@ -67,6 +68,7 @@ {{ $session.Id }} {{ $session.Description }} {{ $session.CreatedAt.Format "02.01.2006 15:04:05" }} + {{ $session.ExistsFor.Round 1000000000 }} {{/* 1 second */}}
diff --git a/sessions/sessions.go b/sessions/sessions.go index 401e9f5..12d23d0 100644 --- a/sessions/sessions.go +++ b/sessions/sessions.go @@ -8,6 +8,10 @@ type Session struct { CreatedAt time.Time } +func (s *Session) ExistsFor() time.Duration { + return time.Now().Sub(s.CreatedAt) +} + type Storage interface { // Check if the storage contains any sessions HasSessions() (bool, error)