-
Notifications
You must be signed in to change notification settings - Fork 1
/
rankings.go
309 lines (295 loc) · 9.41 KB
/
rankings.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
package main
import (
"encoding/json"
"fmt"
"net/http"
"strconv"
"time"
"github.com/vocdoni/vote-frame/mongo"
"go.vocdoni.io/dvote/httprouter"
"go.vocdoni.io/dvote/httprouter/apirest"
"go.vocdoni.io/dvote/log"
)
func (v *vocdoniHandler) rankingByElectionsCreated(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
users, err := v.db.UsersByElectionNumber()
if err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
jresponse, err := json.Marshal(map[string]any{
"users": users,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) rankingByVotes(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
users, err := v.db.UsersByVoteNumber()
if err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
jresponse, err := json.Marshal(map[string]any{
"users": users,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) rankingOfElections(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
dbElections, err := v.db.ElectionsByVoteNumber()
if err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
// decode the elections to the response format
var elections []*RankedElection
for i := range dbElections {
var username, displayname string
user, err := v.db.User(dbElections[i].UserID)
if err != nil {
log.Warnw("failed to fetch user", "error", err)
username = "unknown"
} else {
username = user.Username
displayname = user.Displayname
}
var community *Community
if dbElections[i].Community != nil {
dbCommunity, err := v.db.Community(dbElections[i].Community.ID)
if err != nil {
log.Warnw("failed to fetch community", "error", err)
} else if dbCommunity != nil {
community = &Community{
ID: dbCommunity.ID,
Name: dbCommunity.Name,
LogoURL: dbCommunity.ImageURL,
GroupChatURL: dbCommunity.GroupChatURL,
Notifications: dbCommunity.Notifications,
Channels: dbCommunity.Channels,
}
}
}
elections = append(elections, &RankedElection{
dbElections[i].CreatedTime,
dbElections[i].ElectionID,
dbElections[i].LastVoteTime,
dbElections[i].Question,
dbElections[i].CastedVotes,
uint64(dbElections[i].FarcasterUserCount),
username,
displayname,
community,
})
}
// encode the response to json including pagination information
jresponse, err := json.Marshal(RankedElections{
Elections: elections,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) latestElectionsHandler(_ *apirest.APIdata, ctx *httprouter.HTTPContext) error {
// get optional parameters to paginate the results
limit := maxPaginatedItems
strLimit := ctx.Request.URL.Query().Get("limit")
if strLimit != "" {
// if the query has the limit parameter, list the first n elections
n, err := strconv.Atoi(strLimit)
if err != nil {
return ctx.Send([]byte("invalid limit"), http.StatusBadRequest)
}
limit = int64(n)
if limit > maxPaginatedItems {
limit = maxPaginatedItems
} else if limit < minPaginatedItems {
limit = minPaginatedItems
}
}
offset := int64(0)
strOffset := ctx.Request.URL.Query().Get("offset")
if strOffset != "" {
// if the query has the offset parameter, list elections starting from
// the n th election
n, err := strconv.Atoi(strOffset)
if err != nil {
return ctx.Send([]byte("invalid offset"), http.StatusBadRequest)
}
offset = int64(n)
}
// get elections from the database
dbElections, total, err := v.db.LatestElections(limit, offset)
if err != nil {
return fmt.Errorf("failed to get latest elections: %w", err)
}
// decode the elections to the response format
var elections []*RankedElection
for i := range dbElections {
var username, displayname string
user, err := v.db.User(dbElections[i].UserID)
if err != nil {
log.Warnw("failed to fetch user", "error", err)
username = "unknown"
} else {
username = user.Username
displayname = user.Displayname
}
var community *Community
if dbElections[i].Community != nil {
dbCommunity, err := v.db.Community(dbElections[i].Community.ID)
if err != nil {
log.Warnw("failed to fetch community", "error", err)
} else if dbCommunity != nil {
community = &Community{
ID: dbCommunity.ID,
Name: dbCommunity.Name,
LogoURL: dbCommunity.ImageURL,
GroupChatURL: dbCommunity.GroupChatURL,
Notifications: dbCommunity.Notifications,
Channels: dbCommunity.Channels,
}
}
}
elections = append(elections, &RankedElection{
dbElections[i].CreatedTime,
dbElections[i].ElectionID,
dbElections[i].LastVoteTime,
dbElections[i].Question,
dbElections[i].CastedVotes,
uint64(dbElections[i].FarcasterUserCount),
username,
displayname,
community,
})
}
// encode the response to json including pagination information
jresponse, err := json.Marshal(RankedElections{
Elections: elections,
Pagination: &Pagination{
Total: total,
Limit: limit,
Offset: offset,
},
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) rankingByReputation(_ *apirest.APIdata, ctx *httprouter.HTTPContext) error {
users, err := v.db.UserByReputation()
if err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
jresponse, err := json.Marshal(map[string]any{
"users": users,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) electionsByCommunityHandler(_ *apirest.APIdata, ctx *httprouter.HTTPContext) error {
// get community id from the URL
communityID, _, _, err := v.parseCommunityIDFromURL(ctx)
if err != nil {
return ctx.Send([]byte(err.Error()), http.StatusBadRequest)
}
dbElections, err := v.db.ElectionsByCommunity(communityID)
if err != nil {
return fmt.Errorf("failed to get elections for community %s: %w", communityID, err)
}
var elections []*ElectionInfo
for i := range dbElections {
var username, displayname string
user, err := v.db.User(dbElections[i].UserID)
if err != nil {
log.Warnw("failed to fetch user", "error", err)
username = "unknown"
} else {
username = user.Username
displayname = user.Displayname
}
elections = append(elections, &ElectionInfo{
CreatedTime: dbElections[i].CreatedTime,
EndTime: dbElections[i].EndTime,
ElectionID: dbElections[i].ElectionID,
LastVoteTime: dbElections[i].LastVoteTime,
Question: dbElections[i].Question,
CastedVotes: dbElections[i].CastedVotes,
CensusParticipantsCount: uint64(dbElections[i].FarcasterUserCount),
FID: dbElections[i].UserID,
Username: username,
Displayname: displayname,
Finalized: time.Now().After(dbElections[i].EndTime), // return true if EndTime is in the past
})
}
jresponse, err := json.Marshal(map[string]any{
"polls": elections,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}
func (v *vocdoniHandler) rankingByPoints(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
_, onlyUsers := ctx.Request.URL.Query()["onlyUsers"]
_, onlyCommunities := ctx.Request.URL.Query()["onlyCommunities"]
if onlyUsers && onlyCommunities {
return ctx.Send([]byte("invalid query parameters"), http.StatusBadRequest)
}
var err error
var rankingItems []mongo.ReputationRanking
switch {
case onlyUsers:
if rankingItems, err = v.db.ReputationRanking(true, false); err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
case onlyCommunities:
if rankingItems, err = v.db.ReputationRanking(false, true); err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
default:
log.Info("both")
if rankingItems, err = v.db.ReputationRanking(true, true); err != nil {
return fmt.Errorf("failed to get ranking: %w", err)
}
}
// iterate over ranking items and fetch the user or community image and
// skip the disabled communities
var ranking []mongo.ReputationRanking
for _, item := range rankingItems {
if item.CommunityID != "" {
community, err := v.db.Community(item.CommunityID)
if err != nil {
log.Warnw("failed to fetch community", "error", err)
} else if community != nil && !community.Disabled {
item.ImageURL = community.ImageURL
ranking = append(ranking, item)
}
} else if item.UserID > 0 {
user, err := v.db.User(item.UserID)
if err != nil {
log.Warnw("failed to fetch user", "error", err)
} else if user != nil {
item.ImageURL = user.Avatar
ranking = append(ranking, item)
}
}
}
jresponse, err := json.Marshal(map[string]any{
"points": ranking,
})
if err != nil {
return fmt.Errorf("failed to marshal response: %w", err)
}
ctx.SetResponseContentType("application/json")
return ctx.Send(jresponse, http.StatusOK)
}