summaryrefslogtreecommitdiff
path: root/main.go
blob: 991c54a06f79035c651f55ed4b9c3ccbc79943f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main

import (
	"encoding/json"
	"log"
	"net/http"

	"github.com/gorilla/mux"
)

func handleHome(w http.ResponseWriter, r *http.Request) {
	w.Write([]byte("stats OK"))
}

func handleEntryOptions(w http.ResponseWriter, r *http.Request) {
	w.Header().Set("Access-Control-Allow-Origin", "*")
	w.Header().Set("Access-Control-Allow-Methods", "POST")
	w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
	w.WriteHeader(http.StatusNoContent)
}

func handleEntryPost(w http.ResponseWriter, r *http.Request) {
	w.Header().Set("Access-Control-Allow-Origin", "*")
	w.Header().Set("Access-Control-Allow-Methods", "POST")
	w.Header().Set("Access-Control-Allow-Headers", "Content-Type")

	var entry Entry

	err := json.NewDecoder(r.Body).Decode(&entry)
	if err != nil {
		http.Error(w, err.Error(), http.StatusBadRequest)
		return
	}

	err = InsertEntry(&entry)
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}
}

func handleRequests() {
	router := mux.NewRouter()
	router.HandleFunc("/", handleHome)
	router.HandleFunc("/entry", handleEntryPost).Methods("POST")
	router.HandleFunc("/entry", handleEntryOptions).Methods("OPTIONS")

	log.Fatal(http.ListenAndServe(":8080", router))
}

func main() {
	log.Println("Starting up")
	InitEntries()
	defer CloseEntries()
	handleRequests()
}