-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
102 lines (88 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package main
import (
"errors"
"fmt"
"encoding/json"
"net/http"
"os"
"strconv"
"time"
"github.com/gorilla/mux"
)
func main() {
router := mux.NewRouter()
// Defined in messagemap.go
messagemap := makeMessageMap()
// Use the signature of the handler to register on server routes
router.HandleFunc("/", func(writer http.ResponseWriter, req *http.Request) {
postRoot(writer, req, messagemap)
}).Methods("POST")
router.HandleFunc("/{userNameA}/{userNameB}/{fromTimeStamp}",
func(writer http.ResponseWriter, req *http.Request) {
getPeopleTime(writer, req, messagemap)
}).Methods("GET")
router.HandleFunc("/{userNameA}/{userNameB}",
func(writer http.ResponseWriter, req *http.Request) {
getPeopleTime(writer, req, messagemap)
}).Methods("GET")
// "nil" means use default server multiplexer
srv := &http.Server{
// EB uses port 5000, so I changed this just in case
Addr: ":5000",
WriteTimeout: time.Second * 15,
ReadTimeout: time.Second * 15,
IdleTimeout: time.Second * 60,
Handler: router,
}
err := srv.ListenAndServe()
if errors.Is(err, http.ErrServerClosed) {
fmt.Printf("Server closed. Typical behavior.\n")
} else if err != nil {
fmt.Printf("Error starting server: %s\n", err)
os.Exit(1)
}
}
func postRoot(writer http.ResponseWriter, request_ptr *http.Request, messagemap *MessageMap) {
fmt.Printf("heard / request, parsing as POST\n")
// fmt.Printf("request: %s\n", request_ptr)
// io.WriteString(writer, "sent!\n")
// Parse POST request and add timestamp
var me MessageEntry
err := json.NewDecoder(request_ptr.Body).Decode(&me)
if err != nil {
fmt.Printf("logging parsing error: %s\n", err)
http.Error(writer, "Failed to parse JSON", http.StatusBadRequest)
return
}
me.At = time.Now().Unix()
// Access the parsed values
fmt.Printf("Decoded message: %+v\n", me)
fmt.Printf("From: %s\n", me.From)
fmt.Printf("To: %s\n", me.To)
fmt.Printf("Message: %s\n", me.Message)
fmt.Printf("Timestamp: %d\n", me.At)
// TODO need to store sender, reciever, and message in HashMap by peoplepair
messagemap.enterMessage(me)
return
}
func getPeopleTime(writer http.ResponseWriter, request_ptr *http.Request, messagemap *MessageMap) {
fmt.Printf("heard /userA/userB/time request, responding as GET\n")
// io.WriteString(writer, "GETting your data!\n")
routeVars := mux.Vars(request_ptr)
if routeVars["fromTimeStamp"] == "" {
fmt.Printf("got no fromTimeStamp\n")
routeVars["fromTimeStamp"] = "0"
}
// fmt.Printf("request: %s\n", request_ptr)
fmt.Printf("userNameA: %s, userNameB: %s, fromTimeStamp: %s\n", routeVars["userNameA"], routeVars["userNameB"], routeVars["fromTimeStamp"])
fmt.Println()
timestamp, err := strconv.ParseInt(routeVars["fromTimeStamp"], 10, 64)
if err != nil {
fmt.Printf("Error parsing timestamp from message. Error: %s", err)
}
// Content-Type header taken care of in method
writer.Header().Set("Content-Type", "application/json")
writer.WriteHeader(http.StatusOK)
messagemap.printPeopleMessagesAfterTimestamp(getPeoplePair(routeVars["userNameA"], routeVars["userNameB"]), timestamp, writer)
return
}