34 lines
850 B
Go
34 lines
850 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Webhook is an event that is sent to 3rd party, external services with details about something that took place within an Owncast server.
|
||
|
type Webhook struct {
|
||
|
ID int `json:"id"`
|
||
|
URL string `json:"url"`
|
||
|
Events []EventType `json:"events"`
|
||
|
Timestamp time.Time `json:"timestamp"`
|
||
|
LastUsed *time.Time `json:"lastUsed"`
|
||
|
}
|
||
|
|
||
|
// For an event to be seen as "valid" it must live in this slice.
|
||
|
var validEvents = []EventType{
|
||
|
MessageSent,
|
||
|
UserJoined,
|
||
|
UserNameChanged,
|
||
|
VisibiltyToggled,
|
||
|
StreamStarted,
|
||
|
StreamStopped,
|
||
|
}
|
||
|
|
||
|
// HasValidEvents will verify that all the events provided are valid.
|
||
|
// This is not a efficient method.
|
||
|
func HasValidEvents(events []EventType) bool {
|
||
|
for _, event := range events {
|
||
|
if !findItemInSlice(validEvents, event) {
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|