mirror of
https://github.com/fiatjaf/khatru.git
synced 2025-03-18 05:42:19 +01:00
30 lines
551 B
Go
30 lines
551 B
Go
package khatru
|
|
|
|
import (
|
|
"context"
|
|
"hash/maphash"
|
|
"regexp"
|
|
"unsafe"
|
|
)
|
|
|
|
const (
|
|
AUTH_CONTEXT_KEY = iota
|
|
WS_KEY = iota
|
|
)
|
|
|
|
var nip20prefixmatcher = regexp.MustCompile(`^\w+: `)
|
|
|
|
func GetConnection(ctx context.Context) *WebSocket {
|
|
return ctx.Value(WS_KEY).(*WebSocket)
|
|
}
|
|
|
|
func GetAuthed(ctx context.Context) string {
|
|
authedPubkey := ctx.Value(AUTH_CONTEXT_KEY)
|
|
if authedPubkey == nil {
|
|
return ""
|
|
}
|
|
return authedPubkey.(string)
|
|
}
|
|
|
|
func pointerHasher[V any](_ maphash.Seed, k *V) uint64 { return uint64(uintptr(unsafe.Pointer(k))) }
|