Compare commits
No commits in common. "2da7c8a4c1eceacdc086cea2a996b427696fa679" and "b5406b1451e62c90e7fe3b85b3ff61019605526b" have entirely different histories.
2da7c8a4c1
...
b5406b1451
@ -1,7 +1,6 @@
|
||||
package sse
|
||||
|
||||
import (
|
||||
"gitea.bvbej.com/bvbej/base-golang/pkg/mux"
|
||||
"github.com/gin-gonic/gin"
|
||||
"io"
|
||||
"net/http"
|
||||
@ -12,14 +11,13 @@ import (
|
||||
var _ Server = (*event)(nil)
|
||||
|
||||
type Server interface {
|
||||
GinHandle(ctx *gin.Context, user any)
|
||||
HandlerFunc() mux.HandlerFunc
|
||||
HandlerFunc(auth func(c *gin.Context) (string, error)) gin.HandlerFunc
|
||||
Push(user, name, msg string) bool
|
||||
Broadcast(name, msg string)
|
||||
}
|
||||
|
||||
type clientChan struct {
|
||||
User any
|
||||
User string
|
||||
Chan chan msgChan
|
||||
}
|
||||
|
||||
@ -33,7 +31,7 @@ type event struct {
|
||||
Count atomic.Int32
|
||||
|
||||
Register chan clientChan
|
||||
Unregister chan any
|
||||
Unregister chan string
|
||||
}
|
||||
|
||||
func NewServer() Server {
|
||||
@ -41,7 +39,7 @@ func NewServer() Server {
|
||||
SessionList: sync.Map{},
|
||||
Count: atomic.Int32{},
|
||||
Register: make(chan clientChan),
|
||||
Unregister: make(chan any),
|
||||
Unregister: make(chan string),
|
||||
}
|
||||
|
||||
go e.listen()
|
||||
@ -67,40 +65,38 @@ func (stream *event) listen() {
|
||||
}
|
||||
}
|
||||
|
||||
func (stream *event) GinHandle(ctx *gin.Context, user any) {
|
||||
if user == nil {
|
||||
ctx.AbortWithStatus(http.StatusUnauthorized)
|
||||
return
|
||||
}
|
||||
e := make(chan msgChan)
|
||||
client := clientChan{
|
||||
User: user,
|
||||
Chan: e,
|
||||
}
|
||||
stream.Register <- client
|
||||
defer func() {
|
||||
stream.Unregister <- user
|
||||
}()
|
||||
|
||||
ctx.Writer.Header().Set("Content-Type", "text/event-stream")
|
||||
ctx.Writer.Header().Set("Cache-Control", "no-cache")
|
||||
ctx.Writer.Header().Set("Connection", "keep-alive")
|
||||
ctx.Writer.Header().Set("Transfer-Encoding", "chunked")
|
||||
|
||||
ctx.Stream(func(w io.Writer) bool {
|
||||
if msg, ok := <-e; ok {
|
||||
ctx.SSEvent(msg.Name, msg.Message)
|
||||
return true
|
||||
func (stream *event) HandlerFunc(auth func(c *gin.Context) (string, error)) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
user, err := auth(c)
|
||||
if err != nil {
|
||||
c.AbortWithStatus(http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
||||
ctx.Next()
|
||||
}
|
||||
e := make(chan msgChan)
|
||||
client := clientChan{
|
||||
User: user,
|
||||
Chan: e,
|
||||
}
|
||||
stream.Register <- client
|
||||
defer func() {
|
||||
stream.Unregister <- user
|
||||
}()
|
||||
|
||||
func (stream *event) HandlerFunc() mux.HandlerFunc {
|
||||
return func(c mux.Context) {
|
||||
stream.GinHandle(c.Context(), c.Auth())
|
||||
c.Writer.Header().Set("Content-Type", "text/event-stream")
|
||||
c.Writer.Header().Set("Cache-Control", "no-cache")
|
||||
c.Writer.Header().Set("Connection", "keep-alive")
|
||||
c.Writer.Header().Set("Transfer-Encoding", "chunked")
|
||||
|
||||
c.Stream(func(w io.Writer) bool {
|
||||
if msg, ok := <-e; ok {
|
||||
c.SSEvent(msg.Name, msg.Message)
|
||||
return true
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
||||
c.Next()
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user