34 lines
716 B
Go
34 lines
716 B
Go
package vote
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"tomatentum.net/outfit-voting-abi26/internal/database"
|
|
)
|
|
|
|
func GetVoteResultEndpoint(w http.ResponseWriter, r *http.Request) {
|
|
entries, err := database.GetVotes()
|
|
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
w.Header().Add("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(entries)
|
|
}
|
|
|
|
func GetVoteResultSingleEndoint(w http.ResponseWriter, r *http.Request) {
|
|
id := r.PathValue("id")
|
|
entry, err := database.GetVote(id)
|
|
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
w.Header().Add("Content-Type", "application/json")
|
|
json.NewEncoder(w).Encode(entry)
|
|
}
|