-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
74 lines (51 loc) · 1.37 KB
/
app.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
package main
import (
"log"
)
func GetEvents() interface{} {
// step 1: fetch records
events := FetchEvents()
log.Println( events )
// step 2: map to json structs for serialization/marshalling
type JsEvent struct {
Key string `json:"key"`
Title string `json:"title"`
}
data := []*JsEvent{}
for _,event := range events {
data = append( data,
&JsEvent {
Key: event.Key,
Title: event.Title, } )
}
return data
}
func GetTeamsByEvent( eventKey string ) interface{} {
// step 1: fetch records
event := FetchEventByKey( eventKey )
log.Println( event )
teams := FetchTeamsByEvent( event )
log.Println( teams )
// step 2: map to json structs for serialization/marshalling
type JsTeam struct {
Key string `json:"key"`
Title string `json:"title"`
Code string `json:"code"`
}
type JsEvent struct {
Key string `json:"key"`
Title string `json:"title"`
Teams []*JsTeam `json:"teams"`
}
data := JsEvent {
Key: event.Key,
Title: event.Title,
}
for _,team := range teams {
data.Teams = append( data.Teams,
&JsTeam{ Key: team.Key,
Title: team.Title,
Code: team.Code, } )
}
return data
}