show how long a session has existed for

This commit is contained in:
1e99 2025-03-22 14:19:09 +01:00
parent 8eb3536582
commit 2785f4cb06
2 changed files with 6 additions and 0 deletions

View file

@ -57,6 +57,7 @@
<th style="width: 10%">ID</th> <th style="width: 10%">ID</th>
<th style="width: 50%">Description</th> <th style="width: 50%">Description</th>
<th style="width: 20%">Created at</th> <th style="width: 20%">Created at</th>
<th style="width: 25%">Exists for</th>
<th style="width: 15%">Actions</th> <th style="width: 15%">Actions</th>
</tr> </tr>
</thead> </thead>
@ -67,6 +68,7 @@
<td>{{ $session.Id }}</td> <td>{{ $session.Id }}</td>
<td>{{ $session.Description }}</td> <td>{{ $session.Description }}</td>
<td>{{ $session.CreatedAt.Format "02.01.2006 15:04:05" }}</td> <td>{{ $session.CreatedAt.Format "02.01.2006 15:04:05" }}</td>
<td>{{ $session.ExistsFor.Round 1000000000 }}</td> {{/* 1 second */}}
<td> <td>
<form method="post" action="/end_session" enctype="multipart/form-data"> <form method="post" action="/end_session" enctype="multipart/form-data">
<input type="hidden" name="session_id" value="{{ $session.Id }}"> <input type="hidden" name="session_id" value="{{ $session.Id }}">

View file

@ -8,6 +8,10 @@ type Session struct {
CreatedAt time.Time CreatedAt time.Time
} }
func (s *Session) ExistsFor() time.Duration {
return time.Now().Sub(s.CreatedAt)
}
type Storage interface { type Storage interface {
// Check if the storage contains any sessions // Check if the storage contains any sessions
HasSessions() (bool, error) HasSessions() (bool, error)