-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
71 lines (51 loc) · 1.24 KB
/
main.go
File metadata and controls
71 lines (51 loc) · 1.24 KB
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
package main
import (
"fmt"
"github.com/gorilla/mux"
"labix.org/v2/mgo"
"labix.org/v2/mgo/bson"
"net/http"
"strconv"
"time"
"os"
)
//ROUTING
func main() {
mainRouter := mux.NewRouter()
mainRouter.HandleFunc("/count", count).Methods("GET")
mainRouter.HandleFunc("/add", add).Methods("POST")
http.Handle("/", mainRouter)
err := http.ListenAndServe(":8080", nil)
if err != nil {
panic(err) }
}
func add(w http.ResponseWriter, r *http.Request) {
urlValues := r.URL.Query()
string := urlValues.Get("string")
query := bson.M{
"s": string,
}
s, err := mgo.DialWithTimeout("127.0.0.1:27017", 100*time.Millisecond)
if err != nil {
w.Write([]byte(fmt.Sprintf("%s", err)))
} else {
c := s.DB("daffe").C("dummy")
_ = c.Insert(query)
w.Write([]byte("OK!!!"))
s.Close()
}
}
func count(w http.ResponseWriter, r *http.Request) {
addr := os.Getenv("MONGO_PORT_27017_TCP_ADDR")
port := os.Getenv("MONGO_PORT_27017_TCP_PORT")
addrport := fmt.Sprintf("%s:%s", addr, port)
s, err := mgo.DialWithTimeout(addrport, 100*time.Millisecond)
if err != nil {
w.Write([]byte(fmt.Sprintf("%s - %s", err, addrport)))
} else {
c := s.DB("daffe").C("dummy")
ct, _ := c.Count()
w.Write([]byte(strconv.Itoa(ct)))
s.Close()
}
}