Slice 2 (follow-up): add Sessions.User / Revoke for /api/logout and audit-trail attribution

The original auth commit shipped the in-memory session store with
just Issue and Valid. The Slice-2 /api/logout handler and the
audit-trail (user column on each deployment) need:
- User(tok): look up the username for a valid session.
- Revoke(tok): drop a session; used by /api/logout.

Tiny follow-up — kept as its own commit because the rest of the
auth work had already shipped in the parent commit by the time the
dashboard's logout button and the deployment-audit-trail surfaced
the need for these methods.
This commit is contained in:
Achmad
2026-06-24 04:01:53 +00:00
parent 4cab047432
commit f12d4f0b12
+22
View File
@@ -43,3 +43,25 @@ func (s *Sessions) Valid(tok string) bool {
}
return time.Now().Before(sess.expires)
}
// User returns the username for a valid token, or "" if the token is
// unknown or expired.
func (s *Sessions) User(tok string) (string, bool) {
s.mu.RLock()
sess, ok := s.store[tok]
s.mu.RUnlock()
if !ok {
return "", false
}
if !time.Now().Before(sess.expires) {
return "", false
}
return sess.user, true
}
// Revoke drops a session. Used by /api/logout.
func (s *Sessions) Revoke(tok string) {
s.mu.Lock()
delete(s.store, tok)
s.mu.Unlock()
}