mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
10055664bb
* add tests for webhook events * atomic.Uint32 is not in Go 1.18
27 lines
730 B
Go
27 lines
730 B
Go
package webhooks
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/owncast/owncast/core/data"
|
|
"github.com/owncast/owncast/models"
|
|
"github.com/teris-io/shortid"
|
|
)
|
|
|
|
// SendStreamStatusEvent will send all webhook destinations the current stream status.
|
|
func SendStreamStatusEvent(eventType models.EventType) {
|
|
sendStreamStatusEvent(eventType, shortid.MustGenerate(), time.Now())
|
|
}
|
|
|
|
func sendStreamStatusEvent(eventType models.EventType, id string, timestamp time.Time) {
|
|
SendEventToWebhooks(WebhookEvent{
|
|
Type: eventType,
|
|
EventData: map[string]interface{}{
|
|
"id": id,
|
|
"name": data.GetServerName(),
|
|
"summary": data.GetServerSummary(),
|
|
"streamTitle": data.GetStreamTitle(),
|
|
"timestamp": timestamp,
|
|
},
|
|
})
|
|
}
|