-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi.go
63 lines (52 loc) · 1.23 KB
/
api.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
package testifytutorial
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"google.golang.org/appengine"
"google.golang.org/appengine/datastore"
)
type Location struct {
Name string
Lat float64
Lng float64
}
const LocationKind = "Location"
func getLocations(w http.ResponseWriter, r *http.Request) {
ctx := appengine.NewContext(r)
var locs []Location
q := datastore.NewQuery(LocationKind)
_, err := q.GetAll(ctx, &locs)
if err != nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
res, err := json.Marshal(locs)
if err != nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
w.Write(res)
}
func addLocation(w http.ResponseWriter, r *http.Request) {
ctx := appengine.NewContext(r)
locationKey := datastore.NewIncompleteKey(ctx, LocationKind, nil)
reqBody, err := ioutil.ReadAll(r.Body)
if err != nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
var loc Location
err = json.Unmarshal(reqBody, &loc)
if err != nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
_, err = datastore.Put(ctx, locationKey, &loc)
if err != nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
w.Write([]byte(`{"addLocation":"success"}`))
}