mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
42 lines
640 B
Go
42 lines
640 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/gofrs/uuid/v3"
|
|
)
|
|
|
|
type (
|
|
hooker struct {
|
|
hooks map[string]func(any)
|
|
lock sync.RWMutex
|
|
}
|
|
)
|
|
|
|
func newHooker() *hooker { return &hooker{hooks: map[string]func(any){}} }
|
|
|
|
func (h *hooker) Ping(payload any) {
|
|
h.lock.RLock()
|
|
defer h.lock.RUnlock()
|
|
|
|
for _, hf := range h.hooks {
|
|
hf(payload)
|
|
}
|
|
}
|
|
|
|
func (h *hooker) Register(hook func(any)) func() {
|
|
h.lock.Lock()
|
|
defer h.lock.Unlock()
|
|
|
|
id := uuid.Must(uuid.NewV4()).String()
|
|
h.hooks[id] = hook
|
|
|
|
return func() { h.unregister(id) }
|
|
}
|
|
|
|
func (h *hooker) unregister(id string) {
|
|
h.lock.Lock()
|
|
defer h.lock.Unlock()
|
|
|
|
delete(h.hooks, id)
|
|
}
|