You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
744 B
30 lines
744 B
package controllers |
|
|
|
import ( |
|
"encoding/json" |
|
"net/http" |
|
|
|
"github.com/owncast/owncast/core" |
|
"github.com/owncast/owncast/router/middleware" |
|
log "github.com/sirupsen/logrus" |
|
) |
|
|
|
// GetChatMessages gets all of the chat messages. |
|
func GetChatMessages(w http.ResponseWriter, r *http.Request) { |
|
middleware.EnableCors(&w) |
|
w.Header().Set("Content-Type", "application/json") |
|
|
|
switch r.Method { |
|
case http.MethodGet: |
|
messages := core.GetAllChatMessages() |
|
|
|
if err := json.NewEncoder(w).Encode(messages); err != nil { |
|
log.Errorln(err) |
|
} |
|
default: |
|
w.WriteHeader(http.StatusNotImplemented) |
|
if err := json.NewEncoder(w).Encode(j{"error": "method not implemented (PRs are accepted)"}); err != nil { |
|
InternalErrorHandler(w, err) |
|
} |
|
} |
|
}
|
|
|