1cf8bfcbe2
test / test (push) Has been cancelled
The CSRF ADR, guide.md, architecture.md route table, the internal/backup package comment, roadmap/dmarc-reports admin.dmarc_report_email references, the e2e coverage summary, and the setupManager/store package comments still described the pre-1.2.0 single-administrator panel or stale implementation details. Closes P2 of docs/plans/code-review.md; no behaviour change. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Co-authored-by: Cursor <cursoragent@cursor.com>
122 lines
3.0 KiB
Go
122 lines
3.0 KiB
Go
package auth
|
|
|
|
import (
|
|
"crypto/subtle"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/mixeme/selfpost/internal/store"
|
|
)
|
|
|
|
// setupTokenTTL is the lifetime of a setup token (security.md). After it
|
|
// elapses the token is regenerated and re-announced on the next /setup hit.
|
|
const setupTokenTTL = 10 * time.Minute
|
|
|
|
// setupManager owns the one-time administrator setup token. The token itself is
|
|
// ephemeral (regenerated on restart or expiry) and lives only in memory; the
|
|
// persistent "setup complete" fact is the presence of any row in the store's
|
|
// users table (`store.UserExists`), so once the first global administrator is
|
|
// created the token is gone for good (security.md).
|
|
type setupManager struct {
|
|
store *store.Store
|
|
hostname string
|
|
tokenPath string
|
|
|
|
mu sync.Mutex
|
|
token string
|
|
expiresAt time.Time
|
|
}
|
|
|
|
func newSetupManager(st *store.Store, hostname, tokenPath string) *setupManager {
|
|
return &setupManager{store: st, hostname: hostname, tokenPath: tokenPath}
|
|
}
|
|
|
|
func (m *setupManager) bootstrap() error {
|
|
done, err := m.store.UserExists()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if done {
|
|
m.clearTokenFile()
|
|
return nil
|
|
}
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
m.regenerateLocked()
|
|
return nil
|
|
}
|
|
|
|
func (m *setupManager) activeToken() (string, bool) {
|
|
done, err := m.store.UserExists()
|
|
if err != nil {
|
|
logf("panel: setup: user check failed: %v", err)
|
|
return "", false
|
|
}
|
|
if done {
|
|
return "", false
|
|
}
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if m.token == "" || time.Now().After(m.expiresAt) {
|
|
m.regenerateLocked()
|
|
}
|
|
return m.token, true
|
|
}
|
|
|
|
func (m *setupManager) validate(provided string) bool {
|
|
token, ok := m.activeToken()
|
|
if !ok {
|
|
return false
|
|
}
|
|
return subtle.ConstantTimeCompare([]byte(provided), []byte(token)) == 1
|
|
}
|
|
|
|
func (m *setupManager) complete() {
|
|
m.mu.Lock()
|
|
m.token = ""
|
|
m.expiresAt = time.Time{}
|
|
m.mu.Unlock()
|
|
m.clearTokenFile()
|
|
}
|
|
|
|
func (m *setupManager) regenerateLocked() {
|
|
m.token = randomToken(16)
|
|
m.expiresAt = time.Now().Add(setupTokenTTL)
|
|
m.announce(m.token)
|
|
}
|
|
|
|
func (m *setupManager) announce(token string) {
|
|
url := m.setupURL(token)
|
|
logf("panel: ==================================================================")
|
|
logf("panel: SelfPost first-run setup — open this one-time link within %s:", setupTokenTTL)
|
|
logf("panel: %s", url)
|
|
logf("panel: (also written to %s)", m.tokenPath)
|
|
logf("panel: ==================================================================")
|
|
|
|
if m.tokenPath == "" {
|
|
return
|
|
}
|
|
if err := os.WriteFile(m.tokenPath, []byte(url+"\n"), 0o600); err != nil {
|
|
logf("panel: setup: could not write token file %s: %v", m.tokenPath, err)
|
|
}
|
|
}
|
|
|
|
func (m *setupManager) setupURL(token string) string {
|
|
host := m.hostname
|
|
if host == "" {
|
|
host = "localhost"
|
|
}
|
|
return fmt.Sprintf("https://%s/setup/%s", host, token)
|
|
}
|
|
|
|
func (m *setupManager) clearTokenFile() {
|
|
if m.tokenPath == "" {
|
|
return
|
|
}
|
|
if err := os.Remove(m.tokenPath); err != nil && !os.IsNotExist(err) {
|
|
logf("panel: setup: could not remove token file %s: %v", m.tokenPath, err)
|
|
}
|
|
}
|