- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapi.go
More file actions
Latest commit
63 lines (52 loc) · 1.23 KB
/
Copy pathapi.go
File metadata and controls
63 lines (52 loc) · 1.23 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
package testifytutorial
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"google.golang.org/appengine"
"google.golang.org/appengine/datastore"
)
typeLocationstruct {
Namestring
Latfloat64
Lngfloat64
}
constLocationKind="Location"
funcgetLocations(w http.ResponseWriter, r*http.Request) {
ctx:=appengine.NewContext(r)
varlocs []Location
q:=datastore.NewQuery(LocationKind)
_, err:=q.GetAll(ctx, &locs)
iferr!=nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
res, err:=json.Marshal(locs)
iferr!=nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
w.Write(res)
}
funcaddLocation(w http.ResponseWriter, r*http.Request) {
ctx:=appengine.NewContext(r)
locationKey:=datastore.NewIncompleteKey(ctx, LocationKind, nil)
reqBody, err:=ioutil.ReadAll(r.Body)
iferr!=nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
varlocLocation
err=json.Unmarshal(reqBody, &loc)
iferr!=nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
_, err=datastore.Put(ctx, locationKey, &loc)
iferr!=nil {
w.Write([]byte(fmt.Sprintf(`{"Error":"%v"}`, err)))
return
}
w.Write([]byte(`{"addLocation":"success"}`))
}