-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdonordrive.go
161 lines (129 loc) · 3.78 KB
/
donordrive.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package donordrive
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"strings"
)
const DefautlBaseUrl = "https://donordrive.com/"
const ExtraLifeUrl = "https://www.extra-life.org"
const TryBaseUrl = "https://try.donordrive.com/"
var baseUrl = DefautlBaseUrl
var client = &http.Client{}
const (
apiEvents = "api/events"
apiEventsTeam = "api/events/%d/teams"
apiTeamParticipants = "api/teams/%d/participants"
apiTeamBadges = "api/team/%d/badges"
apiParticipantBadges = "api/participants/%d/badges"
apiParticipantDetails = "api/participants/%d"
apiParticipantDonations = "api/participants/%d/donations"
apiParticipantMilestones = "api/participants/%d/milestones"
apiParticipantsTopDonor = "api/participants/%d/donors"
)
func GetBaseUrl() string {
return baseUrl
}
func SetBaseUrl(url string) {
baseUrl = strings.TrimSpace(url)
if strings.HasSuffix(baseUrl, "/") {
return
}
baseUrl += "/"
}
func GetEvents() ([]Event, error) {
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, apiEvents))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
var results []Event
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(&results); err != nil {
return nil, err
}
return results, nil
}
func GetTeamParticipants(team int) ([]Participant, error) {
teamPath := fmt.Sprintf(apiTeamParticipants, team)
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, teamPath))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
var results []Participant
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(&results); err != nil {
return nil, err
}
return results, nil
}
func GetParticipantDonations(participantID int) ([]Donation, error) {
participantPath := fmt.Sprintf(apiParticipantDonations, participantID)
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, participantPath))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
var results []Donation
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(&results); err != nil {
return nil, err
}
return results, nil
}
func GetParticipantMilestones(participantID int) ([]Milestone, error) {
participantPath := fmt.Sprintf(apiParticipantMilestones, participantID)
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, participantPath))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
var results []Milestone
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(&results); err != nil {
return nil, err
}
return results, nil
}
func GetParticipantDetails(participantID int) (*Participant, error) {
participantPath := fmt.Sprintf(apiParticipantDetails, participantID)
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, participantPath))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
result := &Participant{}
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(result); err != nil {
return nil, err
}
return result, nil
}
func GetParticipantBadges(participantID int) ([]Badge, error) {
participantPath := fmt.Sprintf(apiParticipantBadges, participantID)
res, err := client.Get(fmt.Sprintf("%s%s", baseUrl, participantPath))
if err != nil {
return nil, err
}
if res.StatusCode != 200 {
return nil, errors.New(fmt.Sprintf("%d returned", res.StatusCode))
}
var results []Badge
decoder := json.NewDecoder(res.Body)
if err := decoder.Decode(&results); err != nil {
return nil, err
}
return results, nil
}