mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
769fc3a561
Co-authored-by: Michael Leow <mleow@moneylion.com>
38 lines
905 B
Go
38 lines
905 B
Go
package controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/core"
|
|
"github.com/owncast/owncast/models"
|
|
"github.com/owncast/owncast/router/middleware"
|
|
)
|
|
|
|
//GetChatMessages gets all of the chat messages
|
|
func GetChatMessages(w http.ResponseWriter, r *http.Request) {
|
|
middleware.EnableCors(&w)
|
|
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
messages := core.GetAllChatMessages()
|
|
|
|
json.NewEncoder(w).Encode(messages)
|
|
case http.MethodPost:
|
|
var message models.ChatMessage
|
|
if err := json.NewDecoder(r.Body).Decode(&message); err != nil {
|
|
internalErrorHandler(w, err)
|
|
return
|
|
}
|
|
|
|
if err := core.SendMessageToChat(message); err != nil {
|
|
badRequestHandler(w, err)
|
|
return
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(j{"success": true})
|
|
default:
|
|
w.WriteHeader(http.StatusNotImplemented)
|
|
json.NewEncoder(w).Encode(j{"error": "method not implemented (PRs are accepted)"})
|
|
}
|
|
}
|