-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
87 lines (62 loc) · 1.34 KB
/
main.go
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package main
import (
"encoding/json"
"golang.org/x/net/websocket"
"net/http"
)
func main() {
mux := http.NewServeMux()
fs := http.FileServer(http.Dir("./static/"))
mux.Handle("/", http.HandlerFunc(rootHandler))
mux.Handle("/static/", http.StripPrefix("/static/", fs))
mux.Handle("/todo", http.HandlerFunc(todoHandler))
mux.Handle("/liveadd", websocket.Handler(liveAddHandler))
http.ListenAndServe(":8080", mux)
}
func rootHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Web server"))
}
//gorilla
// negroni
// martini
// bone
// httprouter
func todoHandler(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
todoList := GetAll()
result, err := json.Marshal(todoList)
if err != nil {
panic(err)
}
w.Header().Set("Content-Type", "application/json")
w.Write(result)
break
case "POST":
decoder := json.NewDecoder(r.Body)
var todo Todo
err := decoder.Decode(&todo)
if err != nil {
panic(err)
}
AddTodo(todo)
w.WriteHeader(http.StatusOK)
break
case "DELETE":
var id int
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&id); err != nil {
panic(err)
}
DeleteTodo(id)
break
}
}
func liveAddHandler(conn *websocket.Conn) {
var todo Todo
for {
websocket.JSON.Receive(conn, &todo)
AddTodo(todo)
websocket.JSON.Send(conn, GetAll())
}
}