well-goknown/vendor/github.com/fiatjaf/khatru/websocket.go

45 lines
844 B
Go
Raw Normal View History

package khatru
import (
2024-10-29 00:11:29 +00:00
"context"
"net/http"
"sync"
"github.com/fasthttp/websocket"
2024-10-29 00:11:29 +00:00
"github.com/puzpuzpuz/xsync/v3"
)
type WebSocket struct {
conn *websocket.Conn
mutex sync.Mutex
// original request
Request *http.Request
2024-10-29 00:11:29 +00:00
// this Context will be canceled whenever the connection is closed from the client side or server-side.
Context context.Context
cancel context.CancelFunc
// nip42
Challenge string
AuthedPublicKey string
Authed chan struct{}
2024-10-29 00:11:29 +00:00
// nip77
negentropySessions *xsync.MapOf[string, *NegentropySession]
authLock sync.Mutex
}
func (ws *WebSocket) WriteJSON(any any) error {
ws.mutex.Lock()
defer ws.mutex.Unlock()
return ws.conn.WriteJSON(any)
}
func (ws *WebSocket) WriteMessage(t int, b []byte) error {
ws.mutex.Lock()
defer ws.mutex.Unlock()
return ws.conn.WriteMessage(t, b)
}