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.
43 lines
910 B
43 lines
910 B
package controllers |
|
|
|
import ( |
|
"encoding/json" |
|
"net/http" |
|
|
|
"github.com/owncast/owncast/models" |
|
) |
|
|
|
type j map[string]interface{} |
|
|
|
func internalErrorHandler(w http.ResponseWriter, err error) { |
|
if err == nil { |
|
return |
|
} |
|
|
|
w.WriteHeader(http.StatusInternalServerError) |
|
if err := json.NewEncoder(w).Encode(j{"error": err.Error()}); err != nil { |
|
internalErrorHandler(w, err) |
|
} |
|
} |
|
|
|
func badRequestHandler(w http.ResponseWriter, err error) { |
|
if err == nil { |
|
return |
|
} |
|
|
|
w.WriteHeader(http.StatusBadRequest) |
|
if err := json.NewEncoder(w).Encode(j{"error": err.Error()}); err != nil { |
|
internalErrorHandler(w, err) |
|
} |
|
} |
|
|
|
func WriteSimpleResponse(w http.ResponseWriter, success bool, message string) { |
|
response := models.BaseAPIResponse{ |
|
Success: success, |
|
Message: message, |
|
} |
|
w.WriteHeader(http.StatusOK) |
|
if err := json.NewEncoder(w).Encode(response); err != nil { |
|
internalErrorHandler(w, err) |
|
} |
|
}
|
|
|